In [1]:
import pandas as pd
In [2]:
import pymysql
import mysql.connector
uni_recomm = pymysql.connect(host='localhost', user='root', passwd='RootPassword123', database='unibuddydemodb')
cursor= uni_recomm.cursor()
In [5]:
cursor.execute("CREATE TABLE University_Details (University_ID varchar(255), University_Name varchar(255))")
Out[5]:
0
In [6]:
cursor.execute("describe University_Details")
for x in cursor:
    print(x)
('University_ID', 'varchar(255)', 'YES', '', None, '')
('University_Name', 'varchar(255)', 'YES', '', None, '')
In [8]:
UniversityDetails_df=pd.read_csv("University.csv")
UniversityDetails_df
Out[8]:
University_ID University_Name avg_pay_scale Delivery_Mode Duration Term Year_of_Joining Major Location Cost_of_Living Avg_Fees GRE TOEFL IELTS
0 1 Northeastern University 100000.0 On-Campus 2.0 Fall 2022 MSIS Boston 9600.0 54000 310 100 7.5
1 2 University of Texas 90000.0 On-Campus 2.0 Fall 2022 MSCS Texas 7800.0 60000 300 100 7.5
2 3 Boston University 80000.0 On-Campus 2.0 Fall 2022 MSDS Boston 9600.0 90000 300 110 8.0
3 4 Syracuse University 100000.0 On-Campus 2.0 Fall 2022 MSIS New York 9700.0 65000 305 100 7.5
4 5 Northweastern University 90000.0 On-Campus 2.0 Fall 2022 MS SES Chicago 9100.0 55000 290 90 7.0
5 6 Arizona State University 91000.0 On-Campus 2.0 Fall 2022 MSCS Arizona 10230.0 44000 317 90 7.0
6 7 California State University, East Bay 51645.0 On-Campus 2.0 Fall 2022 MSCS California 4800.0 34580 305 80 6.5
7 8 Clarkson University 65000.0 On-Campus 2.0 Fall 2022 MSCS New York 8726.0 22995 294 80 6.5
8 9 Clemson University 57400.0 On-Campus 2.0 Fall 2022 MSCS South Carolina 55872.0 39502 310 80 6.5
9 10 Cleveland State University 36100.0 On-Campus 1.8 Fall 2022 MSIS Cleveland 24693.0 21702 295 78 6.0
10 11 Cornell University 113700.0 On-Campus 2.0 Fall 2022 MSCS Ithaca 19726.0 29500 295 100 7.0
11 12 Dalhousie University 24249.0 On-Campus 2.0 Fall 2022 MSCS Canada 16776.0 16860 300 92 7.0
12 13 George Mason University 56200.0 On-Campus 2.0 Fall 2022 MSCS Virginia 59782.0 22110 Waived 88 7.0
13 14 Georgia Institute of Technology 94000.0 On-Campus 2.0 Fall 2022 MSCS Atlanta 55672.0 18225 Waived 79 6.5
14 15 Harvard University 128900.0 On-Campus 1.8 Fall 2022 MSCS Boston 83463.0 89952 Waived 80 6.5
15 16 Illinios Institute of Technology, Chicago 68647.0 On-Campus 2.0 Fall 2022 MSCS Chicago 12600.0 26336 309 90 6.5
16 17 Indiana University, Bloomington 136000.0 On-Campus 1.8 Fall 2023 MSCS Indiana 38680.0 24375 Waived 100 7.0
17 18 Iowa State University 60156.0 On-Campus 2.0 Fall 2022 MSCS Iowa 35004.0 23790 316 79 6.5
18 19 Kansas State University 45700.0 On-Campus 2.0 Fall 2023 MSCS Kansas 15046.0 14385 310 79 6.5
19 21 New York University 83000.0 On-Campus 2.0 Fall 2022 MSCS New York 40000.0 35982 321 100 7.0
20 22 NYU Tandon School of Engineering 71128.0 On-Campus 2.0 Fall 2022 MCE New York 83250.0 29145 316 90 7.0
21 23 Pennsylvania State University 30000.0 On-Campus 2.0 Fall 2022 MSDA Pennsylvania 30000.0 28155 314 80 6.5
22 24 Rochester Institute of Technology 56197.0 On-Campus 1.0 Fall 2023 MSBA New York 72128.0 54176 307 88 6.5
23 25 Saint Peter's University NaN On-Campus 1.8 Fall 2022 MSDS New Jersey 32502.0 42372 318 79 6.5
24 26 San Jose State University NaN On-Campus 2.0 Fall 2022 MSCS California 7379.0 32472 313 80 6.5
25 27 Stanford University 152000.0 On-Campus 1.5 Fall 2022 MSCS California 82162.0 57870 Waived 89 NaN
26 28 State University of New York, Albany 71128.0 On-Campus 2.0 Fall 2022 MSCS New York 43919.0 46200 306 79 6.5
27 29 State University of New York, Buffalo NaN On-Campus 2.0 Fall 2023 MSCS New York NaN 46200 306 79 6.5
28 30 State University of New York, Polytechnic Ins... 83000.0 On-Campus 1.8 Fall 2022 MTM New York 15287.0 23112 Waived 79 7.5
29 31 State University of New York, Stony Brook NaN On-Campus 1.8 Fall 2022 MSCS New York NaN 29853 300 80 6.5
30 32 Syracuse University 110000.0 On-Campus 2.0 Fall 2023 MSCS Syracuse 18000.0 27030 NaN 90 6.5
31 33 Texas A&M University, College Station 175000.0 On-Campus 1.8 Fall 2022 MSCS Texas 21950.0 24940 295 80 6.0
32 34 Texas A&M University, Kingsville 175000.0 On-Campus 2.0 Fall 2023 MSCS Texas 40754.0 23908 297 79 6.0
33 35 University of Alberta 67000.0 On-Campus 2.0 Fall 2022 MSECE NaN 20000.0 17400 NaN 92 7.0
34 36 University of California, Irvine 109000.0 On-Campus 1.5 Fall 2022 MSCS Irvine 77431.0 33502 302 80 7.0
35 37 University of California, Los Angeles 64433.0 On-Campus 1.5 Fall 2022 MSBA Los Angeles 20000.0 14625 NaN 87 7.0
36 38 University of California, San Diego 77143.0 On-Campus 2.0 Fall 2022 MSCSE San Diego 52242.0 22884 NaN 83 7.0
37 39 University of Colorado, Boulder 43000.0 On-Campus 1.8 Fall 2022 MSCS Boulder 20000.0 53736 Waived 83 6.0
38 40 University of Dayton, Ohio 72077.0 On-Campus 1.8 Fall 2022 MSCS Ohio 15000.0 30900 NaN 80 6.5
39 41 University of Florida, Gainesville 123000.0 On-Campus 1.8 Fall 2022 CIS Gainesville 16680.0 45477 318 101 8.0
40 42 University of Houston, Clear Lake 34260.0 On-Campus 1.8 Fall 2023 MSCS Clear Lake 9460.0 31482 290 79 6.0
41 43 University University of Illinois, Urbana Cham... 70100.0 On-Campus 1.8 Fall 2023 MSCS Urbana champaign 6777.0 36798 Waived 103 7.5
42 44 University of Maryland 680000.0 On-Campus 2.0 Fall 2023 MSCS College Park 53036.0 26535 320 95 7.0
43 45 University of Michigan, Ann Arbor 75842.0 On-Campus 1.0 Fall 2022 MSCSE Ann Arbor 75410.0 100470 Waived 84 6.5
44 46 University of Michigan, Dearborn 75842.0 On-Campus 1.8 Fall 2022 DSBI Dearborn 28786.0 46380 Waived 84 6.5
45 47 University of Minnesota, Twin Cities 72300.0 On-Campus 2.0 Fall 2022 DSBI Twin cities 17009.0 40766 Waived 79 6.5
46 48 University of South Carolina, Columbia 100000.0 On-Campus 2.0 Fall 2022 MSCS Columbia 6500.0 67856 NaN 80 6.5
47 49 University of South Florida 60000.0 On-Campus 2.0 Fall 2022 MSCS Florida 15000.0 26430 312 96 7.0
48 50 University of Southern California 85000.0 On-Campus 1.8 Fall 2022 MSCS California 65798.0 64651 Waived 90 6.5
49 51 University of Texas, Arlington 85000.0 On-Campus 2.0 Fall 2023 MSCS Arlington 17000.0 46972 305 79 6.5
50 52 University of Texas, Austin 67839.0 On-Campus 1.8 Fall 2022 MSECE Austin 35022.0 30900 324 109 6.5
51 53 University of Texas, Dallas 87000.0 On-Campus 1.8 Fall 2022 MSITM Dallas 20000.0 53685 NaN 98 7.0
52 54 University of the Pacific, Stockton 72000.0 On-Campus 1.0 Fall 2022 MSCS Stockton 39998.0 46980 311 96 7.0
53 55 Virginia Tech University 66600.0 On-Campus 2.0 Fall 2023 MSCS Virginia 21301.0 48780 Waived 90 6.5
54 56 Wayne State University 50700.0 On-Campus 2.0 Fall 2023 MSCS Wayne 44197.0 25710 Waived 79 6.5
55 57 West Virginia University Institute of Technology 39300.0 On-Campus 1.8 Fall 2023 MSCS West Virginia 31106.0 44919 300 79 6.5
56 58 Western Michigan University 66400.0 On-Campus 2.0 Fall 2022 MSCS Michigan 10567.0 16440 Waived 80 6.5
57 59 Western University 69000.0 On-Campus 1.8 Fall 2022 MSCS London 21585.0 25816 NaN 92 6.5
In [9]:
for i,row in UniversityDetails_df.iterrows():
    cursor.execute("INSERT INTO University_Details values (%s,%s)", (int(row['University_ID']),row['University_Name']))
uni_recomm.commit()

cursor.execute("SELECT * from University_Details")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
(('1', 'Northeastern University'), ('2', 'University of Texas'), ('3', 'Boston University'), ('4', 'Syracuse University'), ('5', 'Northweastern University'), ('6', 'Arizona State University'), ('7', 'California State University, East Bay'), ('8', 'Clarkson University'), ('9', 'Clemson University'), ('10', 'Cleveland State University'), ('11', 'Cornell University'), ('12', 'Dalhousie University'), ('13', 'George Mason University'), ('14', 'Georgia Institute of Technology'), ('15', 'Harvard University'), ('16', 'Illinios Institute of Technology, Chicago'), ('17', 'Indiana University, Bloomington'), ('18', 'Iowa State University'), ('19', 'Kansas State University'), ('21', 'New York University'), ('22', 'NYU Tandon School of Engineering'), ('23', 'Pennsylvania State University'), ('24', 'Rochester Institute of Technology'), ('25', "Saint Peter's University"), ('26', 'San Jose State University'), ('27', 'Stanford University'), ('28', ' State University of New York, Albany'), ('29', 'State University of New York, Buffalo'), ('30', ' State University of New York, Polytechnic Institute'), ('31', 'State University of New York, Stony Brook'), ('32', 'Syracuse University'), ('33', 'Texas A&M University, College Station'), ('34', 'Texas A&M University, Kingsville'), ('35', 'University of Alberta'), ('36', 'University of California, Irvine'), ('37', 'University of California, Los Angeles'), ('38', 'University of California, San Diego'), ('39', 'University of Colorado, Boulder'), ('40', 'University of Dayton, Ohio'), ('41', 'University of Florida, Gainesville'), ('42', 'University of Houston, Clear Lake'), ('43', 'University University of Illinois, Urbana Champaign'), ('44', 'University of Maryland'), ('45', 'University of Michigan, Ann Arbor'), ('46', 'University of Michigan, Dearborn'), ('47', 'University of Minnesota, Twin Cities'), ('48', 'University of South Carolina, Columbia'), ('49', 'University of South Florida'), ('50', 'University of Southern California'), ('51', 'University of Texas, Arlington'), ('52', 'University of Texas, Austin'), ('53', 'University of Texas, Dallas'), ('54', 'University of the Pacific, Stockton'), ('55', 'Virginia Tech University'), ('56', 'Wayne State University'), ('57', 'West Virginia University Institute of Technology'), ('58', 'Western Michigan University'), ('59', 'Western University'))
In [10]:
cursor.execute("select * from university")
for x in cursor:
    print(x)
('1', 'Northeastern University', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Boston', '9600', '54000', '310', '100', '7.5')
('10', 'Cleveland State University', '36100', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Cleveland', '24693', '21702', '295', '78', '6')
('11', 'Cornell University', '113700', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Ithaca', '19726', '29500', '295', '100', '7')
('12', 'Dalhousie University', '24249', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Canada', '16776', '16860', '300', '92', '7')
('13', 'George Mason University', '56200', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Virginia', '59782', '22110', 'Waived', '88', '7')
('14', 'Georgia Institute of Technology', '94000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Atlanta', '55672', '18225', 'Waived', '79', '6.5')
('15', 'Harvard University', '128900', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boston', '83463', '89952', 'Waived', '80', '6.5')
('16', 'Illinios Institute of Technology, Chicago', '68647', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Chicago', '12600', '26336', '309', '90', '6.5')
('17', 'Indiana University, Bloomington', '136000', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Indiana', '38680', '24375', 'Waived ', '100', '7')
('18', 'Iowa State University', '60156', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Iowa', '35004', '23790', '316', '79', '6.5')
('19', 'Kansas State University', '45700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Kansas', '15046', '14385', '310', '79', '6.5')
('2', 'University of Texas, San Antonio', '90000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Texas', '7800', '60000', '300', '100', '7.5')
('20', 'New York University', '83000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '40000', '35982', '321', '100', '7')
('21', 'NYU Tandon School of Engineering', '71128', 'On-Campus', '2', 'Fall', 2022, 'MCE', 'New York', '83250', '29145', '316', '90', '7')
('22', 'Pennsylvania State University', '30000', 'On-Campus', '2', 'Fall', 2022, 'MSDA', 'Pennsylvania', '30000', '28155', '314', '80', '6.5')
('23', 'Rochester Institute of Technology', '56197', 'On-Campus', '1', 'Fall', 2023, 'MSBA', 'New York', '72128', '54176', '307', '88', '6.5')
('24', "Saint Peter's University", 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSDS', 'New Jersey', '32502', '42372', '318', '79', '6.5')
('25', 'San Jose State University', 'None', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '7379', '32472', '313', '80', '6.5')
('26', 'Stanford University', '152000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'California', '82162', '57870', 'Waived', '89', 'None')
('27', ' State University of New York, Albany', '71128', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '43919', '46200', '306', '79', '6.5')
('28', 'State University of New York, Buffalo', 'None', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'New York', 'None', '46200', '306', '79', '6.5')
('29', ' State University of New York, Polytechnic Institute', '83000', 'On-Campus', '1.8', 'Fall', 2022, 'MTM', 'New York', '15287', '23112', 'Waived', '79', '7.5')
('3', 'Boston University', '80000', 'On-Campus', '2', 'Fall', 2022, 'MSDS', 'Boston', '9600', '90000', '300', '110', '8')
('30', 'State University of New York, Stony Brook', 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'New York', 'None', '29853', '300', '80', '6.5')
('31', 'Texas A&M University, College Station', '175000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Texas', '21950', '24940', '295', '80', '6')
('32', 'Texas A&M University, Kingsville', '175000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Texas', '40754', '23908', '297', '79', '6')
('33', 'University of California, Irvine', '109000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'Irvine', '77431', '33502', '302', '80', '7')
('34', 'University of California, Los Angeles', '64433', 'On-Campus', '1.5', 'Fall', 2022, 'MSBA', 'Los Angeles', '20000', '14625', 'None', '87', '7')
('35', 'University of California, San Diego', '77143', 'On-Campus', '2', 'Fall', 2022, 'MSCSE', 'San Diego', '52242', '22884', 'None', '83', '7')
('36', 'University of Colorado, Boulder', '43000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boulder', '20000', '53736', 'Waived', '83', '6')
('37', 'University of Dayton, Ohio', '72077', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Ohio', '15000', '30900', 'None', '80', '6.5')
('38', 'University of Florida, Gainesville', '123000', 'On-Campus', '1.8', 'Fall', 2022, 'CIS', 'Gainesville', '16680', '45477', '318', '101', '8')
('39', 'University of Houston, Clear Lake', '34260', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Clear Lake', '9460', '31482', '290', '79', '6')
('4', 'Syracuse University', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'New York', '9700', '65000', '305', '100', '7.5')
('40', 'University University of Illinois, Urbana Champaign', '70100', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Urbana champaign', '6777', '36798', 'Waived', '103', '7.5')
('41', 'University of Maryland College Park', '680000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'College Park', '53036', '26535', '320', '95', '7')
('42', 'University of Michigan, Ann Arbor', '75842', 'On-Campus', '1', 'Fall', 2022, 'MSCSE', 'Ann Arbor', '75410', '100470', 'Waived', '84', '6.5')
('43', 'University of Michigan, Dearborn', '75842', 'On-Campus', '1.8', 'Fall', 2022, 'DSBI', 'Dearborn', '28786', '46380', 'Waived', '84', '6.5')
('44', 'University of Minnesota, Twin Cities', '72300', 'On-Campus', '2', 'Fall', 2022, 'DSBI', 'Twin cities', '17009', '40766', 'Waived', '79', '6.5')
('45', 'University of South Carolina, Columbia', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Columbia', '6500', '67856', 'None', '80', '6.5')
('46', 'University of South Florida', '60000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Florida', '15000', '26430', '312', '96', '7')
('47', 'University of Southern California', '85000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'California', '65798', '64651', 'Waived', '90', '6.5')
('48', 'University of Texas, Arlington', '85000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Arlington', '17000', '46972', '305', '79', '6.5')
('49', 'University of Texas, Austin', '67839', 'On-Campus', '1.8', 'Fall', 2022, 'MSECE', 'Austin ', '35022', '30900', '324', '109', '6.5')
('5', 'Northweastern University', '90000', 'On-Campus', '2', 'Fall', 2022, 'MS SES', 'Chicago', '9100', '55000', '290', '90', '7')
('50', 'University of Texas, Dallas', '87000', 'On-Campus', '1.8', 'Fall', 2022, 'MSITM', 'Dallas', '20000', '53685', 'None', '98', '7')
('51', 'University of the Pacific, Stockton', '72000', 'On-Campus', '1', 'Fall', 2022, 'MSCS', 'Stockton', '39998', '46980', '311', '96', '7')
('52', 'Virginia Tech University', '66600', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Virginia', '21301', '48780', 'Waived', '90', '6.5')
('53', 'Wayne State University', '50700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Wayne', '44197', '25710', 'Waived', '79', '6.5')
('54', 'West Virginia University Institute of Technology', '39300', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'West Virginia', '31106', '44919', '300', '79', '6.5')
('55', 'Western Michigan University', '66400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Michigan', '10567', '16440', 'Waived', '80', '6.5')
('56', 'Western University', '69000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'London', '21585', '25816', 'None', '92', '6.5')
('57', 'University Of California, Berkeley', '76909', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '39094', '53604', '300', '80', '6.5')
('58', 'Carnegie Mellon University', '99998', 'On-Campus', '2', 'Fall ', 2022, 'MSCS', 'Pennsylvania', '16740', '61000', 'Waived', '108', '7.5')
('59', 'University of Phoenix\xa0', '78000', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Arizona', '15818', '11179', 'Waived', '79', '6.5')
('6', 'Arizona State University Tempe', '91000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Arizona', '10230', '44000', '317', '90', '7')
('60', 'North Carolina State University', '47208', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'North Carolina', '15885', '48732', '301', '106', '8')
('61', 'University of Illinois Chicago', '60240', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Chicago', '55728', '19008', '300', '80', '6.5')
('62', 'University of Maryland Baltimore', '70300', 'On-Campus', '2', 'Fall', 2023, 'MSIS', 'Maryland', '14736', '45670', '305', '80', '6.5')
('63', 'San Diego State University', '59027', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'California', '15735', '14760', 'Waived', '80', '6.5')
('64', 'Ohio State University', '43187', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Ohio', '13966', '63379', '300', '79', '7')
('65', 'University of Washington', '60937', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Washington', '32090', '59754', 'Waived', '92', '7')
('7', 'California State University, East Bay', '51645', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '4800', '34580', '305', '80', '6.5')
('8', 'Clarkson University', '65000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '8726', '22995', '294', '80', '6.5')
('9', 'Clemson University', '57400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'South Carolina', '55872', '39502', '310', '80', '6.5')
In [11]:
cursor.execute("ALTER Table University drop column University_Name")
for x in cursor:
    print(x)
In [12]:
cursor.execute("select * from university")
for x in cursor:
    print(x)
('1', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Boston', '9600', '54000', '310', '100', '7.5')
('10', '36100', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Cleveland', '24693', '21702', '295', '78', '6')
('11', '113700', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Ithaca', '19726', '29500', '295', '100', '7')
('12', '24249', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Canada', '16776', '16860', '300', '92', '7')
('13', '56200', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Virginia', '59782', '22110', 'Waived', '88', '7')
('14', '94000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Atlanta', '55672', '18225', 'Waived', '79', '6.5')
('15', '128900', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boston', '83463', '89952', 'Waived', '80', '6.5')
('16', '68647', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Chicago', '12600', '26336', '309', '90', '6.5')
('17', '136000', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Indiana', '38680', '24375', 'Waived ', '100', '7')
('18', '60156', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Iowa', '35004', '23790', '316', '79', '6.5')
('19', '45700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Kansas', '15046', '14385', '310', '79', '6.5')
('2', '90000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Texas', '7800', '60000', '300', '100', '7.5')
('20', '83000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '40000', '35982', '321', '100', '7')
('21', '71128', 'On-Campus', '2', 'Fall', 2022, 'MCE', 'New York', '83250', '29145', '316', '90', '7')
('22', '30000', 'On-Campus', '2', 'Fall', 2022, 'MSDA', 'Pennsylvania', '30000', '28155', '314', '80', '6.5')
('23', '56197', 'On-Campus', '1', 'Fall', 2023, 'MSBA', 'New York', '72128', '54176', '307', '88', '6.5')
('24', 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSDS', 'New Jersey', '32502', '42372', '318', '79', '6.5')
('25', 'None', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '7379', '32472', '313', '80', '6.5')
('26', '152000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'California', '82162', '57870', 'Waived', '89', 'None')
('27', '71128', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '43919', '46200', '306', '79', '6.5')
('28', 'None', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'New York', 'None', '46200', '306', '79', '6.5')
('29', '83000', 'On-Campus', '1.8', 'Fall', 2022, 'MTM', 'New York', '15287', '23112', 'Waived', '79', '7.5')
('3', '80000', 'On-Campus', '2', 'Fall', 2022, 'MSDS', 'Boston', '9600', '90000', '300', '110', '8')
('30', 'None', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'New York', 'None', '29853', '300', '80', '6.5')
('31', '175000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Texas', '21950', '24940', '295', '80', '6')
('32', '175000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Texas', '40754', '23908', '297', '79', '6')
('33', '109000', 'On-Campus', '1.5', 'Fall', 2022, 'MSCS', 'Irvine', '77431', '33502', '302', '80', '7')
('34', '64433', 'On-Campus', '1.5', 'Fall', 2022, 'MSBA', 'Los Angeles', '20000', '14625', 'None', '87', '7')
('35', '77143', 'On-Campus', '2', 'Fall', 2022, 'MSCSE', 'San Diego', '52242', '22884', 'None', '83', '7')
('36', '43000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Boulder', '20000', '53736', 'Waived', '83', '6')
('37', '72077', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'Ohio', '15000', '30900', 'None', '80', '6.5')
('38', '123000', 'On-Campus', '1.8', 'Fall', 2022, 'CIS', 'Gainesville', '16680', '45477', '318', '101', '8')
('39', '34260', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Clear Lake', '9460', '31482', '290', '79', '6')
('4', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'New York', '9700', '65000', '305', '100', '7.5')
('40', '70100', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Urbana champaign', '6777', '36798', 'Waived', '103', '7.5')
('41', '680000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'College Park', '53036', '26535', '320', '95', '7')
('42', '75842', 'On-Campus', '1', 'Fall', 2022, 'MSCSE', 'Ann Arbor', '75410', '100470', 'Waived', '84', '6.5')
('43', '75842', 'On-Campus', '1.8', 'Fall', 2022, 'DSBI', 'Dearborn', '28786', '46380', 'Waived', '84', '6.5')
('44', '72300', 'On-Campus', '2', 'Fall', 2022, 'DSBI', 'Twin cities', '17009', '40766', 'Waived', '79', '6.5')
('45', '100000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Columbia', '6500', '67856', 'None', '80', '6.5')
('46', '60000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Florida', '15000', '26430', '312', '96', '7')
('47', '85000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'California', '65798', '64651', 'Waived', '90', '6.5')
('48', '85000', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Arlington', '17000', '46972', '305', '79', '6.5')
('49', '67839', 'On-Campus', '1.8', 'Fall', 2022, 'MSECE', 'Austin ', '35022', '30900', '324', '109', '6.5')
('5', '90000', 'On-Campus', '2', 'Fall', 2022, 'MS SES', 'Chicago', '9100', '55000', '290', '90', '7')
('50', '87000', 'On-Campus', '1.8', 'Fall', 2022, 'MSITM', 'Dallas', '20000', '53685', 'None', '98', '7')
('51', '72000', 'On-Campus', '1', 'Fall', 2022, 'MSCS', 'Stockton', '39998', '46980', '311', '96', '7')
('52', '66600', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Virginia', '21301', '48780', 'Waived', '90', '6.5')
('53', '50700', 'On-Campus', '2', 'Fall', 2023, 'MSCS', 'Wayne', '44197', '25710', 'Waived', '79', '6.5')
('54', '39300', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'West Virginia', '31106', '44919', '300', '79', '6.5')
('55', '66400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Michigan', '10567', '16440', 'Waived', '80', '6.5')
('56', '69000', 'On-Campus', '1.8', 'Fall', 2022, 'MSCS', 'London', '21585', '25816', 'None', '92', '6.5')
('57', '76909', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '39094', '53604', '300', '80', '6.5')
('58', '99998', 'On-Campus', '2', 'Fall ', 2022, 'MSCS', 'Pennsylvania', '16740', '61000', 'Waived', '108', '7.5')
('59', '78000', 'On-Campus', '1.8', 'Fall', 2022, 'MSIS', 'Arizona', '15818', '11179', 'Waived', '79', '6.5')
('6', '91000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Arizona', '10230', '44000', '317', '90', '7')
('60', '47208', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'North Carolina', '15885', '48732', '301', '106', '8')
('61', '60240', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'Chicago', '55728', '19008', '300', '80', '6.5')
('62', '70300', 'On-Campus', '2', 'Fall', 2023, 'MSIS', 'Maryland', '14736', '45670', '305', '80', '6.5')
('63', '59027', 'On-Campus', '1.8', 'Fall', 2023, 'MSCS', 'California', '15735', '14760', 'Waived', '80', '6.5')
('64', '43187', 'On-Campus', '2', 'Fall', 2022, 'MSIS', 'Ohio', '13966', '63379', '300', '79', '7')
('65', '60937', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'Washington', '32090', '59754', 'Waived', '92', '7')
('7', '51645', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'California', '4800', '34580', '305', '80', '6.5')
('8', '65000', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'New York', '8726', '22995', '294', '80', '6.5')
('9', '57400', 'On-Campus', '2', 'Fall', 2022, 'MSCS', 'South Carolina', '55872', '39502', '310', '80', '6.5')
In [13]:
cursor.execute("select * from student")
for x in cursor:
    print(x)
(1, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '64.37', '100', '0')
(2, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0')
(4, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0')
(5, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '66.4', '100', '0')
(6, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0')
(7, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0')
(8, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0')
(9, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56')
(10, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0')
(11, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0')
(12, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66')
(13, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0')
(14, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48')
(15, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0')
(16, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '74', '100', '0')
(17, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(18, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0')
(19, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '70', '100', '0')
(20, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0')
(21, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0')
(22, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0')
(23, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0')
(24, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '66', '100', '0')
(25, 'Northeastern University', '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30')
(26, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(27, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '66', '100', '0')
(28, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0')
(29, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0')
(30, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0')
(31, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '67', '100', '0')
(32, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0')
(33, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58')
(34, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0')
(35, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36')
(36, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '72.92', '100', '0')
(37, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0')
(38, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0')
(39, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(40, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0')
(41, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0')
(42, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(43, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0')
(44, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0')
(45, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0')
(46, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0')
(47, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0')
(48, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0')
(49, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '65', '100', '0')
(50, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30')
(51, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0')
(52, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '70.19', '100', '0')
(53, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18')
(54, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0')
(55, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0')
(56, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '68', '100', '0')
(57, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0')
(58, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0')
(59, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0')
(60, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '63', '100', '0')
(61, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '77', '100', '0')
(62, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0')
(63, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0')
(64, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0')
(65, 'Northeastern University', '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0')
(66, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36')
(67, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12')
(68, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0')
(69, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0')
(70, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(71, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '65', '100', '0')
(72, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0')
(73, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0')
(74, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42')
(75, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0')
(76, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0')
(77, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70')
(78, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '73', '100', '0')
(79, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0')
(80, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18')
(81, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0')
(82, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0')
(83, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0')
(84, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '73.4', '100', '0')
(85, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '70', '100', '0')
(86, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0')
(87, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '64.3', '100', '0')
(88, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '71.4', '100', '0')
(89, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '70.3', '100', '0')
(90, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '60', '100', '0')
(91, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0')
(92, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '72', '100', '0')
(93, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0')
(94, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0')
(95, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0')
(96, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '65.2', '100', '0')
(97, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0')
(98, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(99, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0')
(100, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0')
(101, 'Northeastern University', '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0')
(102, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0')
(103, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0')
(104, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0')
(105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30')
(106, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '72', '100', '0')
(107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0')
(108, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0')
(109, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0')
(110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '75.2', '100', '0')
(111, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0')
(112, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0')
(113, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '66.6', '100', '0')
(114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42')
(115, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18')
(116, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(117, 'Northeastern University', '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(118, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0')
(119, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '66', '100', '0')
(120, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '65', '100', '0')
(121, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0')
(123, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0')
(124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29')
(125, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0')
(126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0')
(127, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(128, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '66', '100', '0')
(129, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(130, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0')
(131, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '75', '100', '0')
(132, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0')
(133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(134, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '65.6', '100', '37')
(135, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0')
(136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '73', '100', '0')
(137, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0')
(138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '74', '100', '10')
(139, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '79', '100', '29')
(140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0')
(141, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0')
(142, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '62.3', '100', '0')
(143, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0')
(144, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5')
(145, 'Northeastern University', '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '74.2', '100', '0')
(146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0')
(147, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '54.84', '100', '0')
(148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '68.5', '100', '0')
(149, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '65.95', '100', '0')
(150, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0')
(151, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0')
(152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45')
(153, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '61', '100', '17')
(154, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0')
(155, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39')
(156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '68', '100', '0')
(157, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45')
(158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0')
(159, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0')
(160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0')
(161, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0')
(163, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0')
(164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0')
(165, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53')
(166, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0')
(167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '64', '100', '0')
(168, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3')
(169, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0')
(170, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '68.6', '100', '0')
(171, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0')
(172, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '64', '100', '0')
(173, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '74.57', '100', '0')
(174, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0')
(175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0')
(176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15')
(177, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0')
(178, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0')
(179, 'Northeastern University', '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8')
(180, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0')
(181, 'Northeastern University', '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0')
(182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24')
(183, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0')
(184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0')
(185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0')
(186, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0')
(187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24')
(188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0')
(189, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0')
(190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0')
(191, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '59.8', '100', '0')
(192, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0')
(193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24')
(194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '74', '100', '0')
(195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41')
(196, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '69.1', '100', '0')
(197, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '78', '100', '0')
(198, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '71', '100', '0')
(199, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33')
(200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0')
(201, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0')
(202, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '74', '100', '0')
(203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '69', '100', '0')
(204, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '65', '100', '0')
(205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0')
(206, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(207, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '60', '100', '0')
(208, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '75.6', '100', '0')
(209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0')
(210, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0')
(211, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '66.5', '100', '0')
(212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(213, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0')
(214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43')
(215, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0')
(217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0')
(218, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0')
(219, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '65', '100', '0')
(220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0')
(221, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0')
(222, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0')
(223, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0')
(224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0')
(225, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0')
(226, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0')
(227, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '3.89', '100', '0')
(228, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0')
(229, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0')
(230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0')
(231, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54')
(232, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3')
(233, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0')
(234, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '59', '100', '0')
(235, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '60', '100', '36')
(236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0')
(237, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0')
(238, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '69', '100', '0')
(240, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0')
(241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '63', '100', '0')
(242, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '61.4', '100', '36')
(243, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0')
(244, 'Northeastern University', '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24')
(245, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0')
(246, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0')
(247, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '67', '100', '0')
(248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0')
(250, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0')
(251, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0')
(252, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0')
(253, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '68.41', '100', '0')
(254, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0')
(255, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '70.7', '100', '43')
(256, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87')
(257, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '74', '100', '0')
(258, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0')
(259, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0')
(260, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0')
(261, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0')
(262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0')
(263, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0')
(264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0')
(265, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0')
(266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0')
(267, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0')
(268, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0')
(270, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0')
(271, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17')
(272, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0')
(273, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0')
(274, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '62', '100', '0')
(275, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '61', '100', '10')
(276, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0')
(277, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0')
(278, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0')
(279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '82.14', '100', '0')
(280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0')
(281, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '66', '100', '0')
(282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0')
(283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20')
(284, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0')
(285, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '81', '100', '51')
(286, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '71.82', '100', '0')
(287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0')
(288, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0')
(289, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0')
(290, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(291, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(292, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0')
(293, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(294, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '71', '100', '0')
(295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '63.4', '100', '0')
(296, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0')
(297, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0')
(298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0')
(299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0')
(300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0')
(301, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0')
(302, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24')
(303, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0')
(304, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0')
(305, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '68.69', '100', '0')
(306, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '70', '100', '0')
(307, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '71', '100', '41')
(308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0')
(309, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(310, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '65', '100', '0')
(311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0')
(312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24')
(313, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0')
(314, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '70', '100', '0')
(315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0')
(316, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0')
(317, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0')
(318, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22')
(319, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0')
(320, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0')
(321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0')
(322, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0')
(323, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0')
(324, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38')
(325, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0')
(326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0')
(327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '70.2', '100', '30')
(328, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0')
(329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '69', '100', '0')
(330, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0')
(331, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '72.34', '100', '0')
(332, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '65', '100', '0')
(333, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '69.16', '100', '0')
(334, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0')
(335, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '80.83', '100', '0')
(336, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0')
(337, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0')
(338, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0')
(339, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0')
(340, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '68.5', '100', '0')
(341, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(342, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0')
(343, 'Northeastern University', '1', 'Admit', 'MS', 'computer science / MIS', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '73.5', '100', '36')
(344, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12')
(345, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30')
(346, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22')
(347, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0')
(348, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0')
(349, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '59.7', '100', '0')
(350, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0')
(351, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59')
(352, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '67', '100', '42')
(353, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0')
(354, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0')
(355, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0')
(356, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0')
(357, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0')
(358, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '70', '100', '0')
(359, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '66.45', '100', '0')
(360, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '69.9', '100', '0')
(361, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0')
(362, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0')
(363, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0')
(364, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0')
(365, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '59', '100', '0')
(366, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0')
(367, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '75', '100', '12')
(368, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(369, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(370, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0')
(371, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0')
(372, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '67', '100', '0')
(373, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0')
(374, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57')
(375, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0')
(376, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0')
(377, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0')
(378, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0')
(379, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '79', '100', '24')
(380, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0')
(381, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45')
(382, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '71', '100', '0')
(383, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0')
(384, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0')
(385, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0')
(386, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0')
(387, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0')
(388, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '73.1', '100', '22')
(389, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '74.5', '100', '0')
(390, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '68.6', '100', '0')
(391, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0')
(392, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0')
(393, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0')
(394, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '67.5', '100', '0')
(395, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0')
(396, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1')
(397, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '79', '100', '0')
(398, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0')
(399, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '81', '100', '0')
(400, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '69', '100', '0')
(401, 'Northeastern University', '1', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30')
(402, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0')
(403, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0')
(404, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44')
(405, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34')
(406, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '65.5', '100', '0')
(407, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0')
(408, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0')
(409, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33')
(410, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22')
(411, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0')
(412, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0')
(413, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(414, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '70', '100', '0')
(415, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '78.12', '100', '6')
(416, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0')
(417, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24')
(418, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36')
(419, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0')
(420, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '65', '100', '0')
(421, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '74', '100', '0')
(422, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0')
(423, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '78', '100', '0')
(424, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '83', '100', '0')
(425, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36')
(426, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32')
(427, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '72', '100', '44')
(428, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '63', '100', '45')
(429, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0')
(430, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(431, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '79', '100', '0')
(432, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '75', '100', '0')
(433, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0')
(434, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0')
(435, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(436, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0')
(437, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0')
(438, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0')
(439, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '75', '100', '0')
(440, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0')
(441, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '90.2', '100', '0')
(442, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0')
(443, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0')
(444, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0')
(445, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(446, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '63.08', '100', '18')
(447, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '67', '100', '0')
(448, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24')
(449, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0')
(450, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36')
(451, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0')
(452, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0')
(453, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0')
(454, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0')
(455, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0')
(456, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0')
(457, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0')
(458, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '68', '100', '0')
(459, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0')
(460, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0')
(461, 'Northeastern University', '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0')
(462, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '75', '100', '0')
(463, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0')
(464, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0')
(465, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22')
(466, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0')
(467, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '75.6', '100', '0')
(468, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0')
(469, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0')
(470, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '71', '100', '0')
(471, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '74', '100', '0')
(472, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0')
(473, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0')
(474, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0')
(475, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '67.8', '100', '33')
(476, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0')
(477, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0')
(478, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0')
(479, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '60', '100', '60')
(480, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24')
(481, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(482, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0')
(483, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36')
(484, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '65.38', '100', '0')
(485, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0')
(486, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0')
(487, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(488, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '74', '100', '0')
(489, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0')
(490, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(491, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '76', '100', '42')
(492, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '74.7', '100', '22')
(493, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0')
(494, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0')
(495, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0')
(496, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '74', '100', '0')
(497, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '75.66', '100', '33')
(498, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0')
(499, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0')
(500, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0')
(501, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0')
(502, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0')
(503, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '78', '100', '0')
(504, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0')
(505, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '75', '100', '12')
(506, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '75', '100', '0')
(507, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0')
(508, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '68.9', '100', '0')
(509, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0')
(510, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0')
(511, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '62', '100', '0')
(512, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '54', '100', '0')
(513, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '74', '100', '29')
(514, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0')
(515, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '71.84', '100', '0')
(516, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0')
(517, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0')
(518, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '66.2', '100', '0')
(519, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0')
(520, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0')
(521, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0')
(522, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(523, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '8.51', '100', '0')
(524, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '74.3', '100', '0')
(525, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '70', '100', '17')
(526, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '64.85', '100', '20')
(527, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0')
(528, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0')
(529, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '56.6', '100', '0')
(530, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0')
(531, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0')
(532, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0')
(533, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0')
(534, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0')
(535, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0')
(536, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0')
(537, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '74', '100', '0')
(538, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0')
(539, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24')
(540, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0')
(541, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0')
(542, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0')
(543, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '8.06', '100', '0')
(544, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(545, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '69.2', '100', '0')
(546, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0')
(547, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0')
(548, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0')
(549, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '63', '100', '0')
(550, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0')
(551, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0')
(552, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '72.5', '100', '0')
(553, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0')
(554, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30')
(555, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0')
(556, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '72', '100', '0')
(557, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0')
(558, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0')
(559, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '79.5', '100', '17')
(560, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0')
(561, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0')
(562, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0')
(563, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0')
(564, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0')
(565, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(566, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0')
(567, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0')
(568, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0')
(569, 'Northeastern University', '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0')
(570, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '74', '100', '0')
(571, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '62', '100', '0')
(572, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '66.89', '100', '0')
(573, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57')
(574, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '67', '100', '0')
(575, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0')
(576, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0')
(577, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0')
(578, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(579, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '57', '100', '0')
(580, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '76', '100', '0')
(581, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '65.79', '100', '0')
(582, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0')
(583, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0')
(584, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0')
(585, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2')
(586, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '68.84', '100', '0')
(587, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '77', '100', '0')
(588, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '65.81', '100', '0')
(589, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0')
(590, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36')
(591, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0')
(592, 'Northeastern University', '1', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0')
(593, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0')
(594, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0')
(595, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(596, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '70', '100', '0')
(597, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0')
(598, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45')
(599, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0')
(600, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(601, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0')
(602, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0')
(603, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0')
(604, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0')
(605, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0')
(606, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0')
(607, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35')
(608, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0')
(609, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0')
(610, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27')
(611, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0')
(612, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6')
(613, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0')
(614, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(615, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '77', '100', '0')
(616, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '63.5', '100', '72')
(617, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0')
(618, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0')
(619, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0')
(620, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0')
(621, 'Northeastern University', '1', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0')
(622, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(623, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '64', '100', '33')
(624, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0')
(625, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0')
(626, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(627, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '70', '100', '34')
(628, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '71.78', '100', '0')
(629, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0')
(630, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12')
(631, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0')
(632, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '84.5', '100', '0')
(633, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '82', '100', '0')
(634, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0')
(635, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8')
(636, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '63', '100', '0')
(637, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0')
(638, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0')
(639, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6')
(640, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0')
(641, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0')
(642, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '68', '100', '0')
(643, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0')
(644, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0')
(645, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0')
(646, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '69', '100', '0')
(647, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '68', '100', '0')
(648, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0')
(649, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41')
(650, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0')
(651, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0')
(652, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0')
(653, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0')
(654, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38')
(655, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0')
(656, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15')
(657, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0')
(658, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0')
(659, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '77.4', '100', '0')
(660, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '66.8', '100', '0')
(661, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0')
(662, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0')
(663, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '83.17', '100', '0')
(664, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0')
(665, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27')
(666, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0')
(667, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28')
(668, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '78', '100', '0')
(669, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0')
(670, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '57.66', '100', '0')
(671, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19')
(672, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '72.2', '100', '0')
(673, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '73', '100', '0')
(674, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0')
(675, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(676, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '63.4', '100', '0')
(677, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0')
(678, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0')
(679, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '78', '100', '0')
(680, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '61', '100', '0')
(681, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '63', '100', '0')
(682, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0')
(683, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '65', '100', '0')
(684, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28')
(685, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0')
(686, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(687, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0')
(688, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '72.24', '100', '20')
(689, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '69.7', '100', '0')
(690, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0')
(691, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '75.2', '100', '25')
(692, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0')
(693, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0')
(694, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '61', '100', '0')
(695, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '82', '100', '0')
(696, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65')
(697, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0')
(698, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(699, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0')
(700, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33')
(701, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24')
(702, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '70', '100', '0')
(703, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(704, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0')
(705, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0')
(706, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '71.5', '100', '0')
(707, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0')
(708, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9')
(709, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0')
(710, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '69', '100', '0')
(711, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '76', '100', '0')
(712, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0')
(713, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '73.45', '100', '0')
(714, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0')
(715, 'Northeastern University', '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0')
(716, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0')
(717, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0')
(718, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0')
(719, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0')
(720, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0')
(721, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0')
(722, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0')
(723, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0')
(724, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0')
(725, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '76.1', '100', '0')
(726, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0')
(727, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '68', '100', '0')
(728, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0')
(729, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '71.8', '100', '0')
(730, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '75', '100', '0')
(731, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36')
(732, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0')
(733, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24')
(734, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0')
(735, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0')
(736, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32')
(737, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0')
(738, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0')
(739, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0')
(740, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '76', '100', '0')
(741, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0')
(742, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '68', '100', '0')
(743, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7')
(744, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(745, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0')
(746, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '76', '100', '0')
(747, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0')
(748, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0')
(749, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0')
(750, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24')
(751, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '67.4', '100', '0')
(752, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0')
(753, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '60', '100', '0')
(754, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0')
(755, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0')
(756, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0')
(757, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0')
(758, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(759, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0')
(760, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(761, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '77.5', '100', '0')
(762, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(763, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0')
(764, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0')
(765, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0')
(766, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29')
(767, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0')
(768, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0')
(769, 'Northeastern University', '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '76.88', '100', '0')
(770, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0')
(771, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0')
(772, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0')
(773, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40')
(774, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0')
(775, 'Northeastern University', '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0')
(776, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '55', '100', '0')
(777, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '72', '100', '0')
(778, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0')
(779, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0')
(780, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0')
(781, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '58', '100', '0')
(782, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '63', '100', '0')
(783, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '67', '100', '0')
(784, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0')
(785, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18')
(786, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '74.42', '100', '36')
(787, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0')
(788, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '66.5', '100', '0')
(789, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0')
(790, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40')
(791, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '76.21', '100', '0')
(792, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0')
(793, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0')
(794, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '69.45', '100', '0')
(795, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0')
(796, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0')
(797, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0')
(798, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0')
(799, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0')
(800, 'Northeastern University', '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0')
(801, 'Northeastern University', '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '72', '100', '0')
(802, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0')
(803, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '66.5', '100', '0')
(804, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0')
(805, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '67', '100', '0')
(806, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0')
(807, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0')
(808, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0')
(809, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0')
(810, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0')
(811, 'Northeastern University', '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '67.72', '100', '0')
(812, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '72.6', '100', '0')
(813, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0')
(814, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '69', '100', '0')
(815, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0')
(816, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '67', '100', '0')
(817, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0')
(818, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '74.15', '100', '0')
(819, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0')
(820, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0')
(821, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '67.36', '100', '0')
(822, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0')
(823, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0')
(824, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0')
(825, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0')
(826, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0')
(827, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '65', '100', '0')
(828, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0')
(829, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0')
(830, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0')
(831, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36')
(832, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0')
(833, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(834, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '60', '100', '0')
(835, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0')
(836, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0')
(837, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '74', '100', '44')
(838, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '59.9', '100', '0')
(839, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0')
(840, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '70.6', '100', '0')
(841, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(842, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '60', '100', '0')
(843, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0')
(844, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0')
(845, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0')
(846, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24')
(847, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43')
(848, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0')
(849, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6')
(850, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17')
(851, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0')
(852, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0')
(853, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13')
(854, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0')
(855, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0')
(856, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30')
(857, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0')
(858, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0')
(859, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(860, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0')
(861, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(862, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0')
(863, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0')
(864, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '76', '100', '0')
(865, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '70', '100', '0')
(866, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0')
(867, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0')
(868, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '71', '100', '0')
(869, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0')
(870, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0')
(871, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0')
(872, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0')
(873, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '65', '100', '0')
(874, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0')
(875, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '76', '100', '0')
(876, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0')
(877, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0')
(878, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0')
(879, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0')
(880, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0')
(881, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0')
(882, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(883, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '57', '100', '0')
(884, 'Northeastern University', '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '75.4', '100', '0')
(885, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '77', '100', '0')
(886, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0')
(887, 'Northeastern University', '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0')
(888, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0')
(889, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '60', '100', '0')
(890, 'Northeastern University', '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0')
(891, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12')
(892, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0')
(893, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0')
(894, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0')
(895, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '67', '100', '0')
(896, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(897, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0')
(898, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0')
(899, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(900, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0')
(901, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0')
(902, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0')
(903, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0')
(904, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0')
(905, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16')
(906, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0')
(907, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0')
(908, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0')
(909, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0')
(910, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24')
(911, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0')
(912, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0')
(913, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0')
(914, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '73', '100', '0')
(915, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0')
(916, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0')
(917, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '70', '100', '0')
(918, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0')
(919, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '67.79', '100', '0')
(920, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '77', '100', '0')
(921, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60')
(922, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0')
(923, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '70.5', '100', '28')
(924, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0')
(925, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0')
(926, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0')
(927, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0')
(928, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '64.9', '100', '48')
(929, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0')
(930, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0')
(931, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0')
(932, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0')
(933, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '62', '100', '0')
(934, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '65', '100', '0')
(935, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0')
(936, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0')
(937, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '62', '100', '36')
(938, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0')
(939, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0')
(940, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0')
(941, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '65', '100', '0')
(942, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0')
(943, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '62.5', '100', '0')
(944, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0')
(945, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0')
(946, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43')
(947, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0')
(948, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12')
(949, 'Northeastern University', '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(950, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0')
(951, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0')
(952, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31')
(953, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0')
(954, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15')
(955, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '68.5', '100', '0')
(956, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0')
(957, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0')
(958, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '63', '100', '0')
(959, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18')
(960, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0')
(961, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0')
(962, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '63', '100', '0')
(963, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0')
(964, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0')
(965, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0')
(966, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0')
(967, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0')
(968, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0')
(969, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '77.7', '100', '0')
(970, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(971, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '66.5', '100', '0')
(972, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0')
(973, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0')
(974, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(975, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '79', '100', '0')
(976, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(977, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '57', '100', '0')
(978, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0')
(979, 'Northeastern University', '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '67', '100', '36')
(980, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '74', '100', '0')
(981, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0')
(982, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0')
(983, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0')
(984, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(985, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0')
(986, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0')
(987, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0')
(988, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0')
(989, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0')
(990, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0')
(991, 'Northeastern University', '1', 'Admit', 'MS', 'CS/MIS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '58', '100', '36')
(992, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '64', '100', '0')
(993, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24')
(994, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30')
(995, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0')
(996, 'Northeastern University', '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '62.17', '100', '0')
(997, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '67.63', '100', '0')
(998, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0')
(999, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0')
(1000, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0')
(1001, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0')
(1002, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '161', '142', '303', '2.5', '102', 'Coimbatore Insitute of Technology', 'Information Technology', '8.39', '10', '0')
(1003, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '164', '330', '3', '105', 'COEP', 'I.T.', '7.98', '10', '0')
(1004, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '144', '301', '3', '85', 'MU', 'Information Technology', '65', '100', '44')
(1005, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0')
(1006, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '159', '149', '308', '4', '108', 'VNR VJIET', 'INFORMATION TECHNOLOGY', '75.85', '100', '0')
(1007, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33')
(1008, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '790', '640', '1430', '4', '113', 'MU', 'Computers', '76', '100', '0')
(1009, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '370', '1100', '3', '95', 'VIT', 'Btech Biotechnology', '7.89', '10', '0')
(1010, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '3', '100', 'Nirma Institute of Technology', 'Computer Engineering', '8.34', '10', '0')
(1011, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0')
(1012, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0')
(1013, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0')
(1014, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '3.5', '108', 'S.P.I.T.', 'Electronics', '74.4', '100', '0')
(1015, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44')
(1016, 'Northeastern University', '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29')
(1017, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0')
(1018, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0')
(1019, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '750', '700', '1450', '4', '101', 'MSRIT', 'MECHANICAL', '8.25', '10', '0')
(1020, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(1021, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0')
(1022, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0')
(1023, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0')
(1024, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0')
(1025, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '680', '340', '1020', '3.5', '105', 'MU', 'Computer Engg', '62', '100', '0')
(1026, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '420', '1120', '3', '96', 'VTU', 'Information Science', '71.5', '100', '0')
(1027, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0')
(1028, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '144', '306', '3', '85', 'BITS Goa', 'M.SC Economics+B.E.Computerscience', '0', '0', '48')
(1029, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0')
(1030, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '108', 'IPEC', 'IT', '67.4', '100', '0')
(1031, 'Northeastern University', '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '640', '320', '960', '3.5', '102', 'Gujarat Technological University', 'pharmacy', '0', '0', '0')
(1032, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '110', 'Rajagiri School of Engineering and Technology', 'IT', '80', '100', '48')
(1033, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0')
(1034, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '3', '98', 'Nagpur University', '0', '57', '100', '0')
(1035, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0')
(1036, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0')
(1037, 'Northeastern University', '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0')
(1038, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6')
(1039, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '3', '94', 'JNTU', 'Computer Science', '63.6', '100', '0')
(1040, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0')
(1041, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '158', '147', '305', '3.5', '103', 'Kumaun University', 'IT', '79.3', '100', '0')
(1042, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0')
(1043, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '580', '1310', '3.5', '101', 'P.V.P.P.C.O.E. (Mumbai University)', 'Information Technology (I.T.)', '70.2', '100', '0')
(1044, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '107', 'MU', 'Production Engineering', '58', '100', '0')
(1045, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0')
(1046, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1047, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0')
(1048, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '157', '154', '311', '3', '108', 'VIT Mumbai University', 'Computer Engineering', '58.33', '100', '36')
(1049, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '140', '300', '3', '91', 'University of Mumbai', 'EXTC', '64', '100', '36')
(1050, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3', '96', 'Pune University', 'Computer Science', '74.5', '100', '0')
(1051, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '158', '150', '308', '4.5', '101', 'MU', 'Electronics', '58.23', '4', '0')
(1052, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '146', '306', '3.5', 'None', 'Vishwakarma Institute of Technology', 'Computer', '8.7', '10', '0')
(1053, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0')
(1054, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0')
(1055, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0')
(1056, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(1057, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '740', '630', '1370', '3', '102', 'Vardhaman', 'IT', '67.3', '100', '0')
(1058, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0')
(1059, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '151', '315', '3', '109', 'R.G.P.V.', 'EC', '75.6', '100', '20')
(1060, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0')
(1061, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0')
(1062, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0')
(1063, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '152', '315', '4', '107', 'SSN College of Engineering', 'CSE', '72', '100', '0')
(1064, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0')
(1065, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '490', '1280', '4', '115', 'Goa University', 'Electronics and Telcommunication', '4', '100', '0')
(1066, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0')
(1067, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0')
(1068, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '101', "Vidyavardhini's COE & Tech", 'IT', '71.12', '100', '0')
(1069, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '155', '143', '298', '3', '96', 'VIT University', 'COMPUTER SCIENCE', '8.38', '10', '0')
(1070, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '157', '316', '4', '110', 'Sardar Patel College of Engineering', 'Computer', '73.4', '100', '30')
(1071, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0')
(1072, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '152', '312', '4', '112', 'DDIT', 'Computer Engineering', '7.21', '10', '12')
(1073, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '156', '317', '3.5', '99', 'Sinhgad College of Engineering', 'Computer Engineering', '63.17', '100', '0')
(1074, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(1075, 'Northeastern University', '1', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2011', '800', '550', '1350', '4', '96', 'University of Mumbai', 'Computer Engineering', '54', '100', '0')
(1076, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0')
(1077, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0')
(1078, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '370', '1160', '3.5', '87', 'Sri Sairam Engineering College', 'ECE', '76', '100', '0')
(1079, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '156', '315', '3.5', '110', 'Pune University', 'Computer', '67', '100', '0')
(1080, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '490', '1280', '4', '247', 'MREC', 'CS', '79', '100', '0')
(1081, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '147', '307', '3.5', '104', 'MU', 'Information Technology', '58.36', '100', '0')
(1082, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0')
(1083, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '154', '310', '3.5', '113', 'VTU', 'ISE', '74.66', '100', '0')
(1084, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0')
(1085, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '370', '1100', '3', '106', 'LNCT', 'EC', '0', '0', '0')
(1086, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '790', '580', '1370', '3.5', 'None', 'Amity University', 'ECE', '7.01', '10', '0')
(1087, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '160', '319', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '64', '100', '0')
(1088, 'Northeastern University', '1', 'Admit', 'MS', 'MEM', 'Fall ', '2014', '159', '143', '302', '3', 'None', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics', '6.7', '10', '0')
(1089, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '530', '1280', '3.5', '113', 'Amity University', 'Electronics & Communication', '7', '10', '0')
(1090, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '410', '1190', '3.5', '110', 'NMIMS', 'Electronics', '3.2', '4', '0')
(1091, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0')
(1092, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '710', '320', '1030', '3.5', '85', 'Punjab Technical University', 'CSE', '75', '100', '0')
(1093, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0')
(1094, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '99', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication Engineering', '69', '100', '15')
(1095, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '99', 'SNDT', 'I.T', '3.73', '4', '24')
(1096, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '157', '315', '3.5', '114', 'VTU', 'Information Science', '68', '100', '0')
(1097, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0')
(1098, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(1099, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '150', '314', '3.5', '105', 'Galgotias College Of Engineering And Technology', 'Electronics and Communication', '69', '100', '0')
(1100, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '99', 'Jaypee Institute of Information Technology', 'Department of Computer Science and ICT', '77', '100', '24')
(1101, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0')
(1102, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0')
(1103, 'Northeastern University', '1', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '157', '149', '306', 'None', '102', 'NCET Bangalore', 'Civil Engineering', '65', '100', '0')
(1104, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '144', '311', '3.5', '93', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.16', '10', '0')
(1105, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0')
(1106, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24')
(1107, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0')
(1108, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0')
(1109, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36')
(1110, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0')
(1111, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0')
(1112, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '143', '300', '3.5', 'None', 'UPTU', 'CS&E;', '64', '100', '54')
(1113, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(1114, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '151', '302', '3.5', '108', 'VTU', 'Computer Science and Engineering', '68.8', '100', '0')
(1115, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0')
(1116, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '630', '590', '1220', 'None', 'None', 'Thiagarajar College of engineering', 'ECE', '7.9', '10', '0')
(1117, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0')
(1118, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0')
(1119, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '144', '311', '4', '111', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73.8', '100', '0')
(1120, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '166', '155', '321', 'None', '103', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.75', '10', '0')
(1121, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '152', '308', '4.5', '107', 'University of Pune', 'Information technology', '7.77', '10', '0')
(1122, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0')
(1123, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '142', '301', '3', '93', 'Ramrao Adik Institute of Technology', 'Information Technology', '3.2', '4', '54')
(1124, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0')
(1125, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2013', '163', '147', '310', '3.5', '101', 'VIT', 'electronics and communication', '3.68', '4', '0')
(1126, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1127, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76')
(1128, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0')
(1129, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0')
(1130, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '103', 'VTU', 'CS', '74.3', '100', '0')
(1131, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18')
(1132, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '162', '328', '4', '115', 'BIT Mesra', 'Computer Science', '7.31', '100', '34')
(1133, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0')
(1134, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0')
(1135, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0')
(1136, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '650', '1450', '4.5', '300', 'MU', 'Comp Engg', '62', '100', '0')
(1137, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '570', '1360', '3', '108', 'St Martins engineering college', 'CSE', '72', '100', '0')
(1138, 'Northeastern University', '1', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(1139, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '152', '310', '3', '101', 'JNTU', 'CSE', '76.4', '100', '19')
(1140, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0')
(1141, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', 'None', 'VTU', 'CSE', '81.5', '100', '0')
(1142, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '155', '319', '4.5', '102', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.7', '10', '0')
(1143, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0')
(1144, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0')
(1145, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '101', 'mgit', 'it', '77.2', '100', '0')
(1146, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'PVP Siddhartha Inst. of Tech', 'CSE', '74.41', '100', '0')
(1147, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '150', '153', '303', '2.5', 'None', 'JNTU', 'b.pharmacy', '70.1', '100', '0')
(1148, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(1149, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0')
(1150, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '164', '149', '313', '3.5', '103', 'CBIT', 'ECE', '83', '100', '0')
(1151, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0')
(1152, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '109', 'GITAM', 'CSE', '8.97', '10', '0')
(1153, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '148', '144', '292', '3', '100', 'Osmania University', 'biotechnology', '78', '100', '0')
(1154, 'Northeastern University', '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '740', '480', '1220', '3.5', '97', 'BITS Pilani', 'Pharmacy and health sciences', '8.26', '10', '0')
(1155, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0')
(1156, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '2.5', '98', 'UPTU', 'Computer Science & Tech', '8', '10', '0')
(1157, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '300', '1100', '3', 'None', 'Sreenidhi Institute of Science & Technology', 'EEE', '73.2', '100', '0')
(1158, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'D J Sanghvi', 'Computers', '65.5', '100', '0')
(1159, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '3', '88', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '72', '100', '0')
(1160, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(1161, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '152', '144', '296', '3.5', '95', 'NIT Warangal', 'Computer Science', '8.4', '10', '0')
(1162, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '159', '319', '4', '115', 'NIT Raipur', 'IT', '8.43', '10', '0')
(1163, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '148', '312', '4', '112', 'Anna University', 'EE', '7.36', '10', '0')
(1164, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '510', '1240', '4', '104', "SLC's institute of Engg and Tech affiliated to JNTU", 'CSE', '72', '100', '0')
(1165, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0')
(1166, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '550', '1350', '3.5', '99', 'VIT', 'Information Technology', '7.9', '10', '0')
(1167, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '144', '302', 'None', '98', 'West Bengal University Of Technology', 'Electronics & Instrumentation', '8.25', '10', '0')
(1168, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '155', '145', '300', '3', '100', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.05', '10', '67')
(1169, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '151', '314', '3.5', '109', 'JNTU', 'Mechanical', '63.4', '100', '0')
(1170, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '4', '84', 'None', 'Mathematics', '76', '100', '0')
(1171, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0')
(1172, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '155', '149', '304', '3.5', '96', 'University of Calicut', 'Computer Science', '64.5', '100', '0')
(1173, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0')
(1174, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0')
(1175, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0')
(1176, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31')
(1177, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '147', '306', '3.5', '104', 'Coimbatore Insitute of Technology', 'M. Sc. Software Engineering(5 Year Integrated Course)', '74.11', '100', '0')
(1178, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0')
(1179, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7')
(1180, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0')
(1181, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0')
(1182, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'University of Pune', 'IT', '69', '100', '0')
(1183, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '104', 'PICT', 'Mechanical', '60', '100', '0')
(1184, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '97', 'PICT', 'IT', '3.78', '4', '0')
(1185, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(1186, 'Northeastern University', '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0')
(1187, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '111', 'NIT Silchar', 'Computer Science and Engineering', '8.17', '10', '0')
(1188, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0')
(1189, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '147', '317', '3.5', '105', 'YMCA', 'Information Technology', '8.81', '10', '24')
(1190, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(1191, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '152', '142', '294', '3', '98', 'MU', 'Information Technology', '67', '100', '0')
(1192, 'Northeastern University', '1', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', '156', '158', '314', '3.5', '101', 'D Y Patil College of Engineering', 'Biotechnology', '68', '100', '0')
(1193, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0')
(1194, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '770', '1540', '3.5', '280', 'VTU', 'Computer Science', '78', '100', '0')
(1195, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'MU', 'Computer Engineering', '68.57', '100', '0')
(1196, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0')
(1197, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '390', '1140', '3', '99', 'None', '0', '0', '0', '0')
(1198, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0')
(1199, 'Northeastern University', '1', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '96', 'IIT Bombay', 'Civil Engineering', '7.37', '10', '0')
(1200, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0')
(1201, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(1202, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '151', '307', '3.5', '105', 'VTU', 'CSE', '67', '100', '0')
(1203, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '105', 'Punjab Technical University', 'Computer Science', '72.5', '100', '0')
(1204, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0')
(1205, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'UPTU', 'electronics and Communication', '7.62', '10', '0')
(1206, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0')
(1207, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0')
(1208, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0')
(1209, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0')
(1210, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0')
(1211, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '152', '313', '3.5', 'None', 'MU', 'ExTC', '62', '100', '31')
(1212, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '790', '490', '1280', '4', '109', 'MU', 'Information Technology', '67', '100', '33')
(1213, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0')
(1214, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0')
(1215, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '159', '322', '3', '108', 'MU', 'Information Technology', '66', '100', '0')
(1216, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '670', '1430', '4', '116', 'SSN College of Engineering', 'Information Technology', '71', '100', '0')
(1217, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0')
(1218, 'Northeastern University', '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '470', '1240', '3', '102', 'Sir MVIT', 'Information Science', '75.89', '100', '0')
(1219, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0')
(1220, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '610', '1390', '4.5', '297', 'G.G.S.I.P. U', 'Computer Science', '82', '100', '0')
(1221, 'Northeastern University', '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '680', '600', '1280', '4', '108', 'Bharati Vidyapeeth', 'Pharmacy', '71', '100', '0')
(1222, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0')
(1223, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0')
(1224, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '330', '1090', '3', '91', 'Fr.CRCE', 'Computer Engineering', '70.42', '100', '0')
(1225, 'Northeastern University', '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24')
(1226, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0')
(1227, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0')
(1228, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(1229, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '145', '303', '3.5', '100', 'MU', 'Computer', '70', '100', '0')
(1230, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '2.5', '103', 'J.B. Institute of Engg & Tech(Affliated to JNTU)', 'Computer Science', '74.9', '100', '0')
(1231, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '660', '410', '1070', '3', '97', 'Sir MVIT', 'CS', '68.32', '100', '0')
(1232, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '350', '1150', '3.5', 'None', 'JNTU', 'electronics and Instrumentation', '0', '0', '0')
(1233, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11')
(1234, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0')
(1235, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '3.5', '98', 'Sri Venkateswara College of Engineering', 'Computer Science', '6.59', '10', '0')
(1236, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '94', 'Atharva College', 'COMPUTER ENGINEERING', '3.71', '4', '0')
(1237, 'Northeastern University', '1', 'Admit', 'MS', 'Finance', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Iowa State University', 'Economics and Finance', '3.22', '4', '0')
(1238, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0')
(1239, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3.5', '107', 'VTU', 'Computer Science', '74.3', '100', '0')
(1240, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '460', '1180', '2.5', '84', 'RCET bhilai', 'electrical', '7.2', '100', '0')
(1241, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '147', '310', '3.5', '110', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '8.1', '10', '11')
(1242, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '96', 'JNTU', 'ECE', '71.35', '100', '0')
(1243, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0')
(1244, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0')
(1245, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '750', '1550', '5', '290', 'SPCE', 'CE', '63', '100', '0')
(1246, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '165', '141', '306', '4', '104', 'SSN College of Engineering', 'ECE', '85', '100', '0')
(1247, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42')
(1248, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0')
(1249, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(1250, 'Northeastern University', '1', 'Admit', 'MS', 'medicinal chemistry', 'Fall ', '2014', '155', '158', '313', '4', '113', 'MU', 'Pharmacy', '57.5', '100', '24')
(1251, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '155', '150', '305', '3.5', '111', 'Anna University', 'Chemical Engg', '9', '10', '36')
(1252, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(1253, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0')
(1254, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0')
(1255, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0')
(1256, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2015', '154', '145', '299', '3.5', '102', 'Kurukshetra University', 'Electronics and Communication', '68', '100', '0')
(1257, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '630', '1410', '4', '107', 'MU', 'E & TC', '66', '100', '0')
(1258, 'Northeastern University', '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '157', '151', '308', '4', '102', 'MU', 'Computer Engineering', '64', '100', '0')
(1259, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '150', '311', '3', '111', 'COEP', 'Mechanical', '6.4', '10', '0')
(1260, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0')
(1261, 'Northeastern University', '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29')
(1262, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '146', '310', '3.5', '101', 'GTU', 'Computer Enginnering', '7.77', '10', '0')
(1263, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0')
(1264, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(1265, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0')
(1266, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3.5', '111', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '73', '100', '0')
(1267, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0')
(1268, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0')
(1269, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '4', '105', 'UPTU', 'Computer Science', '3.2', '4', '0')
(1270, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0')
(1271, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27')
(1272, 'Northeastern University', '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39')
(1273, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', 'None', '308', 'MU', 'Information technology', '66', '100', '0')
(1274, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', 'None', 'Model Engineering College', 'Computer Science', '74', '100', '36')
(1275, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0')
(1276, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0')
(1277, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3', '101', 'B M S College of Engineering', 'Electronics and Communications', '77', '100', '0')
(1278, 'Northeastern University', '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6')
(1279, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '103', 'Dr. AIT VTU', 'Computer Science Engineering', '71.15', '100', '0')
(1280, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0')
(1281, 'Northeastern University', '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1282, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0')
(1283, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3', '104', 'R V College of Engineering', 'Electronics and Communication', '8.84', '10', '0')
(1284, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', 'None', 'Datta Meghe College of Engineering', 'Computer Science and Engineering', '57', '100', '16')
(1285, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '156', '316', '3.5', '7', 'Amrita School of Engineering', 'CSE', '2.5', '4', '0')
(1286, 'Northeastern University', '1', 'Admit', 'MS', 'energy', 'Fall ', '2014', '700', '430', '1130', '3', '7', 'Anna University', 'EEE', '8.75', '100', '0')
(1287, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29')
(1288, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0')
(1289, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '167', '333', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '76.7', '100', '0')
(1290, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0')
(1291, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '700', '560', '1260', '4.5', '100', 'VTU', 'ece', '66', '100', '0')
(1292, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0')
(1293, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0')
(1294, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0')
(1295, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '2.5', '101', 'CITM indore', 'computer science', '66.13', '100', '0')
(1296, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '152', '313', '3.5', '102', 'MU', 'EXTC', '75', '100', '0')
(1297, 'Northeastern University', '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'Amrita School of Engineering', 'IT', '8.9', '10', '29')
(1298, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '95', 'Nirma Institute of Technology', 'Information Technology', '8.46', '10', '0')
(1299, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0')
(1300, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '101', 'sri krishna devaraya university', 'CSE', '7.6', '10', '0')
(1301, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0')
(1302, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '146', '299', '3', '96', 'SRM', 'Mechanical Engineering', '8.2', '10', '0')
(1303, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32')
(1304, 'Northeastern University', '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0')
(1305, 'Northeastern University', '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0')
(1306, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0')
(1307, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '161', '141', '302', '3', '102', 'Inderprastha Engineering College', 'Electronics & Communication', '70', '100', '0')
(1308, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29')
(1309, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '3.5', '97', 'CEG', 'M.Sc(5 year Integrated)Information Technology', '8.52', '10', '0')
(1310, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '100', 'Rajasthan Technical University', 'Computer Science', '75.3', '100', '0')
(1311, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0')
(1312, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '165', '332', '4.5', '113', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.89', '10', '14')
(1313, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '470', '1270', '3', '101', 'Northeastern', 'TSM', '3.33', '4', '0')
(1314, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0')
(1315, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '168', '156', '324', '3.5', '112', 'Chitkara University', 'Computer Science Engineering', '7.67', '10', '0')
(1316, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '147', '312', '3.5', '312', 'JNTU', 'CSE', '71', '100', '0')
(1317, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0')
(1318, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '114', 'VTU', 'Computer science', '79', '100', '0')
(1319, 'Northeastern University', '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0')
(1320, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '740', '440', '1180', '2', '91', 'VESIT', 'CS', '70', '100', '0')
(1321, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0')
(1322, 'Northeastern University', '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2007', '780', '410', '1190', '3.5', '280', 'SASTRA', 'ECE', '7', '10', '0')
(1323, 'Northeastern University', '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '102', 'Nagarjuna University', 'Electronics & Computer Engineering', '8.26', '10', '0')
(1324, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29')
(1325, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '161', '153', '314', '3', '104', 'None', 'Computer Science', '7.67', '10', '0')
(1326, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '147', '309', '4', '99', 'Pune University', 'Computer', '74', '100', '12')
(1327, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0')
(1328, 'Northeastern University', '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '170', '150', '320', '3', '104', 'CVSR/ JNTU-Hyderabad', 'CSE', '72', '100', '0')
(1329, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '153', '312', '3.5', '109', 'None', '0', '0', '0', '0')
(1330, 'Northeastern University', '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0')
(1331, 'Northeastern University', '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0')
(1332, 'Northeastern University', '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '4.5', '110', 'Maharishi Dayanand University', 'Computer Science', '66', '100', '0')
(1333, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '145', '304', '3.5', '99', 'JNTU', 'Computer Science and Engineering', '75.8', '100', '22')
(1334, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24')
(1335, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0')
(1336, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(1337, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0')
(1338, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '146', '309', '3', '101', 'MU', 'Computer Engineering', '58', '100', '0')
(1339, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '4', '113', 'VTU', 'CSE', '73', '100', '0')
(1340, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0')
(1341, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0')
(1342, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '105', 'MGIT - JNTUH', 'EEE', '73', '100', '0')
(1343, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0')
(1344, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0')
(1345, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '154', '144', '298', '3', 'None', 'Rajasthan Technical University', 'Computer Engineering', '65', '100', '0')
(1346, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '330', '1120', '3.5', '85', 'MU', 'Computer', '63.5', '100', '0')
(1347, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0')
(1348, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0')
(1349, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0')
(1350, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '291', '139', '430', '3', '80', 'University of Mumbai', 'Information Technology', '54', '100', '0')
(1351, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0')
(1352, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '159', '320', '3', '116', 'MU', 'Computer Engineering', '61', '100', '0')
(1353, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0')
(1354, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28')
(1355, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0')
(1356, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '156', '152', '308', '5', '111', 'RKNEC', 'Industrial', '74', '100', '0')
(1357, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(1358, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0')
(1359, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '520', '1310', 'None', 'None', 'Atharva College', 'IT', '69', '100', '0')
(1360, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '153', '314', '3', '101', 'Nagpur University', 'Electronics Engineering', '76', '100', '0')
(1361, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '3', '104', 'JUET', 'CSE', '6.9', '10', '0')
(1362, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Spring ', '2013', '161', '144', '305', '3', '84', 'American International University', 'Electrical & Electronic Engineering', '3.04', '4', '0')
(1363, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '90', 'Mepco Schlenk Engineering College', 'Computer Science', '75', '100', '0')
(1364, 'Northeastern University', '1', 'Reject', 'MS', 'Computational Science', 'Fall ', '2015', '158', '145', '303', '3', '110', 'KLS Gogte Institute of Technology', 'Computer Science and Engineering', '79.12', '100', '31')
(1365, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0')
(1366, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0')
(1367, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0')
(1368, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0')
(1369, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0')
(1370, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(1371, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0')
(1372, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '510', '1280', '4', '95', 'Goa University', 'Electronics and Telecommunication', '72', '100', '0')
(1373, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '4', '104', 'K J Somaiya College of Engiineering', 'COMPS', '65', '100', '0')
(1374, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0')
(1375, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '540', '1340', '3.5', '103', 'VNIT Nagpur', 'ECE', '8.22', '10', '0')
(1376, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '148', '310', '3', '100', 'UPTU', 'Computer Science', '67', '100', '0')
(1377, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12')
(1378, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0')
(1379, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0')
(1380, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42')
(1381, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '490', '1280', '4', '103', 'MU', 'IT', '67', '100', '0')
(1382, 'Northeastern University', '1', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0')
(1383, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '97', 'Kurukshetra University', 'information technology', '71', '100', '0')
(1384, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13')
(1385, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0')
(1386, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '158', '156', '314', '3.5', '109', 'SAKEC University of Mumbai', 'Electronics Engineering', '60.22', '100', '0')
(1387, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0')
(1388, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0')
(1389, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0')
(1390, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0')
(1391, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29')
(1392, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0')
(1393, 'Northeastern University', '1', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '165', '151', '316', '2.5', '95', 'UPTU', 'ME + MBA', '64.58', '100', '0')
(1394, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0')
(1395, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '690', '570', '1260', '2.5', '101', 'Pune University', 'Computer Science', '55', '100', '0')
(1396, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2103', '152', '144', '296', '3', '88', 'VTU', 'computer science', '78', '100', '0')
(1397, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '153', '148', '301', 'None', 'None', 'Pune University', 'Computer Science', '59', '100', '0')
(1398, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0')
(1399, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '3', '101', 'Pune University', 'Electronics and communication', '65', '100', '0')
(1400, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0')
(1401, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '2.5', '84', 'NIT Allahabad', 'Information Technology', '6.89', '10', '0')
(1402, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '4.5', '112', 'Cochin University of Science and Technology', 'Computer Science', '66.35', '100', '34')
(1403, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0')
(1404, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0')
(1405, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0')
(1406, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0')
(1407, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32')
(1408, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '140', '305', '3', '83', 'GTU', 'ECE', '7.73', '10', '0')
(1409, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11')
(1410, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0')
(1411, 'Northeastern University', '1', 'Reject', 'MS', 'Information technology management', 'Fall ', '2013', '161', '147', '308', '3', '93', 'R.G.P.V/Chamelidevi School Of Engineering', 'Electronics & Communication', '74.5', '100', '0')
(1412, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18')
(1413, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '161', '150', '311', '3', '95', 'MSRIT', 'Telecommunication', '75', '100', '0')
(1414, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '162', '157', '319', 'None', '110', 'MU', 'Electronics', '55', '100', '0')
(1415, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6')
(1416, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0')
(1417, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0')
(1418, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24')
(1419, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '305', '149', '454', '3', 'None', 'Pune University', 'Computer Engineering', '3.8', '100', '0')
(1420, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0')
(1421, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3', '101', 'University of Mumbai', 'Computer Engineering', '65.73', '100', '0')
(1422, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16')
(1423, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '99', 'University of Pune', 'Computer Engg.', '58.46', '100', '0')
(1424, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '660', '380', '1040', '3', '91', 'Pune University', 'Computer and Information Technology', '64', '100', '0')
(1425, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '153', '152', '305', '2', '91', 'IIPS DAVV', 'Mtech(IT)', '82', '100', '0')
(1426, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '620', '1410', '4.5', '287', 'MU', 'Elec and Telecom', '67', '100', '0')
(1427, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24')
(1428, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '159', '146', '305', '2.5', '92', 'Bangalore Institute of Technology', 'Computer Science', '81', '100', '0')
(1429, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0')
(1430, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0')
(1431, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24')
(1432, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0')
(1433, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0')
(1434, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '690', '620', '1310', '3', '96', 'University of Rajasthan', 'Mechanical Engineering', '70.5', '100', '0')
(1435, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0')
(1436, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48')
(1437, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0')
(1438, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '161', '145', '306', '3', '102', 'Sri Manakula Vinayagar Engineering College', 'Electrical and Electronics Engineering', '8.53', '10', '0')
(1439, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '144', '299', '3', '84', 'Anna University', 'Computer science and engineering', '76', '100', '0')
(1440, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '800', '580', '1380', '4', '115', 'MU', 'Computers', '53.95', '100', '0')
(1441, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '2.5', '90', 'Pune University', 'Computerscience', '56', '100', '44')
(1442, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0')
(1443, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0')
(1444, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0')
(1445, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '540', '1250', '3', '105', 'UPTU', 'Electronics & Communication', '65.2', '100', '0')
(1446, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '530', '1310', '3', '93', 'PESIT', 'Information Science', '65', '100', '0')
(1447, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '164', '147', '311', '4.5', '95', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '5.6', '10', '0')
(1448, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51')
(1449, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0')
(1450, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0')
(1451, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '110', 'Sri Venkateswara College of Engineering', 'ECE', '76', '100', '0')
(1452, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0')
(1453, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0')
(1454, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '660', '460', '1120', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '55', '100', '0')
(1455, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3.5', '102', 'RAIT', 'Computer Engg.', '68.2', '100', '0')
(1456, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3', '104', 'VIIT', 'computer engineering', '55', '100', '0')
(1457, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '430', '1210', '3.5', '103', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0')
(1458, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0')
(1459, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3.5', '103', 'GITAM', 'IT', '67', '100', '0')
(1460, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0')
(1461, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '146', '306', '2.5', 'None', "St Joseph's College of Engineering", 'Mechanical', '8.32', '10', '8')
(1462, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42')
(1463, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15')
(1464, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '156', '321', '4', '107', 'BVM Engineering College', '0', '7.96', '10', '0')
(1465, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6')
(1466, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0')
(1467, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0')
(1468, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0')
(1469, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '4', '100', 'Bangladesh University of Engineering & Technology', 'Computer Science', '3.91', '4', '0')
(1470, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '440', '1150', '3', '94', 'VTU', 'Electronics and Communication', '60.69', '100', '0')
(1471, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0')
(1472, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48')
(1473, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '310', '1040', '3', '89', 'Somaiya', 'IT', '61', '100', '0')
(1474, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0')
(1475, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3', '100', 'St Francis Institute of Technology - Mumbai Unversity', 'Electronics and telecommunication', '61.7', '100', '0')
(1476, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '161', '318', '4.5', '112', 'Pune University', 'Computer Engineering', '68.5', '100', '0')
(1477, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '450', '1210', '3', '96', 'Pune University', 'Computer Science', '59', '100', '0')
(1478, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '150', '151', '301', '3', '102', 'MU', 'computer', '64', '100', '0')
(1479, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0')
(1480, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0')
(1481, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '161', '155', '316', '4', '101', 'University of Pune', 'IT', '63', '100', '13')
(1482, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0')
(1483, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0')
(1484, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0')
(1485, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0')
(1486, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '4', '103', 'Shivajirao S. Jondhale College of Engineering', 'Computer Engineering', '60', '100', '0')
(1487, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0')
(1488, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '111', 'GGSIPU', 'MCA(Software Engineering)', '71', '100', '32')
(1489, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '145', '303', '3.5', 'None', 'University of Kerala', 'CSE', '79.8', '100', '0')
(1490, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33')
(1491, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0')
(1492, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2013', '730', '320', '1050', '3.5', '94', 'MU', 'Electronics Engineering', '62.68', '100', '0')
(1493, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '330', '1060', '3', '87', 'University of Mumbai', 'Electronics', '68', '100', '0')
(1494, 'Northeastern University', '1', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0')
(1495, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '3', '106', 'Sathyabama University', 'Electronics and telecommunication', '8.4', '10', '0')
(1496, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0')
(1497, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0')
(1498, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '350', '1050', '3', '105', 'MU', 'Computer Science', '54', '100', '0')
(1499, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21')
(1500, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '143', '291', '4.5', '103', 'Pune University', 'IT', '67', '100', '0')
(1501, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '152', '313', '3', '104', 'Thapar University', 'Electronis and Instrumentation', '8.8', '10', '0')
(1502, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0')
(1503, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0')
(1504, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0')
(1505, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '151', '312', '3', '88', 'I.E.T D.A.V.V.', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '66.45', '100', '0')
(1506, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0')
(1507, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0')
(1508, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '151', '311', '3', '101', 'VIT University', 'CSE', '8.56', '10', '24')
(1509, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0')
(1510, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0')
(1511, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0')
(1512, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '560', '1350', '4', '106', 'Nagpur University', 'Electronics and Comm.', '75', '100', '0')
(1513, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0')
(1514, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '108', 'VTU', 'Electronics & Communication', '71', '100', '36')
(1515, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '162', '325', '4', '8', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.19', '10', '0')
(1516, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0')
(1517, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(1518, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0')
(1519, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '103', 'Ahmedabad Institute of Technology', 'Computer Engineering', '3.26', '4', '0')
(1520, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0')
(1521, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4')
(1522, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(1523, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '146', '304', '3', 'None', 'SNIST', '0', '68', '100', '54')
(1524, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0')
(1525, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16')
(1526, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0')
(1527, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0')
(1528, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0')
(1529, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '98', 'NIT Allahabad', 'IT', '7.8', '10', '0')
(1530, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22')
(1531, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0')
(1532, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46')
(1533, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0')
(1534, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0')
(1535, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3', '93', 'Vishwakarma Institute of Technology', 'Computer Science', '7.1', '10', '0')
(1536, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0')
(1537, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0')
(1538, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0')
(1539, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '650', '530', '1180', '3', '104', 'MU', 'Information technology', '53', '100', '0')
(1540, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '160', '312', '4', '119', 'Shivaji University', 'Electronics & Telecommunication', '3.02', '4', '0')
(1541, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '97', 'Pune University', 'Electronic and Telecommunication', '61', '100', '44')
(1542, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0')
(1543, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '42', '24', '66', '4', '96', 'MU', 'Computer science', '62.3', '100', '0')
(1544, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0')
(1545, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(1546, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0')
(1547, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0')
(1548, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0')
(1549, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0')
(1550, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0')
(1551, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '460', '1170', '3', '100', 'University of Pune', 'Compurter Engineering', '60', '100', '0')
(1552, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36')
(1553, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0')
(1554, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0')
(1555, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0')
(1556, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '149', '317', '3', '95', 'VNR VJIET', 'CSE', '67', '100', '0')
(1557, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '159', '149', '308', '3', '81', 'GTU', 'EC', '7.16', '100', '0')
(1558, 'Northeastern University', '1', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '730', '530', '1260', '3.5', '99', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '55', '100', '0')
(1559, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '154', '144', '298', '3.5', '86', 'University of Pune', 'Information Technology', '63', '100', '0')
(1560, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', 'None', '104', 'Amrita School of Engineering', 'Electrical and Electronics', '6.7', '10', '45')
(1561, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'MU', 'IT', '57', '100', '0')
(1562, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '740', '620', '1360', '3.5', '117', 'Atria Institute of Technology', 'telecommunication', '63', '100', '0')
(1563, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '154', '318', '3', '113', 'Sapthagiri College of Engineering', 'Electronics and Communication', '69.14', '100', '0')
(1564, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Punjab Technical University', 'Computer Science Engineering', '71', '100', '0')
(1565, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Anna University', 'Electronics and Instrumentation Engg', '8.62', '10', '0')
(1566, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '700', '320', '1020', '2.5', '237', "VIDYAVARDHINI'S COLLEGE VASAI WEST MUMBAI UNIVERSITY", 'Computer Engg', '56', '100', '0')
(1567, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '157', '157', '314', '4.5', 'None', 'CEG', 'Computer Science and Engineering', '0', '0', '22')
(1568, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0')
(1569, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(1570, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0')
(1571, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0')
(1572, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3.5', '104', 'Pune University', 'Information Technology', '62.5', '100', '0')
(1573, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0')
(1574, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30')
(1575, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(1576, 'Northeastern University', '1', 'Reject', 'MS', 'Entertainment technology-Animations and graphics', 'Fall ', '2013', '710', '570', '1280', '4', '106', 'Yadavrao Tasgaonkar Institute of Engineerig and Technology', 'Electronics and Telecommunication', '64.76', '100', '0')
(1577, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3')
(1578, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0')
(1579, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0')
(1580, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15')
(1581, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2014', '163', '141', '304', '3', '94', 'NMIMS', 'Information Technology', '2.98', '4', '0')
(1582, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0')
(1583, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(1584, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0')
(1585, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0')
(1586, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0')
(1587, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '145', '139', '284', '2', '82', 'None', '0', '0', '0', '0')
(1588, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '800', '470', '1270', '4.5', '104', 'NIT (REC) Calicut India', 'Electronics and Communications Engineering', '61', '100', '0')
(1589, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0')
(1590, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0')
(1591, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0')
(1592, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0')
(1593, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0')
(1594, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(1595, 'Northeastern University', '1', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0')
(1596, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0')
(1597, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '4.5', '107', 'DBIT', 'Comp Engg', '60', '100', '0')
(1598, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0')
(1599, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0')
(1600, 'Northeastern University', '1', 'Reject', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36')
(1601, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0')
(1602, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60')
(1603, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0')
(1604, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '110', 'JNTU', 'Computer Science and Engineering', '63', '100', '60')
(1605, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '90', 'D J Sanghvi', 'EXTC', '72.85', '100', '0')
(1606, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0')
(1607, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30')
(1608, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36')
(1609, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '4', '108', 'Sri Sairam Inst of Technology', 'Information Tech', '8.5', '10', '13')
(1610, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0')
(1611, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0')
(1612, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '550', '1270', '3.5', '108', 'Pune University', 'Computer Engineering', '56', '100', '0')
(1613, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '145', '299', '3.5', '93', 'The Oxford college of engineering (VTU))', 'Information Science', '67.33', '100', '0')
(1614, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '106', 'MU', 'Electronics and Telecommunication', '74.5', '100', '0')
(1615, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0')
(1616, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0')
(1617, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0')
(1618, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0')
(1619, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '400', '1160', '3', '102', 'VCET', 'Computers', '65', '100', '0')
(1620, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23')
(1621, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0')
(1622, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0')
(1623, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0')
(1624, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0')
(1625, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '157', '310', '4.5', '114', 'BMSCE', 'Information Science', '7.49', '10', '6')
(1626, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '148', '303', 'None', '90', 'Gurunanak institute of tech', 'CSE', '79', '100', '13')
(1627, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '155', '313', '4', '118', 'GGSIPU', 'ECE', '74.6', '100', '0')
(1628, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0')
(1629, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Spring ', '2014', '158', '142', '300', '3', '89', 'Pune University', 'Information Technology', '59', '100', '0')
(1630, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0')
(1631, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1632, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0')
(1633, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '320', '1020', '3.5', '90', 'SCOE Pune', 'Information Technology', '58', '100', '0')
(1634, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '150', '310', '4.5', '108', 'Manipal Institue of Technology', 'Computer Science', '7.4', '10', '0')
(1635, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(1636, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3', '97', 'DAVV', 'IIPS', '7.27', '10', '0')
(1637, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '2.5', 'None', 'University of Mumbai', 'Computer Engineering', '72.69', '100', '0')
(1638, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(1639, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0')
(1640, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25')
(1641, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '92', 'JNTU', 'computer science', '67.51', '100', '0')
(1642, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(1643, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3.5', '92', 'None', 'ECE', '8.35', '10', '90')
(1644, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'BITS Dubai', 'Electronics and Instrumentation', '8.97', '10', '0')
(1645, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '630', '1400', '3.5', '105', 'MU', 'Electronics and Telecom', '55', '100', '0')
(1646, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0')
(1647, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0')
(1648, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '90', "BLDEA's CET", 'Information Science & Engineering', '72', '100', '0')
(1649, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0')
(1650, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0')
(1651, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(1652, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0')
(1653, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0')
(1654, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0')
(1655, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '145', '298', '4', '91', 'U.P.T.U', 'Electrical & Electronics', '71.16', '100', '0')
(1656, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45')
(1657, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65')
(1658, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0')
(1659, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44')
(1660, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '161', '147', '308', '3', '80', 'MU', 'IT', '56.2', '100', '0')
(1661, 'Northeastern University', '1', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '550', '1350', '3', '96', 'Thapar University', 'Electrical &Instrumenattion; Engineering', '6.44', '10', '0')
(1662, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(1663, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0')
(1664, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '162', '145', '307', '3', '91', 'IIT BHU', 'Electrical Engineering', '6.54', '10', '0')
(1665, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0')
(1666, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0')
(1667, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0')
(1668, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(1669, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(1670, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2014', '155', '145', '300', '3.5', '95', 'BVCOE', 'IT', '67', '100', '0')
(1671, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6')
(1672, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0')
(1673, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0')
(1674, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '103', 'PESIT', 'Computer Engineering', '0', '0', '0')
(1675, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0')
(1676, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0')
(1677, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '152', '304', '3.5', '102', 'University of Pune', 'Computer Engineering', '62.73', '100', '0')
(1678, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(1679, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '550', '1310', '3', '112', 'MU', 'Electronics & Telecom', '71', '100', '0')
(1680, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(1681, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0')
(1682, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0')
(1683, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'University of Pune', 'Computer Science', '56', '100', '0')
(1684, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(1685, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24')
(1686, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25')
(1687, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '162', '151', '313', '2.5', '106', 'K J Somaiya College of Engiineering', 'CSE', '7.1', '10', '0')
(1688, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3.5', 'None', 'MU', 'Computer Engineering', '59', '100', '0')
(1689, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4.5', '108', 'VTU', 'Electronics and communication', '74.6', '100', '0')
(1690, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0')
(1691, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58')
(1692, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '114', 'KIIT', 'Electronics & Electrical Engg.', '9.32', '10', '0')
(1693, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '142', '301', '3.5', '94', 'MSRIT', 'Computer Science & Engineering', '7.14', '10', '0')
(1694, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(1695, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '164', '150', '314', '3.5', '101', 'TIT&Sc.;', 'Information Tech.', '71', '100', '0')
(1696, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0')
(1697, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3', '106', 'MU', 'IT', '61', '100', '0')
(1698, 'Northeastern University', '1', 'Reject', 'MS', 'Mechatronics/Robotics', 'Fall ', '2014', '162', '150', '312', '3', 'None', 'Dharamsinh Desai University', 'Electronics and communication', '69', '100', '24')
(1699, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '760', '460', '1220', '3', 'None', 'MU', 'Computer Engineering', '65', '100', '0')
(1700, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42')
(1701, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0')
(1702, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0')
(1703, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0')
(1704, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Spring ', '2013', '138', '152', '290', '2', 'None', 'JNTU', 'cse', '71', '100', '0')
(1705, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0')
(1706, 'Northeastern University', '1', 'Reject', 'MS', 'MIS/ GAme Dev/ Digital Media', 'Fall ', '2014', '161', '145', '306', '3', '102', 'Pune University', 'Computer', '64', '100', '23')
(1707, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12')
(1708, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0')
(1709, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '700', '420', '1120', '3', 'None', 'MU', 'Computers', '69.18', '100', '24')
(1710, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '4.5', '110', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0')
(1711, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0')
(1712, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '155', '318', '4', '116', 'Jaypee Institute of Information Technology', 'Computer Science', '7.6', '10', '0')
(1713, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '71', '100', '6')
(1714, 'Northeastern University', '1', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0')
(1715, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(1716, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '310', '1040', '2.5', '91', 'Sri Ramakrishna Engineering College', 'Electronics and Communications Engineering', '8.61', '10', '0')
(1717, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30')
(1718, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0')
(1719, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '158', '314', '4.5', '115', 'BITS Pilani', 'Computer Science', '7.58', '10', '0')
(1720, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '3', '103', 'RGTU', 'EC', '70.02', '100', '0')
(1721, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0')
(1722, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0')
(1723, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '143', '300', '3.5', '102', 'VTU', 'Electronics and Communication', '8.74', '10', '0')
(1724, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30')
(1725, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '97', 'NIT ALLAHABAD', 'Computer Science & Engg', '7.1', '10', '0')
(1726, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0')
(1727, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '610', '580', '1190', '3', '102', 'None', 'CSE', '8.3', '10', '0')
(1728, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '144', '312', '3', '93', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '28')
(1729, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(1730, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0')
(1731, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0')
(1732, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '155', '137', '292', '3', '101', 'PICT', 'Information Technology', '61.33', '100', '0')
(1733, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48')
(1734, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '470', '1100', '3', '94', 'Pune University', 'Information Technology', '0', '0', '0')
(1735, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0')
(1736, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1737, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1738, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2006', '800', '550', '1350', 'None', '290', 'Ramrao Adik Institute of Technology', 'EE', '0', '0', '0')
(1739, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '400', '1060', '3', '95', 'MU', 'IT', '66', '100', '0')
(1740, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0')
(1741, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '3.5', '102', 'Amrita School of Engineering', 'Computer Science', '6.17', '10', '0')
(1742, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0')
(1743, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0')
(1744, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '440', '1180', '2.5', '104', 'MU', 'Electronics and Telecommunication', '54', '100', '0')
(1745, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '150', '317', '3.5', '93', 'ISM Dhanbad', 'Electronics Engg.', '7.88', '10', '0')
(1746, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2012', '760', '320', '1080', '4.5', '96', 'JNTU', 'Computer Science', '62', '100', '0')
(1747, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0')
(1748, 'Northeastern University', '1', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0')
(1749, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0')
(1750, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0')
(1751, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0')
(1752, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0')
(1753, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0')
(1754, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '102', 'Ajay Kumar Garg Engineering College', 'Computer Science & Engineering', '62.1', '100', '0')
(1755, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8')
(1756, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '410', '1170', '3', '104', 'None', '0', '70.5', '100', '0')
(1757, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '540', '1300', '3', '92', 'MDU', '0', '65', '100', '0')
(1758, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48')
(1759, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(1760, 'Northeastern University', '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0')
(1761, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '149', '309', '2.5', '98', 'JNTU', 'CS', '70.79', '100', '55')
(1762, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(1763, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0')
(1764, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '107', 'None', '0', '0', '0', '0')
(1765, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'Electronics and Telecommunication', '60.21', '100', '0')
(1766, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '150', '316', '4', '98', 'Nirma Institute of Technology', 'Electronics & Communication Section Electrical Department', '7.75', '10', '0')
(1767, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '740', '510', '1250', '3', '91', 'Kurukshetra University', 'IT', '77.1', '100', '0')
(1768, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2013', '157', '153', '310', '4', '105', 'RNSIT', 'Comp. Sci.', '70', '100', '0')
(1769, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(1770, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0')
(1771, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '460', '1230', '3', '104', 'VTU', 'Electronics and Communication', '80', '100', '0')
(1772, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3.5', '105', 'R V College of Engineering', 'Information science', '8.12', '10', '19')
(1773, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '400', '1170', '3', '96', 'University of Mumbai', 'CMPN', '64', '100', '0')
(1774, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16')
(1775, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '154', '317', '4', '111', 'DBIT', 'Mechanical Engineering', '56', '100', '0')
(1776, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '740', '410', '1150', '2.5', '273', 'MGM College of Engineering & Technology', 'Computer', '58', '100', '0')
(1777, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0')
(1778, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institue of Technology', 'Electrical ad Electronics', '7.4', '10', '0')
(1779, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0')
(1780, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', '111', 'Ramrao Adik Institute of Technology', 'Computers', '70', '100', '14')
(1781, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '650', '560', '1210', '4', '104', 'University of Mumbai', 'Electronics & Telecommunications', '58', '100', '0')
(1782, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3', '86', 'Amity University', 'Computer Science & Engineering', '7.81', '10', '0')
(1783, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0')
(1784, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '146', '303', '4', '98', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0')
(1785, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0')
(1786, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '150', '309', '3.5', '90', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0')
(1787, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0')
(1788, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '153', '309', '3.5', '87', 'GITAM', 'Mechanical Engineering', '7.12', '10', '32')
(1789, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(1790, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(1791, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '490', '1230', '3', '98', 'SIES Graduate School of Technology', 'computer', '60', '100', '0')
(1792, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0')
(1793, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', 'None', 'None', 'MU', 'Computer', '63', '100', '0')
(1794, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0')
(1795, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0')
(1796, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3.5', '89', 'Army Institute of Technology', 'Computer Science', '65', '100', '0')
(1797, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '163', '151', '314', 'None', '90', 'RVR & JC College of Engineering', 'ELECTRONICS&COMMUNICATION;', '83', '100', '0')
(1798, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '590', '1300', '3', '90', 'Sir MVIT', 'ece', '84', '100', '0')
(1799, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0')
(1800, 'Northeastern University', '1', 'Reject', 'MS', 'Information Security', 'Spring ', '2016', '160', '145', '305', '2.5', '98', 'SVCE', 'CSE', '6.67', '10', '0')
(1801, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0')
(1802, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(1803, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '151', '319', '3', 'None', 'IIT Guwahati', 'EEE', '7.4', '100', '0')
(1804, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0')
(1805, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0')
(1806, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '144', '298', 'None', 'None', 'University of Mumbai', 'Computer Engineering', '59', '100', '24')
(1807, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0')
(1808, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24')
(1809, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24')
(1810, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0')
(1811, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'YCCE', 'Electronics Engg', '63.5', '100', '0')
(1812, 'Northeastern University', '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0')
(1813, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0')
(1814, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '5', '101', 'MU', 'Computer Engineering', '60', '100', '0')
(1815, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0')
(1816, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50')
(1817, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(1818, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(1819, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0')
(1820, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0')
(1821, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(1822, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(1823, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '480', '1250', '3', '90', 'SJCE', 'Information science', '8.23', '10', '0')
(1824, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '107', 'SCOE Pune', 'Computer Science', '63', '100', '0')
(1825, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '163', '146', '309', '2.5', '88', 'NIT Raipur', 'Electronics and Telecommunication', '7.65', '10', '0')
(1826, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0')
(1827, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '480', '1230', '3', '97', 'VTU', 'ECE', '71', '100', '0')
(1828, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '3.5', '107', 'JNTU', 'CSE', '71', '100', '0')
(1829, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0')
(1830, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0')
(1831, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'IET DAVV', 'IT', '75.62', '100', '0')
(1832, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '770', '530', '1300', '5', '280', 'MU', 'Computer Engineering', '55', '100', '0')
(1833, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(1834, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(1835, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2016', '158', '147', '305', '3', '87', 'Osmania University', 'computer science', '84', '100', '24')
(1836, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0')
(1837, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0')
(1838, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '163', '148', '311', 'None', '83', 'indus institute', 'computer engineering', '8.62', '10', '0')
(1839, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '154', '324', '3', 'None', 'Jaypee Institute of Information Technology', 'computer science', '6.4', '100', '36')
(1840, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0')
(1841, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '150', '142', '292', '3', '87', 'JNTU', 'ECE', '69', '100', '0')
(1842, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '3', '105', 'MU', 'Electronics and telecommunications', '54', '100', '0')
(1843, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '630', '490', '1120', '3', '86', 'PICT', 'CS', '0', '0', '0')
(1844, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(1845, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0')
(1846, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42')
(1847, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0')
(1848, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0')
(1849, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0')
(1850, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0')
(1851, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '145', '306', '3', '91', 'SVITS', 'Computer Science & Engineering', '67', '100', '0')
(1852, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '151', '318', '4', '99', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.6', '10', '12')
(1853, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0')
(1854, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '90', 'D J Sanghvi', 'IT', '63', '100', '0')
(1855, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0')
(1856, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '3.5', '111', 'MU', 'Computer', '7', '100', '0')
(1857, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0')
(1858, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', 'None', '101', 'Pune University', 'Information Technology', '0', '0', '0')
(1859, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring', 'None', '161', '148', '309', '3', 'None', 'Anna University', 'Electronics and communication engineering', '77', '100', '0')
(1860, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39')
(1861, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '152', '148', '300', '3.5', '104', 'Anna University', 'ECE', '70', '100', '0')
(1862, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0')
(1863, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0')
(1864, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '3.5', '111', 'University of Pune', 'Computer Engineering', '62', '100', '24')
(1865, 'Northeastern University', '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '92', 'MU', 'Marine Engineering', '68.8', '100', '27')
(1866, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '161', '328', '4', '117', 'MU', 'B.E.I.T', '61.1', '100', '0')
(1867, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '640', '1400', '4', '110', 'Pune University', 'electronics', '54', '100', '0')
(1868, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0')
(1869, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0')
(1870, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0')
(1871, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '4.5', '111', 'Pune University', 'Computer Science', '67', '100', '14')
(1872, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37')
(1873, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0')
(1874, 'Northeastern University', '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0')
(1875, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '154', '311', '3', '101', 'VTU', 'ECE', '69', '100', '0')
(1876, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3.5', '108', 'MU', 'Computer Science', '59.6', '100', '0')
(1877, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '162', '144', '306', '4', '104', 'D J Sanghvi', 'Computers', '78.58', '100', '0')
(1878, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0')
(1879, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3.5', '91', 'VTU', 'ECE', '67', '100', '0')
(1880, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '14', '156', '146', '302', '3', '106', 'U.I.T. rgpv', 'electronics and communication', '67.3', '100', '10')
(1881, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12')
(1882, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0')
(1883, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0')
(1884, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0')
(1885, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '89', 'VTU', 'Electronics and Communication', '65', '100', '0')
(1886, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '143', '304', '3', '106', 'Notre Dame University Louaize', 'ECE', '3.62', '4', '0')
(1887, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0')
(1888, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', 'None', '102', 'DIT Dehradun', 'CSE', '70', '100', '0')
(1889, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '590', '1310', '4', '99', 'Shri Ramdeobaba Engineering College', 'Electronics and Communication', '72', '100', '0')
(1890, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '91', 'P.V.P.I.T', 'E&TC;', '0', '0', '0')
(1891, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0')
(1892, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0')
(1893, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43')
(1894, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0')
(1895, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '105', 'SIES Graduate School of Technology', 'BE-Computer Engineering', '73.48', '100', '0')
(1896, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0')
(1897, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0')
(1898, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '103', 'RGPV', 'Electronics', '75', '100', '0')
(1899, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '145', '307', '3', '89', 'MU', 'Computer', '61', '100', '0')
(1900, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3.5', 'None', 'JNTU', 'CSE', '63', '100', '0')
(1901, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '760', '510', '1270', '4', '287', 'VIT', 'E.C.E', '9.07', '10', '0')
(1902, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0')
(1903, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '155', '315', '3.5', '105', 'JNTU', 'ECE', '71', '100', '0')
(1904, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '360', '1090', '3', '85', 'Harcourt Butler Technological Institute', 'Computer Science', '65.44', '100', '0')
(1905, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42')
(1906, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(1907, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '154', '148', '302', '3', '85', 'SIT', 'Computer Sc. & Engg.', '60', '100', '0')
(1908, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '168', '151', '319', '4', '104', 'BITS Goa', 'Computer Science', '6.53', '10', '24')
(1909, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3.5', '101', 'Sinhgad College of Engineering', 'Computer', '57.28', '100', '0')
(1910, 'Northeastern University', '1', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2014', '167', '151', '318', '3.5', '108', "St. Xavier's college Kolkata", 'Mathematics', '57.5', '100', '0')
(1911, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0')
(1912, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0')
(1913, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '690', '540', '1230', '4', '109', 'Anna University', 'ECE', '6.136', '10', '0')
(1914, 'Northeastern University', '1', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '760', '420', '1180', '3', '101', 'Institute of Technology Nirma University', 'Chemical Engineering', '6.84', '10', '0')
(1915, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Computer engineering', '69.96', '100', '17')
(1916, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '3.5', '111', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '6.1', '10', '0')
(1917, 'Northeastern University', '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'GITAM', 'CSE', '8.01', '10', '0')
(1918, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '530', '1290', '3', '80', 'MU', 'Electronics', '55', '100', '0')
(1919, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0')
(1920, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0')
(1921, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0')
(1922, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0')
(1923, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(1924, 'Northeastern University', '1', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0')
(1925, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '152', '306', '4.5', '115', 'MJCET', 'Computer Science', '74.6', '100', '0')
(1926, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0')
(1927, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '151', '302', '3.5', '105', 'West Bengal University Of Technology', 'Information Technology', '8.3', '10', '0')
(1928, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0')
(1929, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0')
(1930, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '4', '104', 'SIES Graduate School of Technology', 'Computer engg', '55', '100', '0')
(1931, 'Northeastern University', '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(1932, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '580', '1330', '3.5', '101', 'None', '0', '0', '0', '0')
(1933, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Govt. Engineering College Barton Hill', 'Electronics and Communication', '6.8', '10', '69')
(1934, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '155', '319', '3.5', 'None', 'University of Pune', 'Production Engineering', '8.8', '10', '0')
(1935, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '152', '141', '293', '3', 'None', 'Pune University', 'Information Technology', '60', '100', '0')
(1936, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0')
(1937, 'Northeastern University', '1', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0')
(1938, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '146', '302', 'None', '86', 'Pune University', 'Information technology', '63', '100', '0')
(1939, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0')
(1940, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0')
(1941, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0')
(1942, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '141', '289', 'None', '90', 'None', '0', '0', '0', '0')
(1943, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20')
(1944, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '150', '317', '3', '92', 'VIT', 'ECE', '7.66', '10', '0')
(1945, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0')
(1946, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '95', 'Amrita School of Engineering', 'IT', '7.05', '10', '46')
(1947, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '162', '150', '312', 'None', '104', 'JNTU', 'Electronics and communication', '81.5', '100', '0')
(1948, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0')
(1949, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '157', '318', '4', '114', 'Xaviers', 'Computer Engg', '67', '100', '34')
(1950, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0')
(1951, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '3.5', '107', 'FRCRCE', 'computers', '65', '100', '0')
(1952, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0')
(1953, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '92', 'SCSVMV University', 'ECE', '7.09', '10', '0')
(1954, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4.5', '118', 'MU', 'Computer Engineering', '64.24', '100', '0')
(1955, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0')
(1956, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15')
(1957, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0')
(1958, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '790', '530', '1320', '4', '113', 'Padre Conceicao College Of Engineering', 'Computer Engineering', '74.55', '100', '0')
(1959, 'Northeastern University', '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57')
(1960, 'Northeastern University', '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0')
(1961, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30')
(1962, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(1963, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0')
(1964, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0')
(1965, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0')
(1966, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '157', '147', '304', 'None', '91', 'MU', 'Information Technology', '54', '100', '0')
(1967, 'Northeastern University', '1', 'Reject', 'MS', 'CS/SE', 'Fall', 'None', '790', '490', '1280', '3', '91', 'Anna University', 'Computer Science', '81', '100', '0')
(1968, 'Northeastern University', '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48')
(1969, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '320', '1080', '3', '89', 'Amrita School of Engineering', 'Computer Science', '7.03', '10', '0')
(1970, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3', '96', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.48', '10', '0')
(1971, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0')
(1972, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0')
(1973, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0')
(1974, 'Northeastern University', '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '162', '161', '323', '4', 'None', 'Atharva College', 'Electronics and Telecommunications', '58.81', '100', '0')
(1975, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0')
(1976, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(1977, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '101', 'JNTU', 'ECE', '70', '100', '0')
(1978, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0')
(1979, 'Northeastern University', '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49')
(1980, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60')
(1981, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0')
(1982, 'Northeastern University', '1', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2012', '159', '140', '299', '3', '97', 'MU', 'Electronics', '59', '100', '0')
(1983, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0')
(1984, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3', '91', 'Anna University', 'CSE', '79', '100', '29')
(1985, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0')
(1986, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', '102', 'University of Pune', 'information technology', '63', '100', '27')
(1987, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0')
(1988, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '2.5', '87', 'MSU FTE', 'CS', '3.94', '4', '0')
(1989, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0')
(1990, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '154', '151', '305', '3', '99', 'Anna University', 'Computer Science and Engineering', '7.36', '10', '31')
(1991, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0')
(1992, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Biju Patnaik University of Technology', 'EEE', '7.2', '10', '36')
(1993, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0')
(1994, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0')
(1995, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0')
(1996, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0')
(1997, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0')
(1998, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '101', 'University of Pune', 'Computer', '60', '100', '0')
(1999, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(2000, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0')
(2001, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '144', '304', '3', '87', 'RGPV', 'ECE', '75.37', '100', '0')
(2002, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0')
(2003, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '102', 'UPTU', 'Computer Science', '69.84', '100', '20')
(2004, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0')
(2005, 'Northeastern University', '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '145', '304', '2.5', 'None', 'Anna University', 'Mechanical', '0', '0', '24')
(2006, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '78', 'VTU', 'computer science', '59.1', '100', '0')
(2007, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(2008, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0')
(2009, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0')
(2010, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '144', '297', 'None', '86', 'Don Bosco Institute of Technology', 'Computers', '58', '100', '0')
(2011, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0')
(2012, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0')
(2013, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0')
(2014, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0')
(2015, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0')
(2016, 'Northeastern University', '1', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '610', '340', '950', '3', '98', 'SASTRA', 'Civil Engineering', '6.55', '10', '0')
(2017, 'Northeastern University', '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0')
(2018, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3', '99', 'Amrita School of Engineering', 'Computer Science', '6.94', '10', '0')
(2019, 'Northeastern University', '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(2020, 'Northeastern University', '1', 'Reject', 'MS', 'Data Science', 'Fall', '2018', '165', '151', '316', '3', '105', 'NIT Surat', 'Computer Science', '7.35', '10', '2')
(2021, 'Northeastern University', '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2017', '166', '152', '318', '3.5', '106', 'Indus university', 'Mechanical Engineering', '8.9', '10', '0')
(2022, 'Northeastern University', '1', 'Admit', 'MS', 'Engineering Management', 'Fall', '2017', '155', '145', '300', '3', '94', 'Rayat and Bahra Institute of Engg and Tech', 'Computer Science', '81', '100', '0')
(2023, 'Northeastern University', '1', 'Reject', 'MS', 'Engineering Management', 'Fall', '2019', '160', '140', '300', '3', '-1', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '5.97', '10', '0')
(2024, 'Northeastern University', '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institute of Tech', 'EEE', '7.4', '10', '0')
(2025, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0')
(2026, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall', 'None', '710', '510', '1220', '3', '94', 'FJU', 'information management', '73', '100', '0')
(2027, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0')
(2028, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0')
(2029, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0')
(2030, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0')
(2031, 'Syracuse University', '4', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0')
(2032, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0')
(2033, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0')
(2034, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '45', '29', '74', '4.5', 'None', 'Vasavi College of Engineering', 'electrical and electronics engg', '69', '100', '0')
(2035, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0')
(2036, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0')
(2037, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '159', '324', '3.5', '107', 'Bangalore University', 'Mechanical', '69', '100', '0')
(2038, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '101', 'VTU', 'ECE', '77', '100', '0')
(2039, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0')
(2040, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '149', '308', 'None', '97', 'VTU', 'Electrical and Electronics', '68', '100', '0')
(2041, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '1010', '410', '1420', '600', '273', 'Thadomal Shahani Engineering College', 'CE', '52', '100', '0')
(2042, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0')
(2043, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '164', '154', '318', '3', '100', 'Manipal Institue of Technology', 'Civil Engineering', '7.71', '10', '0')
(2044, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '159', '319', '4', '114', 'University of Manchester', 'EEE', '3.4', '4', '0')
(2045, 'Syracuse University', '4', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '170', '157', '327', '5', '112', 'VIT Mumbai University', 'Electronics & Telecommunication', '72.67', '100', '41')
(2046, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '165', '160', '325', '4.5', '113', 'University of Mumbai', 'Computer Engineering', '66.97', '100', '0')
(2047, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0')
(2048, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '149', '310', '3', '99', 'VIT Pune', 'Electronics Engg', '66', '100', '36')
(2049, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0')
(2050, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0')
(2051, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0')
(2052, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0')
(2053, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '154', '314', '3', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'IT', '53', '100', '0')
(2054, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '157', '313', '3', '116', 'CMRIT', 'CSE', '62.4', '100', '0')
(2055, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18')
(2056, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0')
(2057, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0')
(2058, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0')
(2059, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Chemical Engineering', '58', '100', '0')
(2060, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '590', '1320', '3.5', '106', 'University of Mumbai', 'Computer Engineering', '65', '100', '0')
(2061, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3', '88', 'Anna University', 'COMPUTER SCIENCE', '82.5', '100', '0')
(2062, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0')
(2063, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36')
(2064, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0')
(2065, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '157', '325', '4', '108', 'MU', 'Computer Engineering', '63', '100', '0')
(2066, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0')
(2067, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0')
(2068, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0')
(2069, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '3', '104', 'C.R State College of Engineering Murthal', 'Bio-Medical', '70', '100', '37')
(2070, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(2071, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '149', '310', '3', '99', 'None', '0', '0', '0', '0')
(2072, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '710', '1510', '3', '280', 'University of Mumbai', 'Computer Engineering', '72', '100', '0')
(2073, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0')
(2074, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '103', 'GGSIPU', 'Instrumentation and Control', '3.86', '100', '0')
(2075, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '151', '315', '2.5', '104', 'MU', 'Computer Engineering', '68', '100', '9')
(2076, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '730', '570', '1300', '3.5', '98', 'None', 'mechanical engg', '65', '100', '0')
(2077, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '153', '314', '4', 'None', 'Thapar University', 'Biotechnology and environmental Sciences', '7.36', '10', '0')
(2078, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '152', '311', '4', '105', 'Sardar Patel College of Engineering', 'Information Technology', '63', '100', '0')
(2079, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0')
(2080, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0')
(2081, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0')
(2082, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2012', '50', '35', '85', '4.5', '114', 'SKNCOE', 'Computer', '62', '100', '0')
(2083, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '154', '313', '4.5', '117', 'MU', 'Electronics and Telecommunications', '65', '100', '0')
(2084, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0')
(2085, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '109', 'Nagpur University', 'IT', '68', '100', '0')
(2086, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0')
(2087, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '670', '1440', '3', '114', 'Thakur College of Engineering and Technology', 'COMP SCI', '66.3', '100', '0')
(2088, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '400', '750', '1150', '3', '101', 'Sardar Patel College of Engineering', 'electrical', '65', '100', '0')
(2089, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0')
(2090, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0')
(2091, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0')
(2092, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0')
(2093, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0')
(2094, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '780', '570', '1350', '3', '97', 'University Institute of Technology', 'Mechanical', '71', '100', '0')
(2095, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0')
(2096, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '690', '450', '1140', '4', '106', 'Valliammai Engineering College', 'CSE', '84.5', '100', '0')
(2097, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '103', 'VTU', 'IS&E;', '65', '100', '0')
(2098, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '4.5', '112', 'Bharathiar University', 'Electronics and Communication', '78', '100', '0')
(2099, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3', '108', 'Pune University', 'Information Technology', '57', '100', '0')
(2100, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', '670', '670', 'None', '110', 'None', '0', '0', '0', '0')
(2101, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0')
(2102, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0')
(2103, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42')
(2104, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '142', '304', '3', '98', 'VIT', 'Computer Science and Engineering', '8.35', '10', '0')
(2105, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0')
(2106, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34')
(2107, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0')
(2108, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0')
(2109, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2110, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '170', '150', '320', 'None', '106', 'Rajasthan Technical University', 'CSE', '70.125', '100', '0')
(2111, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0')
(2112, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0')
(2113, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '166', '145', '311', '3.5', '101', 'MU', 'CS', '72', '100', '0')
(2114, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '320', '1110', '3.5', '101', 'GGSIPU', 'Information Technology', '6.3', '100', '0')
(2115, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0')
(2116, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0')
(2117, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4', '103', 'VTU', 'CS', '77', '100', '0')
(2118, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '152', '155', '307', '3.5', '110', 'Sathyabama University', 'ECE', '65', '100', '0')
(2119, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '45', '37', '82', '4.5', '111', 'VIT University', 'Computer Sceince', '8.39', '10', '0')
(2120, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '530', '1280', '4', '115', 'PESIT', 'Telecommunication Engineering', '71.6', '100', '0')
(2121, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '154', '145', '299', '3.5', '105', 'BMSIT', 'Electrical & Electronics', '73', '100', '0')
(2122, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5')
(2123, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0')
(2124, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0')
(2125, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0')
(2126, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24')
(2127, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0')
(2128, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0')
(2129, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '111', 'UPTU', 'comp Science', '66.66', '100', '0')
(2130, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0')
(2131, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '156', '312', '3.5', '103', 'K J Somaiya College of Engiineering', 'IT', '66', '100', '30')
(2132, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '750', '390', '1140', '3.5', '101', 'R N S Institute of Technology', 'Electronics and Communication', '73.4', '100', '0')
(2133, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0')
(2134, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0')
(2135, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0')
(2136, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0')
(2137, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '640', '1380', '4.5', '114', 'MSRIT', 'Chemical Engineering', '8.1', '10', '0')
(2138, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '305', '142', '447', '163', '90', 'Rajarambapu Institute of Technology', 'Civil Engineering', '7.48', '10', '0')
(2139, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0')
(2140, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0')
(2141, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0')
(2142, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0')
(2143, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0')
(2144, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0')
(2145, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '510', '1290', '4', '273', 'Osmania University', 'CS', '85', '100', '0')
(2146, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Mechanical Engineering', '8.89', '10', '0')
(2147, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0')
(2148, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0')
(2149, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', '3', '91', 'MU', 'Electronics and telecommunication', '64.84', '100', '0')
(2150, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '560', '1310', '3.5', 'None', 'SMIT', 'EEE', '83', '100', '0')
(2151, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0')
(2152, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0')
(2153, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '700', '1500', 'None', '290', 'Pune University', 'Information Technology', '3.36', '4', '0')
(2154, 'Syracuse University', '4', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0')
(2155, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '156', '316', '4', '107', 'M.I.T Aurangabad', 'Electronics & Comminication', '71', '100', '0')
(2156, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', 'None', 'Institute of Engineering and Technology', 'Computer Science', '70', '100', '64')
(2157, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '480', '1240', '4', '104', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '8.27', '10', '0')
(2158, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '153', '322', '4', '109', 'GGSIPU', 'Information Technology', '70.16', '100', '24')
(2159, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0')
(2160, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(2161, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0')
(2162, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2010', '770', '560', '1330', '3.5', '100', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8.1', '10', '0')
(2163, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '720', '590', '1310', '3', '94', 'FCRIT NAVIM MUBAI', 'COMPUTER', '63.24', '100', '0')
(2164, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0')
(2165, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '157', '314', '4', '112', 'Sona College', 'Information Technology', '9.64', '10', '0')
(2166, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '150', '314', '3.5', '95', 'Integral University', 'Information Technology', '72.18', '100', '60')
(2167, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0')
(2168, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(2169, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Summer ', '2015', '162', '152', '314', '3.5', 'None', 'SJCE', 'CS', '74', '100', '69')
(2170, 'Syracuse University', '4', 'Admit', 'MS', 'MSIM', 'Fall ', '2013', '161', '164', '325', '4', '113', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '70', '100', '0')
(2171, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '490', '1240', '2.5', '99', 'GRIET', 'ECE', '63', '100', '0')
(2172, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0')
(2173, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0')
(2174, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0')
(2175, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '490', '1250', '3', '101', 'Kurukshetra University', 'Computer Science', '71.1', '100', '0')
(2176, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87')
(2177, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '160', '320', '4.5', '113', 'VTU', 'ECE', '78', '100', '43')
(2178, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0')
(2179, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0')
(2180, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48')
(2181, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '158', '153', '311', '3', 'None', 'SASTRA', 'CSE', '8.25', '10', '0')
(2182, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0')
(2183, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0')
(2184, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0')
(2185, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(2186, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '550', '1320', '3', '112', 'PESIT', 'Computer Science', '76', '100', '0')
(2187, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '102', 'University of Pune', 'Electronics & Telecomm', '60', '100', '0')
(2188, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '146', '309', '3', '99', 'Devi Ahilya University Indore', 'MBA', '7.7', '10', '0')
(2189, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '770', '540', '1310', '3.5', '233', 'PESIT', 'ISE', '81', '100', '0')
(2190, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0')
(2191, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0')
(2192, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '162', '146', '308', '3', '100', 'K.L.E College of Engg and Technology', 'Electronics and Communication', '57.23', '100', '0')
(2193, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', 'None', 'MU', 'Information Technology', '57', '100', '0')
(2194, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(2195, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '460', '1220', '4', '273', 'RMK Engineering College', 'EEE', '80', '100', '0')
(2196, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0')
(2197, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '95', 'Vidyalankar Institute of Technology', 'IT', '60', '100', '0')
(2198, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Anna University', 'Information Technology', '81.4', '100', '0')
(2199, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22')
(2200, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '153', '311', '4.5', '107', 'Western Univ.', 'Regional Studies', '4.4', '5', '0')
(2201, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0')
(2202, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0')
(2203, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '710', '380', '1090', '4', '93', 'VTU', 'EC', '67', '100', '0')
(2204, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2205, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0')
(2206, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0')
(2207, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0')
(2208, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0')
(2209, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0')
(2210, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '590', '460', '1050', 'None', 'None', 'None', '0', '0', '0', '0')
(2211, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall', 'None', '46', '31', '77', '4', '106', 'MGIT', 'ECE', '71.72', '100', '0')
(2212, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', 'None', 'Pune University', 'Computer', '61.27', '100', '0')
(2213, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '400', '1160', '3', '89', 'JNTU', 'COMPUTER SCIENCE', '80.4', '100', '0')
(2214, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '145', '306', '3.5', '101', 'Acharya Institute of Technology', 'Electrical and Electronics', '80.3', '100', '6')
(2215, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '590', '1330', '3', '102', 'MU', 'computer', '55', '100', '0')
(2216, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12')
(2217, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0')
(2218, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0')
(2219, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0')
(2220, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0')
(2221, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0')
(2222, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '160', '150', '310', '3.5', '111', 'VESIT', 'Instrumentation', '62', '100', '0')
(2223, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0')
(2224, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0')
(2225, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0')
(2226, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9')
(2227, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '730', '560', '1290', '4', '280', 'SVCE', 'ECE', '65', '100', '0')
(2228, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0')
(2229, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '3.5', '111', 'CBIT', 'Computer Science', '76.5', '100', '0')
(2230, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0')
(2231, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0')
(2232, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Osmania University', 'ece', '80', '100', '0')
(2233, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0')
(2234, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0')
(2235, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0')
(2236, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0')
(2237, 'Syracuse University', '4', 'Admit', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0')
(2238, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0')
(2239, 'Syracuse University', '4', 'Admit', 'MS', 'Chemical Engineering', 'Spring ', '2012', '800', '360', '1160', '3', '103', 'NIT Jalandhar', 'Chemical Engineering', '7.61', '10', '0')
(2240, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2241, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'JNTU', 'ECE', '72', '100', '46')
(2242, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0')
(2243, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0')
(2244, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '151', '311', '3', '104', 'BITS Goa', 'Mathematics & Mechanical', '6.7', '10', '0')
(2245, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0')
(2246, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '111', 'MSU', 'Computer Science & Engineering', '3.64', '4', '0')
(2247, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '160', '159', '319', '3', '108', "St Joseph's College of Engineering", 'Biotechnology', '82', '100', '0')
(2248, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0')
(2249, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '157', '148', '305', '3', 'None', 'MDU', 'Computer SC', '67.4', '100', '0')
(2250, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3.5', '100', 'VTU', 'Information Science', '75', '100', '0')
(2251, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '143', '306', '3', 'None', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.2', '10', '24')
(2252, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '158', '320', '3.5', '112', 'University of Pune', 'Electronics and Telecommunication', '61.8', '100', '0')
(2253, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0')
(2254, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0')
(2255, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '3.56', '4', '0')
(2256, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '148', '309', '4', '104', 'Lakshmi Narain College of Technology', 'Electrical & Electronics Engineering', '74.4', '100', '0')
(2257, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0')
(2258, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0')
(2259, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '142', '299', '3', '100', 'RMK Engineering College', 'Computer Science', '84', '100', '42')
(2260, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '147', '146', '293', '3', '90', 'Gogte Institute of Technology', 'Electronics and communication', '67', '100', '0')
(2261, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '620', '470', '1090', '2.5', '101', 'Velammal Engineering College', 'EIE', '83.4', '100', '0')
(2262, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0')
(2263, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '146', '301', '3', '88', 'New Horizon College of Engineering', 'computer science', '74', '100', '0')
(2264, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '144', '305', '3', '102', 'Ramakrishna College of Engineering', 'Mechanical', '8', '100', '0')
(2265, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0')
(2266, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0')
(2267, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0')
(2268, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0')
(2269, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0')
(2270, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '153', '312', '3', '110', 'Anna University', 'CSE', '73', '100', '0')
(2271, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '710', '1510', '4', '113', 'IP University Delhi', 'Computer Science', '80', '100', '0')
(2272, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0')
(2273, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Dr Mahalingam College of Engineering and Technology', 'Information Technology', '82', '100', '0')
(2274, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '730', '480', '1210', '3.5', '107', 'S.A.Engineering college.Anna university.', 'computer science', '81.67', '100', '0')
(2275, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0')
(2276, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '440', '1220', '3.5', '108', 'SRM', 'CSE', '9.3', '10', '0')
(2277, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '156', '142', '298', '2.5', '98', 'Pune University', 'IT', '68', '100', '0')
(2278, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36')
(2279, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '165', '144', '309', '3.5', '97', 'BITS Pilani', 'B.E. EEE & MSc. Economics', '7.7', '10', '0')
(2280, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2281, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2014', '163', '155', '318', '3.5', '112', 'Institute of Engineering and Management', 'IT', '7.83', '10', '0')
(2282, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0')
(2283, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2015', '160', '149', '309', '3', 'None', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '45')
(2284, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '490', '1270', '3.5', '107', 'Thakur College of Engineering and Technology', 'Information Technology', '60.14', '100', '0')
(2285, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '570', '1310', '4', '108', 'Gujarat Technological University', 'Mechanical Engineering', '63', '100', '0')
(2286, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0')
(2287, 'Syracuse University', '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '750', '430', '1180', '3', 'None', 'MU', 'Information Technology', '65', '100', '0')
(2288, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '145', '311', 'None', '97', 'MSU', 'CS', '3.93', '4', '0')
(2289, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '540', '1280', 'None', '96', 'MU', 'IT', '61', '100', '0')
(2290, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0')
(2291, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0')
(2292, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '151', '313', '4', '110', 'SIES Graduate School of Technology', 'Computer Engineering', '62', '100', '0')
(2293, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0')
(2294, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '156', '152', '308', '3', '103', 'MSRIT', 'Information Science and Engineering', '8.88', '10', '0')
(2295, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0')
(2296, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0')
(2297, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0')
(2298, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0')
(2299, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(2300, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0')
(2301, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '153', '316', '3', '108', 'JSS Noida', 'Computer Science', '69', '100', '0')
(2302, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0')
(2303, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0')
(2304, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '500', '1280', '5', '110', 'University of Pune', 'Computer Engineering', '68.8', '100', '0')
(2305, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', '109', 'MU', 'Electronics and Telecomm', '64', '100', '0')
(2306, 'Syracuse University', '4', 'Admit', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0')
(2307, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0')
(2308, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0')
(2309, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(2310, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '560', '1310', '2.5', '110', 'GGSIPU', 'ECE', '63', '100', '0')
(2311, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0')
(2312, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(2313, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '160', '146', '306', '3.5', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0')
(2314, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '113', 'Gujarat Technological University', 'Mechanical Engineering', '7.51', '10', '0')
(2315, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0')
(2316, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20')
(2317, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '4', '104', 'None', 'CS', '7.33', '10', '0')
(2318, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '44', '28', '72', '4.5', '102', 'VTU', 'CS', '67', '100', '0')
(2319, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '155', '318', '4', '107', 'Anna University', 'IT', '8.01', '10', '0')
(2320, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2321, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0')
(2322, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '33', '80', '5', '104', 'Rajasthan Technical University', '0', '3.65', '4', '0')
(2323, 'Syracuse University', '4', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall', 'None', '166', '153', '319', '3.5', '111', 'RGPV', 'Electronics', '6.8', '10', '0')
(2324, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '158', '323', '4', '108', 'Bharati Vidyapeeth', 'IT', '79.75', '100', '0')
(2325, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0')
(2326, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '740', '620', '1360', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.72', '10', '0')
(2327, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2328, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0')
(2329, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '530', '1260', '3', '111', 'Pune University', 'Mechanical Engineering', '0', '0', '0')
(2330, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical And Aerospace', 'Spring ', '2014', '161', '151', '312', '3', 'None', 'Saurashtra University', 'Mechanical Engineering', '3.6', '4', '0')
(2331, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '155', '319', '3.5', '106', 'MU', 'Computer', '61', '100', '0')
(2332, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '146', '313', '3', '99', 'K J Somaiya College of Engiineering', 'Computer Engineering', '69.17', '100', '0')
(2333, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '159', '327', '4.5', '112', 'University of Mumbai', 'computer engineering', '67.87', '100', '42')
(2334, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0')
(2335, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '4', '109', 'VTU', 'CSE', '81', '100', '0')
(2336, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0')
(2337, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3.5', '112', 'University of Mumbai', 'Electronics and Telecomm', '72', '100', '0')
(2338, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '145', '304', '3', '100', 'PTU/Rayat and Bahra', 'Computer Science', '74.4', '100', '0')
(2339, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '151', '313', '3.5', '107', 'Pune University', 'Computer', '74', '100', '0')
(2340, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '145', '154', '299', '4.5', '97', 'University of Pune', 'Electronics and Telecommunication', '58', '100', '0')
(2341, 'Syracuse University', '4', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '107', 'Manipal Institue of Technology', 'mechatronics', '8', '10', '0')
(2342, 'Syracuse University', '4', 'Admit', 'MS', 'Networking', 'Fall ', '2013', '156', '145', '301', '3.5', '102', 'KU', 'IT', '63', '100', '0')
(2343, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '95', 'Madras Institute of Technology', 'Electronics and Instrumentation Engineering', '8.9', '10', '0')
(2344, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0')
(2345, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Electronics', '60', '100', '0')
(2346, 'Syracuse University', '4', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36')
(2347, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'Pune University', 'Electrical Engineering', '0', '0', '0')
(2348, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3.5', '108', 'UPTU', 'Computer Science', '76', '100', '0')
(2349, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '770', '630', '1400', 'None', '107', 'MU', 'Electronics & Telecommunication', '64', '100', '0')
(2350, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0')
(2351, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(2352, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30')
(2353, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '316', '157', '473', '4.5', '112', 'TSEC', 'I.T', '60', '100', '0')
(2354, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(2355, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2356, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0')
(2357, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '149', '316', '3.5', '102', 'Osmania University', 'CSE', '80', '100', '0')
(2358, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '155', '150', '305', '305', '93', 'Dayananda Sagar College of Engineering', 'Telecommunication', '66', '100', '0')
(2359, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '148', '311', '3.5', '106', 'VTU', 'Instrumentation', '7.82', '10', '0')
(2360, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0')
(2361, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '154', '314', '3', '107', 'None', '0', '74', '100', '0')
(2362, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0')
(2363, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '152', '306', '3', '104', 'None', '0', '0', '0', '0')
(2364, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', '94', 'Sinhgad College of Engineering', 'Computer Sciences', '60.05', '100', '0')
(2365, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '670', '1470', '5', '118', 'Anna University', 'MCA', '9.6', '10', '0')
(2366, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0')
(2367, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0')
(2368, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0')
(2369, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0')
(2370, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0')
(2371, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '570', '1330', '5', '290', 'Atharva College', 'computer engineering', '64.13', '100', '0')
(2372, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '158', '150', '308', '4', '102', 'VTU', 'Computer Science', '8.07', '10', '0')
(2373, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '600', '1400', '4.5', '111', 'Pune University', 'Computers', '0', '0', '0')
(2374, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0')
(2375, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Spring ', '2011', '780', '340', '1120', '3', '92', 'JNTU', 'ECE', '79.79', '100', '0')
(2376, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '670', '1460', '3', '103', 'GITAM', 'INFORMATION TECHNOLOGY', '9.03', '10', '0')
(2377, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '143', '301', '3', '98', 'SASTRA', 'ECE', '7.29', '10', '0')
(2378, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '500', '1270', '4', 'None', 'Institute of Engineering and Technology DAVV', 'Computer Science', '78', '100', '0')
(2379, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2')
(2380, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '710', '560', '1270', '3.5', '113', 'SRM', 'Computer Science', '8.496', '10', '0')
(2381, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4', '257', 'Shah And anchor Kutchhi Engineering College', 'Computer', '64', '100', '0')
(2382, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '116', 'University of Mumbai', 'Information Technology', '64', '100', '0')
(2383, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '470', '1240', '4', '104', 'Amrita School of Engineering', 'Computer Science', '7.33', '10', '0')
(2384, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '149', '306', '3', '110', 'Fore School of Management', 'Computer Science', '3.78', '4', '54')
(2385, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '640', '520', '1160', '3', 'None', 'VIT', '0', '7.4', '10', '0')
(2386, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', 'None', '102', 'Pondicherry Engineering College', 'Information Technology', '833', '100', '0')
(2387, 'Syracuse University', '4', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0')
(2388, 'Syracuse University', '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2014', '161', '152', '313', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Electronics and Communication', '3.68', '4', '0')
(2389, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'MDU', 'Computer Science', '74', '100', '0')
(2390, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0')
(2391, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '400', '1200', '3.5', '277', 'Anna University', 'Electrical and Instumentation Engineering', '86.6', '100', '0')
(2392, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '710', '590', '1300', '3.5', '253', 'University of Mumbai', 'Electronins and Telecommunication', '56', '100', '0')
(2393, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0')
(2394, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0')
(2395, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0')
(2396, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0')
(2397, 'Syracuse University', '4', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0')
(2398, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '111', 'CBIT', 'Computer Science', '77', '100', '0')
(2399, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0')
(2400, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '149', '161', '310', '5', '105', 'MITS', 'E&C;', '7.5', '10', '0')
(2401, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '750', '570', '1320', '3.5', '110', 'Silicon Inst of Technology', 'electronics and Telecommunication', '8.29', '10', '0')
(2402, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '580', '1370', '4', '113', 'None', '0', '0', '0', '0')
(2403, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(2404, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(2405, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3', '94', 'VTU', 'Computer Science Engineering', '74.21', '100', '0')
(2406, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0')
(2407, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '760', '650', '1410', '4', '290', 'Anna University', 'ECE', '76', '100', '0')
(2408, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12')
(2409, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '158', '149', '307', '3', '107', 'Anna University', 'Aeronautical', '7.5', '10', '0')
(2410, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0')
(2411, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '330', '1130', '3', '93', 'KLCE', 'IST', '84', '100', '0')
(2412, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6')
(2413, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0')
(2414, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2415, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '3.5', '91', 'MU', 'extc', '62', '100', '0')
(2416, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0')
(2417, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0')
(2418, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2008', '790', '480', '1270', '4', '113', 'MU', 'ECE', '66', '100', '0')
(2419, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0')
(2420, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '610', '1410', '3.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0')
(2421, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3.5', '101', 'SVITS', 'Computer Science', '73.19', '100', '29')
(2422, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2009', '760', '470', '1230', '3.5', '108', 'MU', 'computer', '0', '0', '0')
(2423, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '600', '1350', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '62', '100', '0')
(2424, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '620', '1380', 'None', '260', 'Mysore University', 'CS', '76', '100', '0')
(2425, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0')
(2426, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0')
(2427, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '600', '1400', '3', '101', 'MU', 'Computer', '0', '0', '0')
(2428, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '162', '324', '4', '115', 'University of Texas at Dallas', 'Arts and Technology', '0', '0', '0')
(2429, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(2430, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0')
(2431, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0')
(2432, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '580', '1310', '3', '103', 'MU', 'EXTC', '73', '100', '0')
(2433, 'Syracuse University', '4', 'Admit', 'MS', 'Finance', 'Fall ', '2012', '41', '25', '66', '4.5', '101', 'MU', 'Commerce', '0', '0', '0')
(2434, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0')
(2435, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3.5', '110', 'MU', 'Information Technology', '69', '100', '0')
(2436, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '150', '311', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '73', '100', '24')
(2437, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '790', '520', '1310', '4', '106', 'University of Mumbai', 'Electronics', '0', '0', '0')
(2438, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0')
(2439, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '162', '149', '311', '3.5', '102', 'Don Bosco Institute of Technology', 'Electronics and Telecommunication', '66.2', '100', '0')
(2440, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0')
(2441, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0')
(2442, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '500', '1280', '3.5', '257', 'GTBIT', 'IT', '72', '100', '0')
(2443, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '590', '1300', '3.5', '100', 'MU', 'Electronics', '74', '100', '0')
(2444, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '149', '306', '4', '114', 'VTU', 'CSE', '8.88', '10', '36')
(2445, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4.5', '105', 'University of Mumbai', 'I.T', '65', '100', '0')
(2446, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0')
(2447, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56')
(2448, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '156', '312', '2.5', '106', 'College Of Engineering Roorkee', 'Information Technology', '66', '100', '0')
(2449, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '42', '31', '73', '5', '109', 'None', '0', '0', '0', '0')
(2450, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0')
(2451, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0')
(2452, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '630', '640', '1270', '3', '112', 'Pune University', 'Computer Science', '60', '100', '0')
(2453, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '580', '1350', '4', '108', 'Govt Model Engg College', 'Computer Sc & Engineering', '76.6', '100', '0')
(2454, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '680', '1410', '4', '113', 'Pune University', 'IT', '53', '100', '0')
(2455, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2014', '162', '155', '317', '4', '107', 'SSN College of Engineering', 'CSE', '7.83', '10', '0')
(2456, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '570', '1300', '3', '109', 'PESIT', 'ISE', '75', '100', '0')
(2457, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '760', '520', '1280', '2.5', '97', 'Veermata Jijabai Technological Institute', 'mechanical', '6.1', '10', '0')
(2458, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0')
(2459, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0')
(2460, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0')
(2461, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29')
(2462, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '98', 'None', 'Electronics', '68', '100', '0')
(2463, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25')
(2464, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0')
(2465, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(2466, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '155', '317', '3.5', '113', 'MU', 'E & TC', '70', '100', '0')
(2467, 'Syracuse University', '4', 'Admit', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0')
(2468, 'Syracuse University', '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0')
(2469, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(2470, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0')
(2471, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '390', '1170', '4', '110', 'MH Saboo Siddik college of Engg', 'Information Technology', '0', '0', '0')
(2472, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0')
(2473, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(2474, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '670', '430', '1100', '3.5', '98', 'SNIST', 'BS-EET', '3.4', '4', '0')
(2475, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0')
(2476, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '410', '1120', '4', 'None', 'University of Mumbai', 'Computer Engineering', '64', '100', '0')
(2477, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '93', '49', '142', '3.5', '113', 'University of Mumbai', 'IT', '66', '100', '8')
(2478, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '800', '530', '1330', '3.5', '102', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.58', '10', '0')
(2479, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '770', '500', '1270', '4', '109', 'VIT', 'Information Technology', '8.52', '10', '0')
(2480, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0')
(2481, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '46', '27', '73', '6', 'None', 'GGSIPU', 'computer science', '8.4', '10', '0')
(2482, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0')
(2483, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0')
(2484, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0')
(2485, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '148', '309', '3.5', '91', 'MVSR', 'CSE', '80', '100', '0')
(2486, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '790', '560', '1350', '3.5', '104', 'Syracuse University', 'Information Management', '3.8', '4', '0')
(2487, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '4', '97', 'Yeditepe University', 'Electrical-Electronics Engineering', '3.46', '4', '0')
(2488, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '49', '30', '79', '5', '100', 'Pune University', 'Mechanical', '58', '100', '0')
(2489, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0')
(2490, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0')
(2491, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '270', '970', '3', '78', 'D J Sanghvi', 'Electronics', '70', '100', '0')
(2492, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0')
(2493, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0')
(2494, 'Syracuse University', '4', 'Admit', 'MS', 'Forensic Science', 'Fall', 'None', '153', '142', '295', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '8.2', '10', '0')
(2495, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0')
(2496, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '156', '318', '3.5', '114', 'Sikkim Manipal Institute of Technology', 'electronics and communication', '8.15', '10', '0')
(2497, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '4', '114', 'K J Somaiya College of Engiineering', 'Computer Engineering', '63.52', '100', '0')
(2498, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0')
(2499, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0')
(2500, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '106', 'University of Mumbai', 'Information Technology', '68', '100', '0')
(2501, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '740', '400', '1140', '4', '106', 'VTU', 'e&c;', '0', '0', '0')
(2502, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '145', '306', '3', '92', 'Sreenidhi Institute of Science & Technology', 'ECM', '81', '100', '0')
(2503, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', 'None', 'None', '0', '3.5', '109', 'None', '0', '0', '0', '0')
(2504, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '152', '146', '298', 'None', '100', 'MU', 'I.T', '73.11', '100', '0')
(2505, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0')
(2506, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(2507, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(2508, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0')
(2509, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0')
(2510, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0')
(2511, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0')
(2512, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0')
(2513, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '158', '319', '4', '107', 'MU', 'Computer Engg', '3.14', '4', '0')
(2514, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0')
(2515, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '3', '86', 'Kakatiya University', 'Computer Science and Engineering', '77', '100', '0')
(2516, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '590', '1390', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer', '69.5', '100', '0')
(2517, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0')
(2518, 'Syracuse University', '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0')
(2519, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(2520, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '37', '84', '5.5', '117', 'Amrita School of Engineering', 'ece', '8.1', '10', '0')
(2521, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0')
(2522, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3', '108', 'NIT-Calicut', 'Computer Science', '7.93', '10', '0')
(2523, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0')
(2524, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30')
(2525, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '750', '510', '1260', '3.5', '116', 'VIT Mumbai University', 'EXTC', '63', '100', '0')
(2526, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', 'Engineering(I.T)', '0', '0', '0')
(2527, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0')
(2528, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0')
(2529, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '800', '670', '1470', '5', '112', 'VTU', 'ECE', '68', '10', '0')
(2530, 'Syracuse University', '4', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '157', '145', '302', '3', '87', 'Banasthali University', 'Computer Science', '79', '100', '88')
(2531, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0')
(2532, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '2.5', '96', 'BITS Pilani', 'Computer science', '7.8', '10', '0')
(2533, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '640', '1400', '3', '98', 'Bharati Vidyapeeth', 'Comp Science', '54', '100', '0')
(2534, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '156', '136', '292', '3', '96', 'Sarvajanik College of Engineering & Technology', 'civil engineering', '7.5', '10', '0')
(2535, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '168', '156', '324', '3.5', '110', 'VESIT', 'Electronics and Telecommunication', '70.8', '100', '0')
(2536, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '4.5', '105', 'Sardar Patel University', 'Computer Science', '77', '100', '0')
(2537, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2538, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0')
(2539, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '490', '1280', '4', '102', 'BMSCE', 'Telecommunication', '0', '0', '0')
(2540, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '630', '1340', '3.5', '116', 'MU', 'Computer Engineering', '57', '100', '0')
(2541, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0')
(2542, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0')
(2543, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4.5', '112', 'UPTU', 'computer science', '80.8', '100', '0')
(2544, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0')
(2545, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0')
(2546, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '730', '440', '1170', 'None', 'None', 'Valliammai Engineering College', 'Computers', '79', '100', '0')
(2547, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '152', '317', '3', '112', 'BIT Mesra', 'Civil Engineering', '7.1', '10', '0')
(2548, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '4', '110', 'Sinhgad College of Engineering', 'IT', '60.04', '100', '0')
(2549, 'Syracuse University', '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '155', '310', '3', 'None', 'Pune University', 'Civil Engineering', '54', '100', '0')
(2550, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '350', '1150', '2.5', '86', 'Koneru Lakshmaiah College of Engineering', 'Information Science And Technologyu', '89.2', '100', '0')
(2551, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43')
(2552, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '162', '316', '3.5', '106', 'Sinhgad College of Engineering', 'IT', '63', '100', '0')
(2553, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0')
(2554, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2555, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '154', '149', '303', '3', '7', 'None', 'I.T', '67', '100', '0')
(2556, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '148', '309', '3.5', '98', 'Anna University', 'ECE', '7.85', '10', '42')
(2557, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0')
(2558, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '3', '95', 'MU', 'Computer', '70', '100', '0')
(2559, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0')
(2560, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0')
(2561, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '142', '300', '3', '96', 'VTU', 'EC', '75', '100', '0')
(2562, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0')
(2563, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '570', '1320', '3', '112', 'Galgotias College of Engineering & Technology(Uttar Pradesh Technical University)', 'Information Technology', '70', '100', '0')
(2564, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '4', '96', 'Arya Institute of Engg and Tech', 'Computer Science', '77.7', '100', '0')
(2565, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '500', '1230', '3.5', '98', 'MU', 'electronics', '69.74', '100', '0')
(2566, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '600', '1330', '3.5', '106', 'University of Mumbai', 'IT', '62.5', '100', '0')
(2567, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0')
(2568, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '770', '520', '1290', '3.5', '106', 'Vishwakarma Institute of Technology', 'E&Tc;', '8.9', '10', '0')
(2569, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0')
(2570, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2009', '800', '640', '1440', 'None', '101', 'MNIT', 'Electrical Engineering', '7.1', '10', '0')
(2571, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '152', '310', '4.5', '109', 'VTU', 'Telecomm', '66', '100', '0')
(2572, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0')
(2573, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(2574, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '102', 'None', '0', '77.5', '100', '0')
(2575, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '154', '311', '3', '105', 'MU', 'Computer', '60', '100', '0')
(2576, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '154', '316', '3', '99', 'GCET', 'Mechanical', '8.89', '10', '0')
(2577, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0')
(2578, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0')
(2579, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '162', '320', '4', '109', 'SASTRA', 'Bioinformatics', '8.68', '10', '32')
(2580, 'Syracuse University', '4', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0')
(2581, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '152', '146', '298', '3.5', '6', 'VTU', 'electronic and communication', '81', '100', '0')
(2582, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0')
(2583, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0')
(2584, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0')
(2585, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0')
(2586, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '670', '540', '1210', '3', '103', 'D J Sanghvi', 'IT', '55', '100', '0')
(2587, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '440', '1150', '3', '105', 'None', '0', '0', '0', '0')
(2588, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '152', '303', '4', '111', 'B M S College of Engineering', 'Telecommunication engineering', '71.4', '100', '0')
(2589, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '152', '157', '309', '4', '107', 'Bharathiar University', 'Computer Science', '61', '100', '0')
(2590, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '154', '315', '4', '106', 'SRM', 'Computer Science Engineering', '8.95', '10', '0')
(2591, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '95', 'Anna University', 'CS', '7', '10', '0')
(2592, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0')
(2593, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '156', '313', '4.5', 'None', 'Nirma Institute of Technology', 'electronics and communications', '8.12', '10', '0')
(2594, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0')
(2595, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '153', '152', '305', '4', '104', 'Nagpur University', 'BE in IT', '61', '100', '70')
(2596, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0')
(2597, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0')
(2598, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0')
(2599, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '154', '321', '3.5', '107', 'COEP', 'Computer Engineering', '7.78', '10', '0')
(2600, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0')
(2601, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0')
(2602, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '570', '1300', '3.5', '99', 'Pune University', 'Computer', '60', '100', '0')
(2603, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '107', 'NITK Surathkal', 'EEE', '7.17', '10', '0')
(2604, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '144', '305', '3', '81', 'Osmania University', 'Computer Science', '84.57', '100', '0')
(2605, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0')
(2606, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '152', '313', '4', '106', 'CEG', 'B.Tech Information Technology', '8.01', '10', '29')
(2607, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0')
(2608, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '3', 'None', 'Chaitanya Bharathi Institute of Technology', 'Electronics and Communications', '85.5', '100', '0')
(2609, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '430', '1180', '4', '107', 'Sathyabama University', 'Computer Science Engineering', '77.36', '100', '0')
(2610, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '600', '1320', 'None', '108', 'Anna University', 'IT', '81', '100', '0')
(2611, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '3.5', '101', 'Pune University', 'Computer', '54', '100', '0')
(2612, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0')
(2613, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43')
(2614, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '510', '1240', '3.5', '104', 'bombay University', 'Computer Science', '61', '100', '0')
(2615, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31')
(2616, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '163', '157', '320', '4', '114', 'None', 'BE Computer Science', '66.2', '100', '0')
(2617, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0')
(2618, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0')
(2619, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(2620, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '640', '1420', '4.5', '117', 'MU', 'Computer Engg', '59', '100', '0')
(2621, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0')
(2622, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0')
(2623, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0')
(2624, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '159', '321', '4', '116', 'GGSIPU', 'Mechanical', '78.8', '100', '0')
(2625, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0')
(2626, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '340', '1090', '3', '96', 'Jaya Engineering college', 'CSE', '88', '100', '0')
(2627, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0')
(2628, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(2629, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '157', '318', '3.5', '112', 'Sinhgad College of Engineering', 'MBA', '68', '100', '0')
(2630, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3.5', '104', 'Pune University', 'B.E.(Information Technology)', '64.2', '100', '0')
(2631, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54')
(2632, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0')
(2633, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57')
(2634, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '143', '305', '3', '101', 'VTU', 'Telecommunication Engineering', '65.13', '100', '0')
(2635, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0')
(2636, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '320', '1040', '3', '99', 'Amrita School of Engineering', 'CSE', '7.64', '10', '0')
(2637, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2013', '160', '149', '309', '2.5', '107', 'Maharishi Dayanand University', 'Computer Science', '70', '100', '0')
(2638, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(2639, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0')
(2640, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '153', '312', '3', '110', 'MU', 'Information Technology', '3.79', '4', '0')
(2641, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', '3', '88', 'Sinhgad College of Engineering', 'Electronics and Telecommunications', '62.13', '100', '0')
(2642, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0')
(2643, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2644, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0')
(2645, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0')
(2646, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '700', '630', '1330', '4.5', '270', 'VESIT', 'Info Tech', '64.3', '100', '0')
(2647, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '168', '155', '323', '4.5', '101', 'VTU', 'Telecommunication', '75', '100', '0')
(2648, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '149', '314', '3', '99', 'NIT Bhopal', 'Computer Science', '3.11', '4', '0')
(2649, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0')
(2650, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33')
(2651, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0')
(2652, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(2653, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '150', '311', '3', '98', 'University of Mumbai', 'IT', '60', '100', '0')
(2654, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '4', '112', 'University of Mumbai', 'Information Technology', '58.13', '100', '0')
(2655, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '540', '1340', '3.5', '107', 'D J Sanghvi', 'Computer', '64', '100', '0')
(2656, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2009', '800', '360', '1160', '3', '95', 'Anna University', 'ECE', '73', '100', '0')
(2657, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '155', '315', '3', '109', 'VIT', 'ECE', '69', '100', '0')
(2658, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42')
(2659, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0')
(2660, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0')
(2661, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '151', '307', '4', '115', 'BPUT', 'Electronics and Communication', '8.39', '10', '29')
(2662, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0')
(2663, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0')
(2664, 'Syracuse University', '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'VESIT', 'Computer Engineering', '65', '100', '0')
(2665, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18')
(2666, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Syracuse University', 'Electrical Engiineering', '3.4', '4', '0')
(2667, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '4', '91', 'MVSR', 'computer science engineering', '72.3', '100', '0')
(2668, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '3.5', '106', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '72.8', '100', '66')
(2669, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0')
(2670, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0')
(2671, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0')
(2672, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0')
(2673, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0')
(2674, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '148', '303', '4', '111', 'JSSATE VTU', 'Instrumentation Tech', '65', '100', '0')
(2675, 'Syracuse University', '4', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0')
(2676, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '143', '300', '3.5', '110', 'SCSVMV University', 'Computer Science', '8.06', '10', '0')
(2677, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '107', 'Shah And anchor Kutchhi Engineering College', 'IT', '60.3', '100', '0')
(2678, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', 'None', 'None', 'NIT-Bhopal', 'Information Technology', '8.49', '10', '0')
(2679, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '114', 'University of Pune', 'Conputer Science', '59', '100', '15')
(2680, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2012', '770', '620', '1390', '3', '109', 'Kalinga Institute of Industrial Technology', 'Electronics &Telecom;', '7.1', '10', '0')
(2681, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '320', '1060', '2.5', '86', 'Anna University', 'CSE', '75', '100', '0')
(2682, 'Syracuse University', '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0')
(2683, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3', '99', 'Atharva College', 'ELECTRONICS', '70', '100', '0')
(2684, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '5.5', '117', 'Manipal Institue of Technology', 'E&C;', '8.2', '10', '0')
(2685, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '100', 'IIIT Allahabad', 'IT', '7.5', '10', '0')
(2686, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0')
(2687, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0')
(2688, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0')
(2689, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '105', 'VTU', 'Computer Sciece and Engineering', '71', '100', '0')
(2690, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '5', '106', 'None', '0', '0', '0', '0')
(2691, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '660', '1350', '3', '102', 'Sri Venkateswara College of Engineering', 'Computer science Engg', '83', '100', '0')
(2692, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '4', '104', 'None', '0', '72', '100', '0')
(2693, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12')
(2694, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0')
(2695, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0')
(2696, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Nirma Institute of Technology', '0', '0', '0', '0')
(2697, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0')
(2698, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '4', '115', 'VIT Pune', 'e&tc;', '7.5', '10', '0')
(2699, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '144', '304', '3.5', '113', 'CITM Faridabad', 'CSE', '64', '100', '0')
(2700, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24')
(2701, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '750', '560', '1310', '3.5', '260', 'SVIT Vasad (Gujarat University)', 'IT', '63', '100', '0')
(2702, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '640', '1440', '5', 'None', 'SVNIT Surat', 'Electronics', '76', '100', '0')
(2703, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '151', '148', '299', '3', '93', 'S.S.P.M college of Engineering-mumbai university', 'E&TC;', '0', '0', '0')
(2704, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '700', '450', '1150', '3', '99', 'Walchand College Of Engineering', 'Electronics Engineering', '66', '100', '0')
(2705, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '100', 'MU', 'Computer Engineering', '60.44', '100', '0')
(2706, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '71', '100', '0')
(2707, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(2708, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '100', 'MU', 'Computer Engineering', '70', '100', '0')
(2709, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '5', '277', 'MANIT', 'Electrical', '76', '100', '0')
(2710, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2', '159', '149', '308', 'None', '109', 'Rajiv Gandhi Institute Of Technology', 'BE EXTC', '63', '100', '0')
(2711, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '104', 'University of Pune', 'Information Technology', '8.74', '10', '0')
(2712, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '146', '301', '3', '101', 'SASTRA', 'ECE', '7', '10', '0')
(2713, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0')
(2714, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '49', '26', '75', '5', '99', 'Amrita Vishwa Vidhyapeetham', 'EEE', '8.46', '100', '0')
(2715, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0')
(2716, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '167', '154', '321', '4', '112', 'IIT Kharagpur', 'Architecture', '8.05', '10', '0')
(2717, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0')
(2718, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29')
(2719, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '410', '1200', '4', '107', 'Nirma Institute of Technology', 'mechanical engg', '8.51', '10', '0')
(2720, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0')
(2721, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2007', '710', '620', '1330', '4.5', '283', 'Maharishi Dayanand University', 'IT', '80', '100', '0')
(2722, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0')
(2723, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3.5', '112', 'Pune University', 'Information Technology', '65', '100', '0')
(2724, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '720', '650', '1370', '4', '113', 'MU', 'Chemical', '60', '100', '0')
(2725, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(2726, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '148', '142', '290', '3', '86', 'GITAM', 'cse', '8.15', '10', '0')
(2727, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0')
(2728, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '142', '159', '301', '3.5', '98', 'SRM', 'ECE', '9.5', '10', '0')
(2729, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '760', '720', '1480', '4', '102', 'University of Mumbai', 'Computer', '68.38', '100', '0')
(2730, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0')
(2731, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '143', '302', '3.5', '85', 'None', 'ECE', '79', '100', '0')
(2732, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '156', '151', '307', '3.5', '106', 'MU', 'IT', '69', '100', '0')
(2733, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '600', '1240', 'None', '107', 'Pune University', 'Computer', '61', '100', '0')
(2734, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '112', 'SGGS institute of engg nanded', 'Electronics and Telecommunications', '8.53', '10', '0')
(2735, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '152', '314', '3.5', '106', 'Punjab Technical University', 'Computer Science', '78.1', '100', '0')
(2736, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '161', '158', '319', '3', '101', 'MG University', 'ECE', '69.4', '100', '0')
(2737, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0')
(2738, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0')
(2739, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(2740, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '158', '140', '298', '3', '92', 'University of Pune', '0', '76.2', '100', '0')
(2741, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0')
(2742, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '690', '610', '1300', '3.5', '94', 'Priyadarshini College of Engineering', 'Comp.Tech', '62.96', '100', '0')
(2743, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '151', '310', '3', '103', 'PESIT', 'C.S', '69', '100', '0')
(2744, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0')
(2745, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '145', '301', '3', '104', 'BMSCE', 'Computer Science', '9.3', '10', '0')
(2746, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '144', '307', '3.5', '98', 'Nagarjuna University', 'ECE', '8.55', '10', '0')
(2747, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '152', '308', '3.5', '105', 'VTU', 'EE', '78', '100', '0')
(2748, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0')
(2749, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0')
(2750, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '160', '326', '4', '114', 'Pondicherry Engineering College', 'Computer Science', '8.35', '10', '0')
(2751, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '108', 'VIT University', 'ECE', '8.15', '10', '0')
(2752, 'Syracuse University', '4', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2013', '152', '152', '304', '3', '101', 'Anna University', 'Biotechnology', '8.5', '10', '0')
(2753, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0')
(2754, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3.5', '109', 'VTU', 'CS & E', '81', '100', '0')
(2755, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0')
(2756, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0')
(2757, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4')
(2758, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0')
(2759, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(2760, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '34', '84', '5.5', '98', 'BESU Shibpur', 'Electrical Engineering', '61', '100', '0')
(2761, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(2762, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '680', '640', '1320', '3', '106', 'None', 'Instrumentation', '73', '100', '0')
(2763, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0')
(2764, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26')
(2765, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '7', 'GITAM', 'E.C.E', '9', '10', '0')
(2766, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0')
(2767, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '150', '313', '4', '99', 'NIT Jalandhar', 'Industrial Engineering', '7.65', '10', '0')
(2768, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0')
(2769, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0')
(2770, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0')
(2771, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(2772, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0')
(2773, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '147', '311', '3', '83', 'Pune University', 'Computer Science', '63.51', '100', '0')
(2774, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '148', '308', '3', '103', 'Medicaps Institute of Science & Technology Indore', 'EE', '74.97', '100', '0')
(2775, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0')
(2776, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '148', '305', '4', '101', 'Ramrao Adik Institute of Technology', 'IT', '63', '100', '0')
(2777, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '150', '143', '293', 'None', '94', 'Siddaganga Institue of Technology', 'Computer Science', '8.72', '10', '0')
(2778, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '650', '390', '1040', '3', '97', 'Sardar Patel College of Engineering', 'Electronics', '71.23', '100', '0')
(2779, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '111', 'VTU', 'CSE', '74', '100', '0')
(2780, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0')
(2781, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0')
(2782, 'Syracuse University', '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0')
(2783, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0')
(2784, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '117', 'MU', 'Information Technology', '63', '100', '0')
(2785, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'Anna University', 'Computer Science', '8.2', '10', '0')
(2786, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0')
(2787, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0')
(2788, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0')
(2789, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '159', '322', '4', '111', 'D J Sanghvi', 'Computer Science', '65', '100', '0')
(2790, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '164', '153', '317', '4', '105', 'MU', 'Computer Engineering', '68', '100', '0')
(2791, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '98', 'SRM', 'EEE', '8.324', '10', '21')
(2792, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0')
(2793, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0')
(2794, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0')
(2795, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0')
(2796, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0')
(2797, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0')
(2798, 'Syracuse University', '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '163', '149', '312', '3.5', 'None', 'NIT Durgapur', 'Mechanical Engineering', '7.93', '10', '0')
(2799, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0')
(2800, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '150', '147', '297', '3.5', '110', 'PICT', 'Computer Engineering', '63', '100', '0')
(2801, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '690', '1490', '3.5', '111', 'University of Mumbai', 'Electronics', '57', '100', '0')
(2802, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0')
(2803, 'Syracuse University', '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0')
(2804, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0')
(2805, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3', '76', 'VTU', 'Computer Science', '70', '100', '0')
(2806, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '150', '318', '4', '108', 'SSN College of Engineering', 'EEE', '74', '100', '0')
(2807, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '257', 'MU', 'IT', '65', '100', '0')
(2808, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'Computer Engineering', '3.63', '4', '0')
(2809, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'CS', '3.63', '4', '0')
(2810, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0')
(2811, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(2812, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '550', '1340', '3', '106', 'Punjabi University', 'University college of Engineering', '68.8', '100', '0')
(2813, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0')
(2814, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0')
(2815, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0')
(2816, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '142', '299', '3.5', '88', 'NIT Kurukshetra', 'Electronics and Communication', '8.039', '10', '0')
(2817, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '106', 'Punjab Technical University', 'Computer Science', '64.73', '100', '84')
(2818, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '540', '1280', '3', '104', 'MU', 'IT', '71', '100', '0')
(2819, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0')
(2820, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '168', '155', '323', '3.5', '109', 'SASTRA', 'CSE', '8.4', '10', '0')
(2821, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '163', '152', '315', 'None', '102', 'Amity University', 'CS', '7.07', '10', '0')
(2822, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '650', '630', '1280', '4', '112', 'univeristy of mumbai', 'information technology', '57', '100', '0')
(2823, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0')
(2824, 'Syracuse University', '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2015', '157', '150', '307', '4', '107', 'GITAM', 'Electronics and Communications Engineering', '8.73', '10', '0')
(2825, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '660', '1380', '3.5', '111', 'University of Mumbai', 'computers', '59.02', '100', '0')
(2826, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0')
(2827, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0')
(2828, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0')
(2829, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '96', 'Thapar University', 'Computer Science Engineering', '7.99', '10', '18')
(2830, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(2831, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '164', '150', '314', '3.5', '113', 'VESIT', 'Computers', '3.5', '4', '0')
(2832, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '4.5', '102', 'Thadomal Shahani Engineering College', 'Computers', '60', '100', '0')
(2833, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '104', 'Shivaji University', 'Computer Science and Engineering', '58', '100', '0')
(2834, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '148', '313', '3.5', '313', 'Nagpur University', 'Electronics', '74.5', '100', '0')
(2835, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '50', '34', '84', '5.5', '112', 'Nirma Institute of Technology', 'B.Tech Computer Engg.', '7.54', '10', '0')
(2836, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'D J Sanghvi', 'telecomm', '71', '100', '0')
(2837, 'Syracuse University', '4', 'Admit', 'MS', 'mba', 'Fall ', '2011', '48', '28', '76', '4.5', '110', 'Anna University', 'ECE', '68', '100', '0')
(2838, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '39', '27', '66', '5', '108', 'Anna University', 'Information technology', '68', '100', '0')
(2839, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '108', 'RTM Nagpur University', 'Electronics and Telecommunication', '75.61', '100', '52')
(2840, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '590', '1370', '3', '97', 'SDM', 'E&C;', '75.5', '100', '0')
(2841, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(2842, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6')
(2843, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '148', '310', '3', '96', 'None', '0', '67', '100', '0')
(2844, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '720', '580', '1300', 'None', '270', 'Bangalore Institute of Technology', 'Computer Science', '69.22', '100', '0')
(2845, 'Syracuse University', '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '164', '155', '319', '3.5', '109', 'GGSIPU', 'CS', '72', '100', '12')
(2846, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(2847, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '690', '1490', '5', '300', 'ICFAI', 'Electronics and Communication', '9.82', '10', '0')
(2848, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '3', '106', 'MU', 'Information Technology', '68', '100', '0')
(2849, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '460', '1140', '4', '97', 'VIT', 'IT', '0', '0', '0')
(2850, 'Syracuse University', '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0')
(2851, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0')
(2852, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '153', '318', '4', '111', 'TSEC', 'EXTC', '58', '100', '0')
(2853, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '510', '1290', '3.5', '110', 'VESIT', 'Electronics and Telecommunications', '60', '5', '0')
(2854, 'Syracuse University', '4', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '680', '700', '1380', '3.5', '113', 'Anna University', 'Bio Technology', '8.7', '10', '0')
(2855, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '159', '320', 'None', '108', 'Amrita School of Engineering', 'computer science', '7.56', '10', '0')
(2856, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0')
(2857, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0')
(2858, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '101', 'UPTU', 'Computer Science', '77', '100', '48')
(2859, 'Syracuse University', '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0')
(2860, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '4', '104', 'JMIT Radaur(Kurukshetra University)', 'Electronics & Communications', '72', '100', '0')
(2861, 'Syracuse University', '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2013', '165', '157', '322', '4', '110', 'Anna University', 'IT', '82', '100', '0')
(2862, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0')
(2863, 'Syracuse University', '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0')
(2864, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0')
(2865, 'Syracuse University', '4', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0')
(2866, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'VJTI', 'Electrical Engineering', '8.4', '10', '0')
(2867, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0')
(2868, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '113', 'RGPV', 'Information Technology', '80', '100', '0')
(2869, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18')
(2870, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0')
(2871, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '273', 'PICT', 'Computer Science', '60', '100', '0')
(2872, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '148', '308', '3.5', 'None', 'BNMIT', 'Information Science', '69', '100', '0')
(2873, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '580', '1380', '3', '101', 'None', '0', '85', '100', '0')
(2874, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '153', '313', '3', '8', 'SSN College of Engineering', 'Information Technology', '79', '100', '38')
(2875, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0')
(2876, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0')
(2877, 'Syracuse University', '4', 'Admit', 'MS', 'None', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'SUA Iran', 'Electrical Engineering', '0', '0', '0')
(2878, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0')
(2879, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '460', '1250', '3', '107', 'RGPV', 'Electronica and Comm', '70.28', '100', '0')
(2880, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Pune University', 'Electronics & Telecom', '65', '100', '0')
(2881, 'Syracuse University', '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Cummins College of Engineering Pune', 'Pune University', '64.42', '100', '0')
(2882, 'Syracuse University', '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '660', '1460', '4.5', '293', 'MU', 'Electronics and Telecommunication', '68', '100', '0')
(2883, 'Syracuse University', '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0')
(2884, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '157', '322', '3', '105', 'National Taiwan University', 'Library and Information Science', '3.54', '4', '0')
(2885, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29')
(2886, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '490', '1220', '3', '104', 'University of Mumbai', 'Electrical Engg.', '67', '100', '0')
(2887, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '96', 'Global Institute of Technology(RTU)', 'IT', '71.4', '100', '0')
(2888, 'Syracuse University', '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '148', '306', '3.5', '104', 'Anna University', 'ECE', '8.69', '10', '0')
(2889, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '151', '141', '292', '3', '83', 'Anna University', 'Electronics & Instrumentation', '8.01', '10', '0')
(2890, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'SVCE', 'ECE', '0', '0', '0')
(2891, 'Syracuse University', '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0')
(2892, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0')
(2893, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0')
(2894, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '154', '317', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '70.1', '100', '0')
(2895, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0')
(2896, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0')
(2897, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(2898, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24')
(2899, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3', '98', 'None', '0', '0', '0', '0')
(2900, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '450', '1170', '3.5', '90', 'University of Mumbai', 'Electronics & Telecommunication', '63', '100', '0')
(2901, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58')
(2902, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0')
(2903, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0')
(2904, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0')
(2905, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(2906, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0')
(2907, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '97', 'UPTU', 'Computer Science & Engineering', '66.4', '100', '9')
(2908, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28')
(2909, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '49', '24', '73', 'None', 'None', 'Amrita School of Engineering', 'IT', '6.7', '10', '0')
(2910, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0')
(2911, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0')
(2912, 'Syracuse University', '4', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0')
(2913, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '149', '313', '3.5', '109', 'FR. CRIT Vashi', 'Information Technology', '68.8', '100', '0')
(2914, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0')
(2915, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '310', '1020', 'None', '86', 'University of Mumbai', 'BE Information Technology', '0', '0', '0')
(2916, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(2917, 'Syracuse University', '4', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0')
(2918, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '560', '1340', '4', '104', 'VTU', '0', '61', '100', '0')
(2919, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '97', 'MU', 'Computers', '57', '100', '0')
(2920, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '146', '311', '3.5', '95', 'IET DAVV', 'IT', '3.68', '4', '0')
(2921, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42')
(2922, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0')
(2923, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24')
(2924, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70')
(2925, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0')
(2926, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42')
(2927, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0')
(2928, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0')
(2929, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0')
(2930, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0')
(2931, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '111', 'MU', 'Computer Engg', '67.22', '100', '0')
(2932, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0')
(2933, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0')
(2934, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '60.88', '100', '0')
(2935, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '680', '600', '1280', '2.5', '102', 'VTU', 'Electronics & Communication', '61', '100', '0')
(2936, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0')
(2937, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0')
(2938, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '146', '305', '3', '86', 'University of Pune', 'Computer Engineering', '61.67', '100', '33')
(2939, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0')
(2940, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0')
(2941, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '147', '310', '2.5', '95', 'Gujarat Technological University', 'ECE', '70', '100', '77')
(2942, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32')
(2943, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0')
(2944, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '530', '1280', '4', '95', 'Manipal Institue of Technology', 'Computer Science', '8.05', '10', '0')
(2945, 'Syracuse University', '4', 'Reject', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0')
(2946, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0')
(2947, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0')
(2948, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0')
(2949, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '670', '410', '1080', '3', '260', 'RMK Engineering College', 'Computer Science', '70', '100', '0')
(2950, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0')
(2951, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0')
(2952, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '146', '300', '3.5', '89', 'NMAMIT Nitte', 'EC', '8.38', '10', '0')
(2953, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16')
(2954, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2010', '710', '390', '1100', '3', '105', 'Anna University', 'CSE', '74', '100', '0')
(2955, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0')
(2956, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '158', '149', '307', '4', '109', 'GITAM', 'ECE', '7.2', '10', '0')
(2957, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0')
(2958, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '164', '146', '310', 'None', 'None', 'None', 'Information Technology', '6.91', '10', '0')
(2959, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', '3', '90', 'Vishwakarma Institute of Technology', 'Computer', '6.7', '10', '0')
(2960, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '570', '1320', 'None', '101', 'MIT Pune', 'Electronics and telecommunication', '69.53', '100', '0')
(2961, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '147', '304', '2.5', '87', 'Dharamsinh Desai University', 'Information Technology', '64.67', '100', '0')
(2962, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '151', '313', '4', '107', 'Anna University', 'Electronics and Instrumentation Engineering', '7', '10', '0')
(2963, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0')
(2964, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0')
(2965, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '158', '149', '307', '3.5', '96', 'Panjab University', 'Electrical and Electronics', '62.37', '100', '0')
(2966, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3.5', '101', 'ITM University Gurgaon', 'Computer Science (B.Tech)', '6.66', '10', '0')
(2967, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '147', '305', '3', '82', 'VTU', 'Computer Science', '67', '100', '0')
(2968, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0')
(2969, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '145', '306', '3', '90', 'KITS Kakatiya University', 'Electrical & Electronics Engineering', '66.16', '100', '0')
(2970, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0')
(2971, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42')
(2972, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '570', '1300', '3', '98', 'K J Somaiya College of Engiineering', 'Computer Engg', '60', '100', '0')
(2973, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0')
(2974, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0')
(2975, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0')
(2976, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '480', '1200', '3.5', '107', 'University of Pune', 'IT', '58', '100', '0')
(2977, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15')
(2978, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0')
(2979, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '156', '144', '300', '3', '81', 'MU', 'BE in Electronics', '57', '100', '0')
(2980, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '148', '305', '4', '88', 'University of Pune', 'Computer', '62.41', '100', '0')
(2981, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0')
(2982, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0')
(2983, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0')
(2984, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '660', '1380', '3.5', 'None', 'VTU', 'computer science', '60', '100', '0')
(2985, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '6', 'None', 'I.T', '70', '100', '0')
(2986, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0')
(2987, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '60.41', '100', '0')
(2988, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '155', '146', '301', '3', '81', 'GITAM', 'Computer Science', '8.45', '10', '0')
(2989, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '96', 'Andhra University', 'Information Technology', '8', '10', '0')
(2990, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '165', '149', '314', '4', '105', 'MU', 'Mechanical', '60', '100', '0')
(2991, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0')
(2992, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '720', '430', '1150', '3.5', '105', 'MU', 'Information Technology', '64', '100', '0')
(2993, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0')
(2994, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0')
(2995, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0')
(2996, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', 'None', '85', 'BITS Pilani', 'CSE', '6.75', '10', '0')
(2997, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0')
(2998, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0')
(2999, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '620', '580', '1200', '4', '115', 'VTU', 'ECE', '78.5', '100', '0')
(3000, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33')
(3001, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0')
(3002, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '400', '1140', '3', '91', 'MU', 'Computers', '63', '100', '0')
(3003, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '108', 'BIT Mesra', 'ECE', '6.93', '10', '0')
(3004, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24')
(3005, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '3', '102', 'Pune University', 'IT', '3.6', '4', '0')
(3006, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '160', '146', '306', '3', '98', 'MU', 'EXTC', '65', '100', '0')
(3007, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0')
(3008, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0')
(3009, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(3010, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0')
(3011, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24')
(3012, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '100', 'VKIT', 'CS', '65', '100', '32')
(3013, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0')
(3014, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38')
(3015, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0')
(3016, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0')
(3017, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '143', '303', '3', 'None', 'VRSEC', 'IT', '8.45', '10', '0')
(3018, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0')
(3019, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '106', 'RGPV', 'cs', '69.56', '100', '0')
(3020, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '156', '151', '307', '3', '101', 'UPTU', 'information technology', '74.4', '100', '0')
(3021, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '109', 'University College Of Engineering Kariavattom Trivandrum', 'Computer Science', '6.7', '10', '0')
(3022, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(3023, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '380', '1130', '3', '90', 'PESIT', 'Information Scinece and Engineering', '67', '100', '0')
(3024, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(3025, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '670', '450', '1120', '3', 'None', 'sbmjce', 'eee', '0', '0', '0')
(3026, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0')
(3027, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0')
(3028, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '164', '150', '314', '3.3', '89', 'Wuhan University of Technology', '0', '0', '100', '0')
(3029, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '111', 'Pune University', 'Mechanical', '53', '100', '0')
(3030, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0')
(3031, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2011', '740', '590', '1330', '3', '100', 'Southeast University', 'Communication Engineering', '80', '100', '0')
(3032, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '2.5', '84', 'SIET affliated to JNTU', 'IT', '68.25', '100', '0')
(3033, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0')
(3034, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '380', '1110', '3', '95', 'Velalar College of Engg & Tech Erode', 'Computer Science and Engineering', '75', '100', '0')
(3035, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2011', '730', '340', '1070', 'None', '80', 'University of Mumbai', 'Electronics and Telecommunication', '69.72', '100', '0')
(3036, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0')
(3037, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0')
(3038, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45')
(3039, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '390', '1180', '3.5', '112', 'Gujarat Technological University', 'Computer', '3.82', '4', '0')
(3040, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0')
(3041, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '460', '1240', '3', '101', 'None', '0', '0', '0', '0')
(3042, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'MU', 'Computer Engineering', '62.6', '100', '15')
(3043, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44')
(3044, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0')
(3045, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '99', 'SSEC', 'CSE', '73', '100', '0')
(3046, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0')
(3047, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24')
(3048, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '680', '1460', '4.5', '105', 'University of Pune', 'Computer Engineering', '58', '100', '0')
(3049, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0')
(3050, 'Syracuse University', '4', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '50', '21', '71', '4', '88', 'ITM Gurgaon', 'CSE', '68', '100', '0')
(3051, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(3052, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0')
(3053, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(3054, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0')
(3055, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0')
(3056, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0')
(3057, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', '105', 'Pune University', 'CS', '7', '10', '0')
(3058, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36')
(3059, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0')
(3060, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '3', '92', 'Maharashtra Academy of Engineering / University of Pune', 'Computer Engineering', '62.8', '100', '0')
(3061, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '760', '450', '1210', 'None', '97', 'Anna University', 'Computer Science', '76', '100', '0')
(3062, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0')
(3063, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0')
(3064, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(3065, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '790', '650', '1440', '3', '100', 'Jaypee Institute of Information Technology', 'CSE', '6.9', '10', '0')
(3066, 'Syracuse University', '4', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22')
(3067, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0')
(3068, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '58.51', '100', '0')
(3069, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0')
(3070, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', '103', 'KIIT', 'EEE', '8', '10', '0')
(3071, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '143', '303', '3', '91', 'GITAM', 'CSE', '7.87', '10', '0')
(3072, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36')
(3073, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56')
(3074, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15')
(3075, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(3076, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0')
(3077, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0')
(3078, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0')
(3079, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0')
(3080, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '520', '1210', 'None', '93', 'MU', 'Information Technology', '57', '100', '0')
(3081, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0')
(3082, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0')
(3083, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(3084, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '460', '1250', '4.5', '283', 'Pune University', 'Computer Engg.', '57', '100', '0')
(3085, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0')
(3086, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0')
(3087, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0')
(3088, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0')
(3089, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0')
(3090, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '86', 'Anna University', 'CS', '7', '100', '29')
(3091, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '740', '400', '1140', '3.5', '99', 'Bharat Institute of Engineering and Technology', 'Instrumentation and Control', '79', '100', '0')
(3092, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36')
(3093, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '2.5', '87', 'Panimalar Engineering College', 'ECE', '82', '100', '0')
(3094, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0')
(3095, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0')
(3096, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2009', '780', '450', '1230', '3.5', '101', 'University of Mumbai', 'CS', '0', '0', '0')
(3097, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0')
(3098, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '710', '390', '1100', '3', '103', 'University of Pune', 'Information Technology', '58', '100', '0')
(3099, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'Fr. agnels vashi', 'Information technology', '56.45', '100', '0')
(3100, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '530', '1240', '3', '95', 'Vishwakarma Institute of Technology', 'Electronics', '68.2', '100', '0')
(3101, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '97', 'VTU', 'electronics and communication', '71', '100', '0')
(3102, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '91', 'Walchand College Of Engineering', 'Computer Science & Engineering', '63.71', '100', '0')
(3103, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0')
(3104, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0')
(3105, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0')
(3106, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0')
(3107, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(3108, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '96', 'Anna University', 'ECE', '7.5', '10', '0')
(3109, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '145', '301', '3', '97', 'VTU', 'CSE', '3.34', '4', '0')
(3110, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25')
(3111, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '152', '152', '304', '3', 'None', 'PESIT', 'MECHANICAL', '6.13', '10', '0')
(3112, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '155', '145', '300', '3', '100', 'MU', 'IT', '60', '100', '8')
(3113, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '750', '440', '1190', '4', '283', 'J.S.S.A.T.E. Noida', 'Computer Science', '69', '100', '0')
(3114, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '93', 'GGSIPU', 'CSE', '70', '100', '36')
(3115, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0')
(3116, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '530', '1190', '3.5', '96', 'Pune University', 'B.E.Computer', '74', '100', '0')
(3117, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12')
(3118, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0')
(3119, 'Syracuse University', '4', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '690', '330', '1020', '3.5', '92', 'Shivajirao S. Jondhale College of Engineering', 'Electronics & Telecomm', '57.5', '100', '0')
(3120, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0')
(3121, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0')
(3122, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '153', '148', '301', 'None', '87', 'Anna University', 'Computer Science', '75', '100', '0')
(3123, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77')
(3124, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0')
(3125, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '87', 'CBIT', 'Mechanical', '72.2', '100', '0')
(3126, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28')
(3127, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(3128, 'Syracuse University', '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0')
(3129, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '145', '304', '3', '98', 'MU', 'E&TC;', '64', '100', '0')
(3130, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0')
(3131, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0')
(3132, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '4.5', '280', 'None', 'Comp Sc.', '74', '100', '0')
(3133, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'Pune University', 'Computer Engg', '54', '100', '0')
(3134, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '470', '1190', '3.5', '90', 'Gautam Buddh Technical University', 'Electrical Engineering', '66', '100', '0')
(3135, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(3136, 'Syracuse University', '4', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0')
(3137, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '460', '1190', '3.5', '108', 'MU', 'Computer', '63', '100', '0')
(3138, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(3139, 'Syracuse University', '4', 'Reject', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0')
(3140, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(3141, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0')
(3142, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '141', '299', '3.5', 'None', 'JNTU', 'CSE', '72.56', '100', '0')
(3143, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0')
(3144, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '770', '470', '1240', '3.5', '253', 'VJTI', 'Mechanical', '65.9', '100', '0')
(3145, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0')
(3146, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0')
(3147, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7')
(3148, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0')
(3149, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0')
(3150, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60')
(3151, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0')
(3152, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42')
(3153, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0')
(3154, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '150', '309', '3.5', '108', 'VTU', 'ECE', '69', '100', '0')
(3155, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0')
(3156, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40')
(3157, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0')
(3158, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '150', '305', '3', '108', 'MU', 'Information Technology', '66', '100', '0')
(3159, 'Syracuse University', '4', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0')
(3160, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0')
(3161, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0')
(3162, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0')
(3163, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0')
(3164, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '160', '148', '308', 'None', '104', 'Symbiosis Institute of Technology', 'Computer Science', '2.68', '4', '0')
(3165, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '550', '1340', '4', '105', 'VTU', 'Electronics and Comunication', '69', '100', '0')
(3166, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '147', '306', '3.5', '101', 'Sardar Vallabhbhai National Institute of Technology', 'Information Technology', '7.74', '10', '0')
(3167, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '105', 'Biju Patnaik University of Technology', 'CSE', '7.65', '10', '31')
(3168, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0')
(3169, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '470', '1210', '3.5', '108', 'VTU', 'Computer Science', '74', '100', '0')
(3170, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36')
(3171, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0')
(3172, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '144', '298', '3.5', '93', 'APSCE VTU', 'Information Science', '64.5', '100', '0')
(3173, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '48', '34', '82', '4.5', '103', 'Manipal Institue of Technology', 'Electrical and Electronics', '6.58', '10', '0')
(3174, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3.5', '107', 'ITM Gurgaon', 'CS', '61', '100', '0')
(3175, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '97', 'IIIT Allahabad', 'IT', '6.71', '10', '0')
(3176, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96')
(3177, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18')
(3178, 'Syracuse University', '4', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0')
(3179, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0')
(3180, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0')
(3181, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '380', '1070', '2.5', '89', 'K J Somaiya College of Engiineering', 'IT', '73', '100', '0')
(3182, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0')
(3183, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '750', '410', '1160', '4', '106', 'Anna University', 'Computer Science', '73', '100', '0')
(3184, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '143', '304', '3', 'None', 'SUNY buffalo', 'EE', '73', '100', '0')
(3185, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0')
(3186, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0')
(3187, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0')
(3188, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0')
(3189, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '162', '143', '305', '3', '91', 'VIT', 'CSE', '8.11', '10', '0')
(3190, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '2.5', '94', 'Sri Venkateswara College of Engineering', 'ECE', '6.82', '10', '0')
(3191, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3', '112', 'SJCE', 'Electronics and Communication', '68', '100', '0')
(3192, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '460', '1230', '3', '100', 'Shivaji University', 'Mechanical Engineering', '60.47', '100', '0')
(3193, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0')
(3194, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0')
(3195, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24')
(3196, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0')
(3197, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0')
(3198, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0')
(3199, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '144', '304', '3', '102', 'University of Pune', 'Electronics and Telecommunication', '71.4', '100', '0')
(3200, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '165', '326', '3.5', '112', 'BITS Pilani', 'E.E.E', '5.73', '10', '0')
(3201, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '103', 'GNIT (JNTU-H)', 'Computer Science and Engineering', '68', '100', '0')
(3202, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0')
(3203, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3', '101', 'BIT Mesra', 'Computer Science Enggineering', '6.21', '10', '24')
(3204, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0')
(3205, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '148', '304', 'None', '102', 'MGM CoET Noida', 'CS', '61', '100', '0')
(3206, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(3207, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(3208, 'Syracuse University', '4', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0')
(3209, 'Syracuse University', '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2015', '162', '151', '313', '3.5', '105', 'Kurukshetra University', 'Information Technology', '61.4', '100', '31')
(3210, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4.5', '108', 'COEP', 'Electrical Engineering', '6.54', '10', '9')
(3211, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '390', '1090', '4', '103', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '60', '100', '0')
(3212, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0')
(3213, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0')
(3214, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '780', '440', '1220', '3', '98', 'MU', 'Electronics and telecommunication', '53', '100', '0')
(3215, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0')
(3216, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0')
(3217, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '139', '302', 'None', '81', 'MU', 'Computer Engineering', '64', '100', '0')
(3218, 'Syracuse University', '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0')
(3219, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0')
(3220, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0')
(3221, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(3222, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0')
(3223, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0')
(3224, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(3225, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '152', '149', '301', '3.5', '82', 'Goa University', 'Electronics & Telecom', '69', '100', '0')
(3226, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '149', '303', '3', '98', 'Biju Patnaik University of Technology', 'Applied Electronics & Instrumentation', '7.827', '10', '48')
(3227, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '153', '313', '3', '103', 'Gujarat Technological University', 'ECE', '3.42', '4', '0')
(3228, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '4', '109', 'NIT Tirchy', 'Computer Science and Engineering', '6.82', '10', '19')
(3229, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '480', '1250', '2.5', '96', 'MU', 'information technology', '5.7', '100', '0')
(3230, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '4', '105', 'University of Pune', 'Information Technology', '55.36', '100', '0')
(3231, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2013', '158', '151', '309', '3', '102', 'VIT', 'CSE', '7.87', '10', '0')
(3232, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '149', '312', '3', '94', 'MU', 'Information Technology', '62', '100', '0')
(3233, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '146', '303', '3.5', '97', 'University of Mumbai', 'Information Technology', '0', '0', '0')
(3234, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0')
(3235, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '159', '318', '3', '106', 'JNTU', 'CS', '58', '100', '0')
(3236, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '151', '146', '297', '3', '85', 'VIIT', 'Computer Engg', '59', '100', '0')
(3237, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '140', '298', '2.5', '84', 'Kurukshetra University', 'Computer Science engineering', '67', '100', '0')
(3238, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '109', 'MU', 'Information Technology', '62', '100', '0')
(3239, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0')
(3240, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '159', '144', '303', '2.5', '7', 'Amrita School of Engineering', 'Electronics and communication', '6.47', '10', '0')
(3241, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '144', '304', '4', '88', 'RGMCET', 'CSE', '73.8', '100', '0')
(3242, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(3243, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0')
(3244, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(3245, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0')
(3246, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0')
(3247, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '155', '152', '307', '3.5', '110', 'UMIT SNDT UNIVERSITY', 'ELECTRONICS AND COMMUNICATION', '6.83', '10', '0')
(3248, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0')
(3249, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0')
(3250, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0')
(3251, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0')
(3252, 'Syracuse University', '4', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0')
(3253, 'Syracuse University', '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2011', '740', '310', '1050', '3', '84', 'Saveetha Engineering College', 'Information Technology', '73', '100', '0')
(3254, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0')
(3255, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39')
(3256, 'Syracuse University', '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0')
(3257, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0')
(3258, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0')
(3259, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0')
(3260, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(3261, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(3262, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '440', '1200', '3', '88', 'Coimbatore Insitute of Technology', 'Computer Science and engineering', '7.23', '10', '0')
(3263, 'Syracuse University', '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '150', '309', '2.5', '94', 'SVITS', 'Electronics & Communication', '70', '100', '0')
(3264, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0')
(3265, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '430', '1230', '3.5', '97', 'Amrita School of Engineering', 'computer science', '6.43', '10', '0')
(3266, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(3267, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '102', 'NIT Surat', 'Computer Engineeing', '7.61', '10', '0')
(3268, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0')
(3269, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0')
(3270, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0')
(3271, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '750', '470', '1220', '3', '102', 'IET DAVV', 'ELECTRONICS', '67', '100', '0')
(3272, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '163', '153', '316', '4', '114', 'MU', 'Electrical Engineering', '60', '100', '0')
(3273, 'Syracuse University', '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2015', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '51')
(3274, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0')
(3275, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0')
(3276, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0')
(3277, 'Syracuse University', '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0')
(3278, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43')
(3279, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0')
(3280, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0')
(3281, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0')
(3282, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0')
(3283, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0')
(3284, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(3285, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '560', '1270', '3', '94', 'MU', 'computer', '63', '100', '0')
(3286, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '580', '1380', '4.5', '104', 'MU', 'Computer Engineering', '59.86', '100', '0')
(3287, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '450', '1200', '3.5', '85', 'PICT', 'Computer Engineering', '0', '0', '0')
(3288, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24')
(3289, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36')
(3290, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '156', '146', '302', '3.5', '101', 'Sapthagiri College of Engineering', 'Computer Science', '76.13', '100', '26')
(3291, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0')
(3292, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42')
(3293, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(3294, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '520', '1280', '3', '97', 'Institute of Engineering & Technology DAVV Indore', 'Computer Engineering', '77', '100', '0')
(3295, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0')
(3296, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0')
(3297, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0')
(3298, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0')
(3299, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0')
(3300, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0')
(3301, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0')
(3302, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0')
(3303, 'Syracuse University', '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0')
(3304, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '430', '1190', '3.5', '111', 'JNTU', 'Computer Science', '70', '100', '0')
(3305, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0')
(3306, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0')
(3307, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0')
(3308, 'Syracuse University', '4', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0')
(3309, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '3.5', '102', 'VTU', 'Computer Science and Engineering', '71', '100', '0')
(3310, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0')
(3311, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(3312, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '3', '99', 'VTU', 'Information Science', '70', '100', '0')
(3313, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', 'None', 'None', 'CMRIT', 'IT', '63', '100', '0')
(3314, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '710', '370', '1080', '3', '102', 'Sree Sastha Institute of Engineering and Technology', 'Computer Science and Engineering', '75.29', '100', '0')
(3315, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '4', '109', 'MU', 'Computer Science', '61.6', '100', '0')
(3316, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '740', '510', '1250', '4', '104', 'MU', 'computer science', '55', '100', '0')
(3317, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0')
(3318, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '3.5', 'None', 'GITAM', 'Computer Science and Engineering', '7.9', '10', '0')
(3319, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '710', '410', '1120', '3', '108', 'MU', 'Information Technology', '58', '100', '0')
(3320, 'Syracuse University', '4', 'Reject', 'MS', 'Textile Science & Technology', 'Fall ', '2013', '152', '149', '301', '3', '101', 'Anna University', 'textile', '8.24', '10', '0')
(3321, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '670', '500', '1170', '2.5', '89', 'Pune University', 'Computer Engineering', '62.4', '100', '0')
(3322, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0')
(3323, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '155', '145', '300', '3', '99', 'Osmania University', 'EEE', '66', '100', '0')
(3324, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0')
(3325, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(3326, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0')
(3327, 'Syracuse University', '4', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57')
(3328, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0')
(3329, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '410', '1100', '3', 'None', 'RAIT', 'Computer Engineering', '65', '100', '0')
(3330, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24')
(3331, 'Syracuse University', '4', 'Reject', 'MS', 'CS/MIS', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'None', 'Computer Engineering', '6.85', '10', '0')
(3332, 'Syracuse University', '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42')
(3333, 'Syracuse University', '4', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2014', '158', '149', '307', '2.5', '93', 'MU', 'IT', '58', '100', '0')
(3334, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0')
(3335, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(3336, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(3337, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '150', '312', '3.5', '96', 'Narsee Monjee Institute of Management studies', 'Computer Science', '3.1', '4', '0')
(3338, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12')
(3339, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '480', '1210', '3.5', '108', 'VTU', 'Information Science', '67.2', '100', '0')
(3340, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49')
(3341, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60')
(3342, 'Syracuse University', '4', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0')
(3343, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0')
(3344, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '98', 'B M S College of Engineering', 'CS', '8.28', '10', '0')
(3345, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', 'None', '97', 'JNTU', 'CSE', '65', '100', '0')
(3346, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0')
(3347, 'Syracuse University', '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '146', '302', '4', '115', 'Anna University', 'Biomedical Engineering', '65', '100', '0')
(3348, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0')
(3349, 'Syracuse University', '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0')
(3350, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '770', '480', '1250', '3.5', '109', 'MU', 'Computer Engineering', '0', '0', '0')
(3351, 'Syracuse University', '4', 'Reject', 'MS', 'None', 'Fall ', '2012', '158', '149', '307', '3.5', '99', 'None', '0', '6.6', '100', '0')
(3352, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0')
(3353, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0')
(3354, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0')
(3355, 'Syracuse University', '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0')
(3356, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0')
(3357, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24')
(3358, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(3359, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '610', '500', '1110', '4.5', '293', 'K J Somaiya College of Engiineering', 'Computer', '61', '100', '0')
(3360, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0')
(3361, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0')
(3362, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0')
(3363, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3364, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0')
(3365, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3', '93', 'RGTU', 'Computer Science', '76', '100', '0')
(3366, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0')
(3367, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '340', '1050', '3', '92', 'Pune University', 'IT', '73', '100', '0')
(3368, 'Syracuse University', '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '2.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0')
(3369, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0')
(3370, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0')
(3371, 'Syracuse University', '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(3372, 'Syracuse University', '4', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '153', '151', '304', '3', '107', 'Gvp College Of Engineering', 'Information Technology', '77', '100', '0')
(3373, 'Syracuse University', '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2012', '159', '143', '302', '3.5', '85', '-1', 'ECE', '79', '100', '0')
(3374, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '630', '1390', '4.5', '115', 'Anna University', 'EE', '82', '100', '0')
(3375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '153', '323', '3.5', '105', 'CoE Trivandrum', 'CSE', '7.9', '10', '0')
(3376, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '158', '322', '4', '108', 'TSEC', 'Information Technology', '64.2', '100', '0')
(3377, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '169', '151', '320', '3', '101', 'NIET', 'ECE', '71', '100', '0')
(3378, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24')
(3379, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0')
(3380, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '170', '150', '320', '3', '100', 'IIIT Gwalior', 'Information Technology', '7', '10', '21')
(3381, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '155', '325', '4', '118', 'M.S.U.', 'Electronics engineering', '3.98', '4', '0')
(3382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0')
(3383, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '160', '150', '310', '3', 'None', 'VIT', 'Civil', '8.69', '10', '0')
(3384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(3385, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'R V College of Engineering', 'INFORMATION TECHNOLOGY', '8.39', '10', '0')
(3386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '590', '1290', '2', '102', 'National Institute Of Engineering', 'Computer Science', '8.86', '10', '0')
(3387, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', '98', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunications', '8.77', '10', '0')
(3388, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '148', '311', '3', '98', 'SPCE', 'Electrical', '76', '100', '0')
(3389, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3390, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0')
(3391, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0')
(3392, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0')
(3393, 'Arizona State University', '6', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48')
(3394, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '147', '312', '3.5', '96', 'IIT Patna', 'Electrical Engineering', '8.62', '10', '0')
(3395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '150', '314', '4', '102', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.968', '10', '0')
(3396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0')
(3397, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '400', '1200', '3.5', '102', 'NIT-K Surathkal', 'Electrical', '8.1', '10', '0')
(3398, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall', 'None', '161', '151', '312', '4.5', 'None', 'None', '0', '0', '0', '0')
(3399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0')
(3400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '4.5', '114', 'UPTU', 'CSE', '70.8', '100', '0')
(3401, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '95', 'Acharya Nagarjuna University', 'cse', '87.6', '100', '0')
(3402, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '103', 'WBUT', 'Mechanical', '8.38', '10', '0')
(3403, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6')
(3404, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0')
(3405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63')
(3406, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '150', '320', '3.5', '102', 'NIT Rourkela', 'Electronics And Communication Engg', '9.06', '10', '40')
(3407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '145', '311', '3', '95', 'IP University Delhi', 'Information Technology', '73.4', '100', '24')
(3408, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0')
(3409, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0')
(3410, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0')
(3411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0')
(3412, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '108', 'Anna University', 'Computer Science', '8.6', '10', '0')
(3413, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '680', '1470', '3.5', '105', 'Manipal Institue of Technology', 'ECE', '7.08', '10', '0')
(3414, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '101', 'B M S College of Engineering', 'Computer Science', '9.5', '10', '33')
(3415, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0')
(3416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '410', '1210', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.01', '10', '0')
(3417, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0')
(3418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24')
(3419, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0')
(3420, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '790', '360', '1150', '3', '102', 'VIT Pune', 'Electronics', '9', '10', '0')
(3421, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0')
(3422, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '156', '318', '3', '101', 'Pune University', 'INDUSTRIAL ENGG.', '8.49', '10', '0')
(3423, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0')
(3424, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0')
(3425, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0')
(3426, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2015', '154', '148', '302', '3', '92', 'Chhattisgarh Swami Vivekanand Technical University', 'Civil', '7.7', '10', '12')
(3427, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0')
(3428, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0')
(3429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0')
(3430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '4', '110', 'IIIT Hyderabad', 'Information Technology', '8.9', '10', '29')
(3431, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '104', 'VTU', 'Electrical & Electronics', '69', '100', '27')
(3432, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3433, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '157', '324', '4', '114', 'SRM', 'EEE', '8.5', '10', '0')
(3434, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '310', '1060', '3', '90', 'Dharamsinh Desai University', 'Electronics and Communications', '68', '100', '0')
(3435, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '4', '100', 'VTU', 'Electronics & Communications', '78.38', '100', '0')
(3436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0')
(3437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4', '103', 'R V College of Engineering', 'Telecommunication', '9.01', '10', '0')
(3438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '144', '306', '2', 'None', 'VTU', 'electronics and communication', '87.15', '100', '0')
(3439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3.5', '108', 'VTU', 'Computer Science', '8.45', '10', '0')
(3440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '600', '1380', '3.5', '115', 'VTU', 'Electrical and Electronics Engineering', '77.4', '100', '0')
(3441, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34')
(3442, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0')
(3443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '670', '1470', '2.5', '96', 'VIT University', 'ECE', '8.1', '10', '0')
(3444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0')
(3445, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '146', '305', '3', '104', 'MSRIT', 'Mechanical', '9.66', '10', '0')
(3446, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '152', '313', '4', '111', 'SRM', 'Mechanical', '9.1', '10', '0')
(3447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0')
(3448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3', '100', 'NIT Jamshedpur', 'COMPUTER SCIENCE AND ENGINEERING', '8.4', '10', '0')
(3449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0')
(3450, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '154', '319', '3.5', '105', 'NIT-warangal', 'EEE', '7.01', '10', '27')
(3451, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '165', '152', '317', '3.5', '105', 'VIT', 'School of Electrical Engineering', '8.65', '10', '0')
(3452, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0')
(3453, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0')
(3454, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '510', '1250', '3', 'None', 'Maharashtra Institute of Technology', 'Electronics and telecommunications', '62.12', '100', '0')
(3455, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '154', '318', '3.5', '100', 'NIT Hamirpur', 'Mechanical Engineering', '7.34', '10', '0')
(3456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0')
(3457, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22')
(3458, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '111', 'Nagpur University', 'Computer Tech', '67', '100', '0')
(3459, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2008', '770', '460', '1230', '3.5', '110', 'VIT', 'E&I;', '8.76', '10', '0')
(3460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '770', '390', '1160', '3.5', '107', 'VTU', 'Electronics and Communication', '76.46', '100', '0')
(3461, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'VIT', 'Telecommunication Engineering', '8.17', '10', '0')
(3462, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0')
(3463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0')
(3464, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '88', 'Anna University', 'Electronics and communication enginnering', '8.1', '10', '0')
(3465, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '156', '317', '4', '106', 'Coimbatore Insitute of Technology', 'Computer Science', '9.4', '10', '30')
(3466, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0')
(3467, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'SVCE', 'Electronics and Communication Engineering', '7.7', '10', '0')
(3468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3')
(3469, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0')
(3470, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '147', '312', '3', '105', 'VNIT Nagpur', 'Electrical and Electronics', '8.86', '10', '14')
(3471, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '149', '307', '3', '102', 'Sri Sairam Engineering College', 'CSE', '84', '100', '0')
(3472, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0')
(3473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '105', 'ITME', 'Computer Science Engg', '8.08', '10', '0')
(3474, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '460', '1220', '3', '108', 'Sri Sairam Engineering College', 'Mechanical Engineering', '8.15', '10', '0')
(3475, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.53', '10', '0')
(3476, 'Arizona State University', '6', 'Admit', 'MS', 'renewable energy', 'Fall ', '2015', '160', '154', '314', '4', '114', 'BMSCE', 'ECE', '8.1', '10', '0')
(3477, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '650', '1440', '2.5', '106', 'NIT Jalandhar', 'Civil Engineering', '6.22', '10', '0')
(3478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36')
(3479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'University of Pune', 'Electronics and Telecommunication', '73', '100', '0')
(3480, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '144', '302', '2.5', '81', 'Gujarat Technological University', 'Mechanical Engineeirng', '8.4', '10', '0')
(3481, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0')
(3482, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0')
(3483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0')
(3484, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0')
(3485, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '147', '305', '3', '95', 'JNTU', 'ece', '80', '100', '0')
(3486, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '152', '316', '3', '106', 'IIT Hyderabad', 'Electrical Engineering', '8.5', '10', '0')
(3487, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0')
(3488, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '4', '113', 'VIT Pune', 'Electronics & Telecom', '8.93', '10', '0')
(3489, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0')
(3490, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0')
(3491, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '108', 'BITS Goa', 'Mechanical', '8.56', '10', '0')
(3492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '109', 'MU', 'EnT', '71', '100', '0')
(3493, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'Future Institute of Engineering and Management', 'E.C.E', '7.98', '10', '0')
(3494, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '4', '100', 'ssec anna university', 'cse', '8.1', '10', '0')
(3495, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '106', 'MU', 'Computers', '66', '100', '0')
(3496, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '96', 'MU', 'Information Technology', '71', '100', '42')
(3497, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '3', 'None', 'Anna University', 'Mechanical', '71.33', '100', '0')
(3498, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0')
(3499, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0')
(3500, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '154', '319', '3.5', '103', 'PESIT', 'Mechanical', '9.55', '10', '0')
(3501, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', 'None', 'None', 'COEP', 'Electrical', '6.2', '10', '0')
(3502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3', '103', 'JSS Noida', 'electrical', '65', '100', '0')
(3503, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42')
(3504, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'NIT Surat', 'Computer Engg.', '7.54', '10', '0')
(3505, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'COEP', 'mechanical engineering', '7.98', '10', '6')
(3506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '144', '310', '3.5', '110', 'Pune University', 'Computer Engineerinmg', '9.17', '10', '0')
(3507, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '94', 'GITAM', 'ECE', '79.1', '100', '0')
(3508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0')
(3509, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24')
(3510, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '116', 'University of Mumbai', 'EXTC', '72.48', '100', '0')
(3511, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '540', '1300', '3.5', '102', 'VJTI', 'Information Technology', '8.4', '10', '0')
(3512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0')
(3513, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '4', '104', 'VTU', 'Information Science and engineering', '78', '100', '0')
(3514, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '153', '314', '4.5', '103', 'PESIT', 'Mechanical Engineering', '8.57', '100', '0')
(3515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'Manipal Institue of Technology', 'ECE', '9.7', '10', '0')
(3516, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '720', '1510', '4.5', 'None', 'NIT Durgapur', 'Computer Science and Engineering', '8.28', '10', '0')
(3517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0')
(3518, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '164', '151', '315', '5', '110', 'None', 'Biomedical Engg', '8.1', '10', '0')
(3519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '153', '316', '4', '114', 'Anna University', 'EEE', '9.25', '10', '12')
(3520, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', 'None', 'VJTI', 'computer science', '8.4', '10', '0')
(3521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0')
(3522, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '163', '326', '4.5', '112', 'None', '0', '0', '0', '0')
(3523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '149', '314', '4', '106', 'IIITDM Kancheepuram', 'Computer Engineering', '8.61', '10', '0')
(3524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '167', '322', '3.5', '102', 'NIT Hamirpur', 'Electrical Engg', '7.38', '10', '56')
(3525, 'Arizona State University', '6', 'Admit', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0')
(3526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0')
(3527, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0')
(3528, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0')
(3529, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '147', '311', '3', '102', 'PICT', 'EnTC', '3', '4', '0')
(3530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '550', '1350', '4.5', '109', 'K J Somaiya College of Engiineering', 'computer', '72', '100', '0')
(3531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0')
(3532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '3.5', '114', 'Osmania University', 'IT', '73', '100', '0')
(3533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '167', '149', '316', '3', '98', 'NIT Hamirpur', 'Computer Science and Engineering', '8.11', '10', '0')
(3534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0')
(3535, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0')
(3536, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0')
(3537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '147', '312', '3', '91', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICAION', '9.48', '10', '0')
(3538, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '90', 'JSS Noida', 'INDUSTRIAL ENGINEERING AND MANAGEMENT', '71.4', '100', '16')
(3539, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0')
(3540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '97', 'IIIT Hyderabad', 'Computer Science', '8.22', '10', '0')
(3541, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '105', 'SASTRA', 'ICT', '9.11', '10', '0')
(3542, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0')
(3543, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '400', '1200', '3.5', '108', 'YCCE', 'Electronics and Telecommunication', '78.91', '100', '0')
(3544, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0')
(3545, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '640', '1430', '5', '117', 'PESIT', 'Electronics and Communication', '85', '100', '0')
(3546, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0')
(3547, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0')
(3548, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0')
(3549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '580', '1360', '3', '98', 'SRM', 'Mechanical Engineering', '7.74', '10', '0')
(3550, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3551, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0')
(3552, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Spring ', '2015', '164', '148', '312', '3.5', '106', 'Amrita School of Engineering', 'CSE', '7.81', '10', '36')
(3553, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', '111', 'Mahatma Gandhi University Kerala', 'Computer Science And Engineering', '75', '100', '0')
(3554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0')
(3555, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '95', 'CEG', 'Computer Science', '8.33', '10', '60')
(3556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '99', 'Northern India Engg College (GGSIPU)', 'Information Technology', '77.45', '100', '29')
(3557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2013', '770', '440', '1210', '3', '97', 'Valliammai Engineering College', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '8.59', '10', '0')
(3558, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '160', '146', '306', '3.5', '101', 'Osmania University', 'Mechanical(Industrial Production Engineering)', '70', '100', '0')
(3559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '450', '1230', '3', '92', 'SASTRA', 'ECE', '7.39', '10', '0')
(3560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '3.5', '108', 'Walchand College Of Engineering', 'Computer Science and Engg', '7.5', '10', '0')
(3561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30')
(3562, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '350', '1150', '3.5', '273', 'Anna University', 'Electronics and Communication', '78', '100', '0')
(3563, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '570', '1320', '3.5', '97', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '8.47', '10', '0')
(3564, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0')
(3565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0')
(3566, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3567, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0')
(3568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0')
(3569, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '106', 'Chaitanya Bharathi Institute of Technology', 'MECHANICAL', '83.91', '100', '0')
(3570, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '3', '110', 'VJTI', 'Computer', '8.1', '10', '0')
(3571, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30')
(3572, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '161', '320', '3.5', '113', 'West Bengal University Of Technology', 'ECE', '8.7', '10', '0')
(3573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '148', '304', '3', '101', 'PICT', 'Information Technology', '3.63', '4', '0')
(3574, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '550', '1330', '3.5', '103', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '0')
(3575, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0')
(3576, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '3.5', '115', 'Biju Patnaik University of Technology', 'Electronics and Telecommunication', '9.07', '10', '0')
(3577, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '770', '460', '1230', '1230', '270', 'VTU', 'Instrumentation Technology', '82.4', '100', '0')
(3578, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0')
(3579, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0')
(3580, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4', '111', 'SASTRA', 'Information Technology', '7.99', '10', '0')
(3581, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '103', 'IIT Guwahati', 'Mechaanical', '8.6', '10', '3')
(3582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '148', '307', '3', '307', 'Osmania University', 'CSE', '85', '100', '0')
(3583, 'Arizona State University', '6', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(3584, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '110', 'NITK Surathkal', 'Computer Engineering', '0', '0', '0')
(3585, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0')
(3586, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '168', '152', '320', '3.5', '106', 'None', '0', '8.56', '10', '0')
(3587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(3588, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0')
(3589, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(3590, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '3', '106', 'NIT Calicut', 'ECE', '8.34', '10', '0')
(3591, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0')
(3592, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '157', '320', '3', '97', 'YMCA', 'Electronics & Instrumentation & Control', '8.44', '10', '36')
(3593, 'Arizona State University', '6', 'Admit', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '680', '620', '1300', '4.5', '115', 'Mahrishi Dayanand University', 'Instrumentation and controls engg.', '69.58', '100', '0')
(3594, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'Panjab University', 'Dr SSB university Inst. of Chemical Engg. and Tech.', '9.098', '10', '0')
(3595, 'Arizona State University', '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(3596, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '108', 'Delhi College Of Engineeing', 'Mechanical Engineering', '74.33', '100', '0')
(3597, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '143', '309', '3', '92', 'VTU', 'Electronics and Communication', '87', '100', '0')
(3598, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '800', '620', '1420', '3.5', '103', 'MSRIT', 'Mechanical', '9.34', '10', '0')
(3599, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0')
(3600, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '480', '1240', 'None', '113', 'GGSIPU', 'Mechanical and Automation', '0', '0', '0')
(3601, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0')
(3602, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '101', 'IP University Delhi', 'Computer Science', '83', '100', '0')
(3603, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '510', '1280', '4.5', '273', 'Atharva College', 'Computer Engineering', '60.11', '100', '0')
(3604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6')
(3605, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(3606, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0')
(3607, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0')
(3608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0')
(3609, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0')
(3610, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '159', '151', '310', '3', '99', 'GGSIPU', 'Chemical Engineering', '72.53', '100', '26')
(3611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '148', '316', '3', '102', 'VIT', 'ECE', '9.14', '10', '0')
(3612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0')
(3613, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '660', '1410', '4', '113', 'NIT', 'computer', '8.92', '10', '0')
(3614, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24')
(3615, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0')
(3616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0')
(3617, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4.5', '100', 'Chandigarh Engineering College Landran', 'Information Technology', '73', '100', '0')
(3618, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0')
(3619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '114', 'VTU', 'CSE', '74.6', '100', '24')
(3620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(3621, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12')
(3622, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '620', '1360', '3.5', '104', 'MU', 'Mechanical', '59.29', '100', '0')
(3623, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4.5', '112', 'GITAM', 'Civil engineering', '7.48', '10', '0')
(3624, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '317', '155', '472', '3', '106', 'MS uni', 'electronics', '3.91', '4', '0')
(3625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16')
(3626, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0')
(3627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'University of Kerala', 'Electrical & Electronics Engineering', '9.06', '10', '0')
(3628, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '147', '311', '2.5', '99', 'Osmania University', 'mechanical engineering', '8.3', '10', '0')
(3629, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0')
(3630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0')
(3631, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0')
(3632, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0')
(3633, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '94', 'CVRCE', 'ECE', '84', '100', '0')
(3634, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0')
(3635, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '151', '314', '3.5', '116', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0')
(3636, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '142', '303', '3.5', '95', 'VTU', 'CS', '8.57', '10', '0')
(3637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0')
(3638, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0')
(3639, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '161', '328', '4', '108', 'IIT Kharagpur', 'Industrial Engineering', '8.09', '10', '0')
(3640, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '560', '1360', '4.5', '111', 'None', '0', '0', '0', '0')
(3641, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0')
(3642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0')
(3643, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '165', '322', '4', '110', 'PESIT', 'CSE', '8.34', '10', '0')
(3644, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0')
(3645, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '630', '1380', '3', '97', 'University of Enngineering and Technology Taxila', 'Electrical', '90.5', '100', '0')
(3646, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '154', '322', '4', '112', 'VTU', 'Computer Science', '70', '100', '45')
(3647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '277', 'PESIT', 'EC', '77', '100', '0')
(3648, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '440', '1180', '3', '103', 'Anna University', 'ece', '82', '100', '0')
(3649, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0')
(3650, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '107', 'NIT Nagpur', 'Metallurgy and Material Science', '8.86', '10', '0')
(3651, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '115', 'K J Somaiya College of Engiineering', 'Computer Science', '74.5', '100', '0')
(3652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0')
(3653, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '740', '520', '1260', 'None', '86', 'BMSCE', 'E&C;', '79.45', '100', '0')
(3654, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0')
(3655, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48')
(3656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '4', '109', 'WBUT', 'CSE', '8.18', '10', '62')
(3657, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3.5', '104', 'VTU', 'Computer Science', '76', '100', '0')
(3658, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '710', '510', '1220', '4', '270', 'Punjab Technical University', 'PRODUCTION ENGINEERING', '76', '100', '0')
(3659, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '530', '1300', '4', '93', 'Punjab Engineering College', 'Mechanical Engineering', '8.04', '10', '0')
(3660, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '155', '315', '4', '101', 'Guru Gobind Singh Indraprashta University', 'Mechanical & Automation Engineering', '75', '100', '0')
(3661, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '4', '107', 'WBUT', '0', '7.7', '10', '0')
(3662, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '154', '322', '3', '103', 'Institute of Engineering & Management', 'Computer Science & Engineering', '8.2', '10', '0')
(3663, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '94', 'Uttarakhand Technical University', 'Computer Science Engineering', '75.2', '100', '0')
(3664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0')
(3665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0')
(3666, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0')
(3667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15')
(3668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0')
(3669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', 'None', 'SSN College of Engineering', 'CSE', '77.3', '100', '0')
(3670, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '113', 'The LNM Institute of Information Technology', 'Electrocnics and Communication', '9.2', '10', '0')
(3671, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0')
(3672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24')
(3673, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science', 'Fall ', '2015', '166', '151', '317', '3', '108', 'BITS Pilani', 'Mechanical &Physics;', '6.26', '10', '0')
(3674, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0')
(3675, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0')
(3676, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '800', '540', '1340', '3', '106', 'RTM Nagpur University', 'Electronics', '73.63', '100', '0')
(3677, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '440', '1200', '4', '107', 'Rajarshi Shahu College of Enginneering', 'Computer Science', '66', '100', '0')
(3678, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0')
(3679, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0')
(3680, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0')
(3681, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '159', '327', '3.5', '115', 'Anna University', 'Electronics and Communication Engineering', '7.9', '10', '0')
(3682, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0')
(3683, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0')
(3684, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51')
(3685, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', '3.5', '104', 'MNMJEC', 'CSE', '8.48', '10', '0')
(3686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', 'None', 'SASTRA', 'ICT', '7.17', '100', '0')
(3687, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0')
(3688, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0')
(3689, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Summer ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3690, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0')
(3691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', 'None', 'CEG', 'Computer Science', '8.59', '10', '0')
(3692, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3.5', 'None', "St Joseph's College of Engineering", 'electronics and instrumentation engg', '8.92', '10', '0')
(3693, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '510', '1200', '4', '102', 'PESIT', 'CS', '0', '0', '0')
(3694, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '145', '302', '3.5', '103', 'VIT University', 'Computer Science & Engineering', '7.85', '10', '0')
(3695, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '146', '307', 'None', '95', 'Govt. College of Engg Amravati(Autonomous Institute)', 'Computer Science & Engineering', '7.99', '10', '0')
(3696, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0')
(3697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '153', '317', '3', '102', 'DSCE', 'CS', '77', '100', '0')
(3698, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '159', '324', '4', '112', 'Maharaja Sayajirao University Of Baroda', 'Computer Science and Engineering', '3.74', '4', '0')
(3699, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '680', '470', '1150', '3.5', '99', 'Anna University', 'EIE', '80', '100', '0')
(3700, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0')
(3701, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0')
(3702, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '154', '322', '3.5', '108', 'VTU', 'Electronics and Communication', '85', '100', '0')
(3703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0')
(3704, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3', '110', 'University of Pune', 'Computer Science', '66.81', '100', '0')
(3705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '101', 'Goa University', 'Information Technology', '74', '100', '0')
(3706, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '4', '105', 'Coimbatore Insitute of Technology', 'EEE', '8.4', '10', '0')
(3707, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '113', 'SJCE', 'EEE', '74', '100', '0')
(3708, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0')
(3709, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0')
(3710, 'Arizona State University', '6', 'Admit', 'MS', 'MSIM', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3711, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'JNTU', 'CS', '76', '100', '0')
(3712, 'Arizona State University', '6', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0')
(3713, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0')
(3714, 'Arizona State University', '6', 'Admit', 'MS', 'ASTRONOMY / ASTROPHYSICS', 'Fall ', '2013', '780', '610', '1390', 'None', '112', 'Univ of Mumbai', 'Mech. Eng.', '0', '0', '0')
(3715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '600', '1330', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.73', '10', '0')
(3716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0')
(3717, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '580', '1280', '3.5', '108', 'SSN College of Engineering', 'Computer Science', '78.5', '100', '0')
(3718, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0')
(3719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0')
(3720, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0')
(3721, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '510', '1310', '4', '270', 'Kerala University', 'Electronics and Communication', '79', '100', '0')
(3722, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16')
(3723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3', '110', 'NIT Silchar', 'Computer Science', '7.52', '10', '0')
(3724, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0')
(3725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0')
(3726, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0')
(3727, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0')
(3728, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0')
(3729, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3730, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '91', 'CBIT', 'Computer Science', '84.3', '100', '12')
(3731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '151', '315', '4', 'None', 'None', 'CS', '9.26', '10', '0')
(3732, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0')
(3733, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0')
(3734, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '143', '305', '3.5', '99', 'GITAM', 'ECE', '8.74', '10', '0')
(3735, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '152', '320', '3.5', '113', 'PSG College of Technology', 'MEchanical', '8.4', '10', '4')
(3736, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0')
(3737, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0')
(3738, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '112', 'BITS Pilani', 'Electronics and Instrumentation', '7.76', '10', '0')
(3739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1')
(3740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0')
(3741, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '790', '430', '1220', '3', '93', 'VIT University', 'ECE', '8.62', '10', '0')
(3742, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0')
(3743, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '104', 'SRM', 'Electronics and Communication', '7.72', '10', '35')
(3744, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '149', '312', '2.5', '91', 'Institute of Technology Nirma University', 'Computer Science', '7.49', '10', '0')
(3745, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '90', 'VJTI', 'Mechanical', '8', '10', '0')
(3746, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0')
(3747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '151', '313', '4', '109', 'Anna University', 'IT', '7.92', '10', '0')
(3748, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48')
(3749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0')
(3750, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0')
(3751, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'CS', '77', '100', '0')
(3752, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3', '93', 'SLC', 'ECE', '84.2', '100', '0')
(3753, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2011', '800', '500', '1300', '3.5', '100', 'West Bengal University Of Technology', 'ECE', '8.53', '10', '0')
(3754, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'SSN College of Engineering', 'Biomedical Engineering', '8.38', '10', '0')
(3755, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0')
(3756, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24')
(3757, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0')
(3758, 'Arizona State University', '6', 'Admit', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0')
(3759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0')
(3760, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0')
(3761, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '4', '113', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(3762, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '150', '316', '3.5', 'None', 'NITK Surathkal', '0', '8.73', '10', '0')
(3763, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '108', 'VTU', 'Computer Science', '78', '100', '0')
(3764, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '560', '1290', '4', '115', 'SSN College of Engineering', 'ECE', '80', '100', '0')
(3765, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0')
(3766, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '100', 'Anna University', 'Electronics and Communication', '81.74', '100', '0')
(3767, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '109', 'NIT Karnataka', 'Electrical and Electronics', '7.81', '10', '0')
(3768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '105', 'Sathyabama University', 'Mechanical Engineering', '7.456', '10', '0')
(3769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '104', 'Anna University', 'IT', '6.82', '10', '24')
(3770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '151', '318', 'None', '98', 'BITS Pilani', 'EEE', '6.92', '10', '0')
(3771, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36')
(3772, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0')
(3773, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '165', '149', '314', '3', '91', 'BITS Goa', 'EEE', '6.43', '10', '0')
(3774, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3775, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '102', 'Coimbatore Insitute of Technology', 'CSE', '8.6', '10', '20')
(3776, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'BITS Pilani', 'Electrical and Electronics', '7.95', '10', '0')
(3777, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '610', '1410', '4.5', '277', 'Crescent Engineering College', 'ECE', '84.5', '100', '0')
(3778, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0')
(3779, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '157', '318', '3', '103', 'Anna University', 'Mechanical Engineering', '8.31', '10', '0')
(3780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0')
(3781, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '3', '100', 'NIT Warangal', 'Mechanical', '8.08', '10', '0')
(3782, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', '108', 'IIT Guwahati', '0', '0', '0', '0')
(3783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '3', '102', 'VIT University', 'BTECH/CSE', '8.94', '10', '0')
(3784, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '4', '105', 'VTU', 'CSE', '74.5', '100', '0')
(3785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '146', '307', '3', '93', 'VIT', 'ece', '7.23', '10', '18')
(3786, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0')
(3787, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(3788, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '165', '152', '317', '3', '102', 'SASTRA', 'ECE', '8.18', '10', '0')
(3789, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0')
(3790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0')
(3791, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0')
(3792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '4', '104', 'Kakatiya University', 'ECE', '74', '100', '0')
(3793, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '108', 'Gujarat Technological University', 'Electrical Engineering', '8.2', '10', '0')
(3794, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0')
(3795, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0')
(3796, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'VTU', 'Electronics and Communication', '8.74', '10', '0')
(3797, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0')
(3798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0')
(3799, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '146', '306', '3', 'None', 'None', 'ECE', '74', '100', '0')
(3800, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Summer ', '2015', '165', '148', '313', '2.5', '101', 'MU', 'Telecommunication', '66', '100', '49')
(3801, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0')
(3802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0')
(3803, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '106', 'NIT Nagpur', 'Civil', '7.5', '10', '0')
(3804, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cochin University of Science and Technology', 'Computer Science', '82.8', '100', '42')
(3805, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0')
(3806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '4', '108', 'NIT Nagpur', 'Electrical and Electronics', '8.25', '10', '0')
(3807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Engineering', '8.82', '10', '0')
(3808, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '149', '317', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.31', '10', '0')
(3809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0')
(3810, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0')
(3811, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '490', '1280', '3.5', '97', 'MU', 'Computer science', '70', '100', '0')
(3812, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0')
(3813, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.95', '10', '0')
(3814, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '98', 'IEM/WBUT', 'CSE', '8.65', '100', '0')
(3815, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0')
(3816, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '4', '110', 'VJTI', '0', '0', '0', '20')
(3817, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0')
(3818, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'VTU', 'Electrical and Electronics Engineering', '70', '100', '42')
(3819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0')
(3820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '4.5', '111', 'SSN College of Engineering', 'CSE', '8.25', '10', '0')
(3821, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0')
(3822, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0')
(3823, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0')
(3824, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '151', '312', '4', '98', 'BITS Pilani', 'computer science', '7.08', '10', '0')
(3825, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0')
(3826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', 'None', '102', 'CoE Trivandrum', 'Computer Science', '83', '100', '0')
(3827, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0')
(3828, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '142', '303', '3.5', '101', 'College of Technology Pantnagar', 'production engineering', '7.15', '10', '0')
(3829, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0')
(3830, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '1330', '540', '1870', '3', '89', 'VESIT', 'E & TC', '75', '100', '0')
(3831, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0')
(3832, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0')
(3833, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0')
(3834, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '148', '311', 'None', '103', 'RNSIT', 'Electronics and Communicati', '80', '100', '0')
(3835, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '4', '107', 'None', '0', '90', '100', '0')
(3836, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36')
(3837, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0')
(3838, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '162', '158', '320', '4', '116', 'Sardar Patel College of Engineering', 'Information Technology', '65.36', '100', '28')
(3839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '94', 'Sir MVIT', 'Information Science', '70', '100', '0')
(3840, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0')
(3841, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0')
(3842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4.5', '98', 'CoE Trivandrum', 'CSE', '78', '100', '0')
(3843, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0')
(3844, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '148', '312', '3.5', '96', 'NIT ALLAHABAD', 'Electrical Engineering', '9.05', '10', '0')
(3845, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0')
(3846, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '91', 'NIT Rourkela', 'CIVIL ENGINEERING', '7.81', '10', '0')
(3847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '4.5', '114', 'BIT Mesra', 'Computer Science Engineering', '7.5', '10', '30')
(3848, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'GITAM', 'Electrical and Electronics', '3.95', '4', '0')
(3849, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0')
(3850, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0')
(3851, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '163', '148', '311', '3', '96', 'MSRIT', 'CSE', '8.71', '10', '0')
(3852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '91', 'Anna University', 'Computer Science', '8.17', '10', '30')
(3853, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0')
(3854, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '580', '1330', '3', '101', 'Pune University', 'Electonics and telecommunication', '72', '100', '0')
(3855, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0')
(3856, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '149', '316', '4', '96', 'Mahatma Gandhi University Kerala', 'MECHANICAL ENGINEERING', '7.42', '10', '0')
(3857, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '162', '151', '313', '3', '91', 'Anna University', 'Mechanical', '7.26', '10', '30')
(3858, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22')
(3859, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0')
(3860, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '142', '305', '3.5', '100', 'NIT Allahabad', 'Mechanical', '9.11', '10', '0')
(3861, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '165', '147', '312', '3.5', '100', 'Lakshmi Narain College of Technology', 'Computer Science and Engineering', '74.75', '100', '52')
(3862, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '620', '1410', '3.5', '118', 'Anna University', 'EEE', '81', '100', '0')
(3863, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '750', '600', '1350', '3.5', '113', 'Anna University', 'EEE', '8.274', '10', '0')
(3864, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '146', '303', '3', '107', 'RNSIT', 'Electronics and communication', '76.5', '100', '0')
(3865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0')
(3866, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0')
(3867, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '48', '32', '80', '5.5', '113', 'University of Pune', 'ENTC', '0', '0', '0')
(3868, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24')
(3869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0')
(3870, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '49', '35', '84', '6', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.13', '10', '0')
(3871, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '460', '1170', '3', '101', 'VTU', 'CSE', '80.5', '100', '0')
(3872, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '151', '313', '4', '109', 'VTU', 'ECE', '77', '100', '0')
(3873, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0')
(3874, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '720', '1460', '6', '293', 'NITK Surathkal', 'EnC', '88', '100', '0')
(3875, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0')
(3876, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4.5', '111', 'Sir MVIT', 'Info Science', '79.82', '100', '0')
(3877, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '3', '108', 'West Bengal University Of Technology', 'ECE', '8.85', '10', '0')
(3878, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '570', '1340', '3', '100', 'WBUT', 'A.E.I.E', '8', '100', '0')
(3879, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0')
(3880, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '145', '306', '3.5', '105', 'R V College of Engineering', 'Mechanical Engineering', '7.65', '10', '0')
(3881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0')
(3882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3.5', '111', 'Sardar Patel College of Engineering', 'Information Technology', '68.2', '100', '17')
(3883, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0')
(3884, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(3885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0')
(3886, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '102', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics Engineering', '8.34', '10', '0')
(3887, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3', '98', 'VIT', 'School of Electronics Engineering', '9.26', '10', '0')
(3888, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '3', '99', 'West Bengal University Of Technology', 'CSE', '7.3', '10', '90')
(3889, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0')
(3890, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '650', '1440', '3', '109', 'SGSITS', 'mechanical', '78', '100', '0')
(3891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4')
(3892, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0')
(3893, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '400', '1200', '4', '112', 'SRM', 'Computer Science', '9.4', '10', '0')
(3894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3', '106', 'WBUT', 'Electrical Engineering', '8.39', '10', '0')
(3895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59')
(3896, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '163', '143', '306', 'None', '104', 'GGSIPU', 'biotechnology', '0', '0', '0')
(3897, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0')
(3898, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '4.5', '110', 'BITS Pilani', 'MECHANICAL', '7.31', '100', '0')
(3899, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0')
(3900, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '630', '1420', '3.5', '117', 'SSN College of Engineering', 'ece', '80', '100', '0')
(3901, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '540', '1310', '4.5', '104', 'UPTU', 'Computer Science', '76', '100', '0')
(3902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '3.5', '95', 'SDM', 'Electrical Engineering', '8.8', '10', '0')
(3903, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'GITAM', 'ECE', '9.72', '10', '0')
(3904, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '154', '322', '3.5', '105', 'NIT Warangal', 'electrical and electronics', '9.43', '10', '0')
(3905, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0')
(3906, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '163', '326', '3.5', '116', 'Institue of Engineering And Management', 'Computer science and Engineering', '9.22', '10', '0')
(3907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(3908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16')
(3909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9')
(3910, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '93', 'VTU', 'Electronics and communication', '79', '100', '0')
(3911, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0')
(3912, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0')
(3913, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '146', '307', '3', '100', 'BMSCE', 'CS', '74.14', '100', '0')
(3914, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '151', '309', '3.5', '107', "Hautes Etudes d'Ingenieur", 'Electrical Engineering', '3.3', '4', '0')
(3915, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '148', '304', '3', 'None', 'RMK Engineering College', 'Electronics and Instrumentation', '8.97', '10', '19')
(3916, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0')
(3917, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0')
(3918, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '4.5', '108', 'VTU', 'IT', '69.7', '100', '0')
(3919, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0')
(3920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '108', 'Pune University', 'E&TC;', '70', '100', '0')
(3921, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '110', 'Kalpataru Institute of Technology', 'Computer Science', '72', '100', '0')
(3922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '107', 'NIT Warangal', 'CIVIL ENGINEERING', '8.45', '10', '0')
(3923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(3924, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '140', '299', '3', 'None', 'SCSVMV University', 'Mechanical engineering', '9.37', '10', '0')
(3925, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '101', 'Charotar University of Science and Technology', 'Information Technology', '7.82', '100', '0')
(3926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0')
(3927, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0')
(3928, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '47', '35', '82', '4.5', '106', 'Bharati Vidyapeeth', 'Chemical Engineering', '68', '100', '0')
(3929, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34')
(3930, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '12', '720', '530', '1250', '3', '101', 'Anna University', 'mechanical', '8.7', '10', '0')
(3931, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '152', '311', '4', '103', 'JNTU', 'ECE', '82.75', '100', '0')
(3932, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '620', '1370', '3.5', '93', 'Anna University', 'ECE', '78', '100', '0')
(3933, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0')
(3934, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '3.5', '95', 'Pune University', 'Mechanical Engineering', '78', '100', '0')
(3935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0')
(3936, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18')
(3937, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(3938, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0')
(3939, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '3', '103', 'MU', 'Electronics', '70.3', '100', '0')
(3940, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '166', '332', '4', '114', 'West Bengal University Of Technology', 'Information Technology', '81.6', '100', '0')
(3941, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '640', '1440', '5', '287', 'SVCE', 'EEE', '85', '100', '0')
(3942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '105', 'VJTI', 'Computer Engineering', '6.4', '10', '29')
(3943, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '390', '800', '1190', '4', '107', 'Gayatri Vidya Parishad College of Engineering', 'Comp Science Engg', '76.67', '100', '0')
(3944, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Spring ', '2016', '167', '155', '322', '4', '114', 'PEC University of Technology', 'Electronics and Electrical Communication', '7.82', '10', '0')
(3945, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '115', 'SASTRA', 'Computer Science', '9.6', '10', '0')
(3946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '111', 'LD Engineering Gujarat University', 'Computer Engineering', '70', '100', '0')
(3947, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '460', '1180', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0')
(3948, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '113', 'Sri Venkateswara College of Engineering', 'Chemical Engg', '8.4', '10', '0')
(3949, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '104', 'VIT', 'BTech-EEE', '8.89', '10', '24')
(3950, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '164', '160', '324', '3.5', '107', 'Manipal Institue of Technology', 'Mechanical & Manufacturing (Mechatronics)', '6.96', '10', '0')
(3951, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0')
(3952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0')
(3953, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '106', 'Coimbatore Insitute of Technology', 'Mechanical Engineering', '8.37', '10', '0')
(3954, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '750', '340', '1090', '2.5', '93', 'Anna University', 'EEE', '79.91', '100', '0')
(3955, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3.5', '110', 'None', '0', '81', '100', '0')
(3956, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '107', 'Crescent Engineering College', 'Electronics & Communication', '0', '0', '0')
(3957, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0')
(3958, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(3959, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '156', '159', '315', '3.5', 'None', 'Chaitanya Bharathi Institute of Technology', 'Biotechnology', '77', '100', '0')
(3960, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '600', '1360', '3.5', '110', 'RIT Shivaji University', 'Mechanical', '74', '100', '0')
(3961, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '170', '165', '335', '4.5', '109', 'None', '0', '70', '100', '0')
(3962, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4', '104', 'COEP', 'Civil Engineering', '7.51', '10', '21')
(3963, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'Manipal Institue of Technology', 'electronics and communication', '8.71', '10', '0')
(3964, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0')
(3965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '590', '1370', '4', '115', 'None', '0', '0', '0', '0')
(3966, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '162', '150', '312', '3.5', '100', 'None', 'Electronics', '9.6', '10', '0')
(3967, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0')
(3968, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '152', '309', '4.5', '111', 'SRM', 'ECE', '9.1', '10', '0')
(3969, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0')
(3970, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3971, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '101', 'Kurukshetra University', 'Computer Science', '3.26', '4', '106')
(3972, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '142', '304', '3.5', '92', 'None', '0', '9.02', '10', '0')
(3973, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '153', '315', '3.5', 'None', 'Manipal Institue of Technology', 'Electronics and Communication Engineering Department', '9.3', '10', '0')
(3974, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '430', '1230', '3', '93', 'DA-IICT', 'Information & Comm. Tech', '8.27', '10', '0')
(3975, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '87', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.57', '10', '0')
(3976, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '148', '315', '3', '82', 'BITS Goa', 'Electrical and Electronics', '8.67', '10', '0')
(3977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0')
(3978, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '151', '314', '4.5', '108', 'SRM', 'Mechatronics', '7.932', '10', '0')
(3979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0')
(3980, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3', '106', 'Indraprastha University', 'Computer Science', '81', '100', '0')
(3981, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '114', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication Engineering', '79.5', '100', '0')
(3982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4')
(3983, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '103', 'Sardar Vallabhbhai National Institute of Technology', 'Civil Engineering', '6.95', '10', '0')
(3984, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0')
(3985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0')
(3986, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '152', '321', '3.5', '105', 'National Institue Of Technology Karnataka Surathkal', 'Computer Engineering', '8.24', '10', '0')
(3987, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '650', '550', '1200', '3', '102', 'MU', 'electrical', '64', '100', '0')
(3988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'VIT University', 'IT', '9.12', '10', '0')
(3989, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0')
(3990, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0')
(3991, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(3992, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '103', 'JNTU', 'EEE', '82', '100', '0')
(3993, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '163', '146', '309', '3.5', '100', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '9.05', '10', '0')
(3994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '151', '315', '3', '92', 'PSG College of Technology', 'ECE', '8.96', '10', '0')
(3995, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '690', '660', '1350', '3', '103', 'Anna University', 'Biomedical Engineering', '84', '100', '0')
(3996, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2011', '720', '490', '1210', '3', '109', 'Anna University', 'Electrical and Electronics Engineering', '85.19', '100', '0')
(3997, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '640', '1430', '4.5', '112', 'Thapar University', 'Electrical Engineering', '9.23', '10', '0')
(3998, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0')
(3999, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '740', '1520', '4.5', 'None', 'NIT Calicut', 'Electronics & Communication', '7.49', '10', '0')
(4000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '159', '148', '307', '3.5', '98', 'Cochin University of Science and Technology', 'Computer Science And Engineering', '68.5', '100', '0')
(4001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '157', '314', '4', '110', 'MU', 'Computer Engineering', '69', '100', '0')
(4002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', 'None', '100', 'NIT Allahabad', 'ECE', '9.08', '10', '36')
(4003, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(4004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '155', '317', '3.5', '104', 'VITU', 'ECE', '7.81', '10', '0')
(4005, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(4006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36')
(4007, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0')
(4008, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '9.14', '10', '0')
(4009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0')
(4010, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '340', '1130', '4', '103', 'None', '0', '0', '0', '0')
(4011, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '101', 'Punjab Technical University', 'Computer Science & Engineering', '71', '100', '0')
(4012, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', 'None', 'JNTU', 'Mechanical', '83.1', '100', '0')
(4013, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '151', '314', '4.5', '113', 'SRM', 'Electonrics and Communication', '9.52', '10', '0')
(4014, 'Arizona State University', '6', 'Admit', 'MS', 'Telecom management', 'Fall ', '2012', '790', '480', '1270', '3', '106', 'Anna University', 'ECE', '7.872', '10', '0')
(4015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '92', 'CEG', 'CSE', '8.76', '10', '0')
(4016, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '144', '305', '3.5', '95', 'SSN College of Engineering', 'Computer Science', '74', '100', '52')
(4017, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '370', '1160', '3', '102', 'Anna University', 'B.Tech-Information Technology', '79', '100', '0')
(4018, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '160', '322', '3', '105', 'BITS Pilani', 'ECE', '8.7', '10', '0')
(4019, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0')
(4020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0')
(4021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '109', 'Guru Nanak Dev University Amritsar', 'Electronics Technology', '7.57', '10', '11')
(4022, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0')
(4023, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0')
(4024, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '660', '1460', '800', '290', 'MU', 'EE', '72', '100', '0')
(4025, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0')
(4026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0')
(4027, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '107', 'VTU', 'ECE', '84', '100', '0')
(4028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '106', 'None', 'computer science', '72', '100', '0')
(4029, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0')
(4030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '790', '350', '1140', '3.5', '104', 'Anna University', 'IT', '82', '100', '0')
(4031, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '106', 'CoE Trivandrum', 'Electronics and Instrumentation', '7.7', '10', '0')
(4032, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '147', '307', '3', '98', 'VIT University', 'ECE', '9.03', '10', '2')
(4033, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0')
(4034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0')
(4035, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0')
(4036, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0')
(4037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '149', '314', '3.5', '100', 'Sairam engg college(Anna University)', 'CSE', '7.79', '10', '30')
(4038, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0')
(4039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '95', 'IIIT Allahabad', 'IT', '7.95', '10', '0')
(4040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9')
(4041, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'ICFAI', 'Computer Science Engineering', '9.48', '10', '0')
(4042, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0')
(4043, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '150', '318', '3.5', '111', 'NIT Hamirpur', 'cse', '7.98', '10', '24')
(4044, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(4045, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '112', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '68', '100', '0')
(4046, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '73', '100', '0')
(4047, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3', '93', 'SASTRA', 'ECE', '8.02', '10', '0')
(4048, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0')
(4049, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '149', '316', '3', '7', 'Manipal Institue of Technology', 'ECE', '6.31', '10', '0')
(4050, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '110', 'Anna University', 'ECE', '83', '100', '0')
(4051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '3', '88', 'Kakatiya University', 'ECE', '82', '100', '0')
(4052, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '113', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Computers', '8.2', '10', '0')
(4053, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0')
(4054, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '3.5', 'None', 'Naional Institute of Technology Raipur', 'Electronics & Telecommunication', '77.1', '100', '0')
(4055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0')
(4056, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '3', '106', 'Sreenidhi Institute of Science & Technology', 'cse', '81.7', '100', '0')
(4057, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0')
(4058, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0')
(4059, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '101', 'R V College of Engineering', 'electronics', '9.28', '10', '0')
(4060, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0')
(4061, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0')
(4062, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0')
(4063, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0')
(4064, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '154', '316', '3.5', '107', 'NIT Allahabad', 'Chemical Engineering', '7.39', '10', '18')
(4065, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'NITK Surathkal', 'EEE', '7.97', '10', '0')
(4066, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0')
(4067, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'VIT', 'Mechanical Engineering', '8.81', '10', '0')
(4068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '570', '1300', '5', '110', 'CEC', 'CS', '83', '100', '0')
(4069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '114', 'WBUT', 'Computer Science and Engineering', '8.47', '10', '0')
(4070, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '167', '152', '319', '3.5', '95', 'VTU', 'EEE', '69', '100', '0')
(4071, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0')
(4072, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '560', '1360', '4', '111', 'JNTU', 'EEE', '81.4', '100', '0')
(4073, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '370', '1150', '3.5', '1004', 'None', '0', '0', '0', '0')
(4074, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '660', '490', '1150', '2.5', '80', 'MU', 'Production', '0', '0', '0')
(4075, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(4076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0')
(4077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '3', '93', 'Sardar Patel College of Engineering', 'IT', '70', '100', '0')
(4078, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0')
(4079, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '162', '153', '315', '4.5', '111', 'None', '0', '0', '0', '0')
(4080, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0')
(4081, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '146', '316', '3.5', '97', 'JNTU', 'Electronics and Communication Engineering', '87.8', '100', '0')
(4082, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '100', 'UPTU', 'Electronics and Telecommunication', '69.4', '100', '0')
(4083, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2016', '160', '140', '300', '3', 'None', 's.r.k.r engineering college', 'civil engineering', '7.7', '10', '0')
(4084, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2011', '740', '580', '1320', '4', '113', 'Gujarat Technological University', 'Electronics & Communication', '74', '100', '0')
(4085, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '4', '106', 'MU', 'Computer Engineering', '76', '100', '0')
(4086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0')
(4087, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '147', '310', '4', '110', 'Amrita School of Engineering', 'Civil', '7.29', '10', '0')
(4088, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0')
(4089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '147', '311', '3', '93', 'BMSCE', 'Electronics and Commuications', '9.42', '10', '22')
(4090, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(4091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0')
(4092, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '153', '316', '3.5', '110', 'None', 'ECE', '8', '10', '0')
(4093, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24')
(4094, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0')
(4095, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '450', '1250', '3.5', '100', 'NIT Warangal', 'Electronics and Communications Engineering', '7.89', '10', '0')
(4096, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '460', '1260', '3', '103', 'Pune University', 'Mechanical engineering', '60', '100', '0')
(4097, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0')
(4098, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0')
(4099, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0')
(4100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0')
(4101, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '3.5', '100', 'VTU', 'Telecommunication engineering', '8.9', '10', '0')
(4102, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '4', '109', 'VTU', 'CS', '79', '100', '0')
(4103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0')
(4104, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '4.5', '100', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '9.04', '10', '0')
(4105, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(4106, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0')
(4107, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30')
(4108, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0')
(4109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(4110, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(4111, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '150', '318', '3', '101', 'GGSIPU', 'ECE', '87', '100', '0')
(4112, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(4113, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '710', '1510', '5', '277', 'CEG', 'ECE', '8.6', '10', '0')
(4114, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '2.5', '97', "St Joseph's College of Engineering", 'ECE', '8.62', '10', '0')
(4115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46')
(4116, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '145', '159', '304', '3.5', '92', 'CEG', 'EEE', '7.8', '10', '0')
(4117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '800', '570', '1370', '3', 'None', 'VJTI', 'Electronics', '8.6', '10', '0')
(4118, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2014', '165', '145', '310', '3.5', '103', 'NIT MIZORAM', 'ECE', '8.52', '10', '0')
(4119, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0')
(4120, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '3.5', '104', 'Jalpaiguri Govt Engg College', 'Electrical', '8.57', '10', '0')
(4121, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0')
(4122, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '4', '104', 'University Institute of Engineering & TEch Kurukshetra University', 'Computer Science', '74', '100', '0')
(4123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '109', 'CEG', 'Electronics and Communication', '9.31', '10', '0')
(4124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '490', '1290', '5', '283', 'University of Bombay', 'Computer', '65', '100', '0')
(4125, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0')
(4126, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5.5', '117', 'BITS Goa', 'EEE', '8.62', '10', '0')
(4127, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0')
(4128, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '146', '311', '3', '110', 'Savitribai Phule Pune University', 'Electrical Engineering', '66.5', '100', '0')
(4129, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0')
(4130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '140', '299', '4', 'None', 'GTU', 'IT', '7.72', '10', '0')
(4131, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '153', '312', '3.5', '104', 'G. H. Patel College of Engineering and Technology', 'Electrical', '7.73', '10', '0')
(4132, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0')
(4133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(4134, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0')
(4135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0')
(4136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(4137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '670', '1340', '4', '101', 'SCE', 'CSE', '3.32', '4', '0')
(4138, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', 'None', 'COEP', 'Electronics and Telecom Engg.', '6.71', '10', '0')
(4139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0')
(4140, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', '116', 'MU', 'Mechanical', '72.94', '100', '0')
(4141, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '152', '314', '3.5', '101', 'NIT-Jaipur', 'Computer Science', '7', '10', '0')
(4142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3', '102', 'IIITDM Kancheepuram', 'Computer Engineering', '8.31', '10', '0')
(4143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '12', '800', '330', '1130', '3.5', '99', 'VIT', '0', '8.64', '10', '0')
(4144, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '500', '1290', '3', '100', 'GGSIPU', 'Mechanical and Automation', '75', '100', '0')
(4145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '720', '560', '1280', '3', '98', 'S.D.B.C.T', 'Computer Science', '72.06', '100', '0')
(4146, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0')
(4147, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '155', '147', '302', '3.5', '97', 'Lingayas Institute of management and technology', 'school of civi engineering', '57.7', '100', '0')
(4148, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0')
(4149, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0')
(4150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '560', '1340', '4', '108', 'Pune University', 'Electrical', '69', '100', '0')
(4151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '95', 'Madras Institute of Technology', 'CSE', '8.3', '10', '0')
(4152, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0')
(4153, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '163', '330', '4.5', '115', 'Delhi College Of Engineeing', 'Electrical and Electronics Engineering', '70.5', '100', '0')
(4154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', 'None', '96', 'West Bengal University Of Technology', 'Information Technology', '8.14', '10', '0')
(4155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '167', '150', '317', '3.5', '110', 'KLUNIVERSITY', 'industrial', '8.3', '100', '0')
(4156, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0')
(4157, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0')
(4158, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '152', '316', '3', '110', 'NIT Durgapur', 'electronics and communication', '8.66', '10', '0')
(4159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0')
(4160, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '3', '109', 'Gujarat Technological University', 'Electronics & Communication', '3.96', '4', '0')
(4161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0')
(4162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0')
(4163, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '147', '306', '3.5', '97', 'Guru Nanak Dev University Amritsar', 'ece', '74', '100', '0')
(4164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(4165, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '4', '109', 'VTU', 'CS', '70', '100', '0')
(4166, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0')
(4167, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0')
(4168, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '157', '323', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.4', '10', '36')
(4169, 'Arizona State University', '6', 'Admit', 'MS', 'optics', 'Fall ', '2014', '165', '160', '325', '4', '110', 'None', 'Physics', '89', '100', '0')
(4170, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0')
(4171, 'Arizona State University', '6', 'Admit', 'MS', 'Robotics', 'Fall ', '2014', '167', '156', '323', '4', '111', 'U.V. Patel College of Engineering Ganpat University', 'Mechatronics engineering', '68.25', '100', '0')
(4172, 'Arizona State University', '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '790', '570', '1360', '3.5', '92', 'MU', 'Electronics and Telecommunication', '70.04', '100', '0')
(4173, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0')
(4174, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '172', '151', '323', '3.5', '105', 'None', '0', '0', '0', '0')
(4175, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '163', '333', '4', '112', 'DU', 'ECE', '78', '100', '0')
(4176, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences Indore', 'Electrical Engineering', '80.38', '100', '0')
(4177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '440', '1240', '3', '103', 'VIT University', 'CSE', '9.22', '10', '0')
(4178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '145', '304', '3', '91', 'JNTU', 'Information Technology', '73.25', '100', '0')
(4179, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0')
(4180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '158', '315', '4.5', '116', 'NIT Karnataka', 'Computer Engineering', '6.9', '10', '0')
(4181, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'CEG', 'Civil Engineering (Agricultural and Irrigation Engineering Degree)', '7.5', '10', '0')
(4182, 'Arizona State University', '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0')
(4183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '510', '1230', '3.5', '100', 'COEP', 'Information Technology', '8.05', '10', '0')
(4184, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '4', '97', 'PSG College of Technology', 'Mechanical', '8.04', '10', '0')
(4185, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0')
(4186, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0')
(4187, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '155', '143', '298', '3', '90', 'RMK Engineering College', 'Electronics and Instrumentation', '72', '100', '0')
(4188, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30')
(4189, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0')
(4190, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '790', '560', '1350', '4', '101', 'VJTI', 'civil engineering', '7', '10', '0')
(4191, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '550', '1340', '3.5', '112', 'Sathyabama University', 'ICE', '78', '100', '0')
(4192, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0')
(4193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(4194, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3', '107', 'VTU', 'CS', '8.9', '10', '0')
(4195, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0')
(4196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '148', '311', '3', '104', 'The LNM Institute of Information Technology', 'Communication and Computer Engineering', '7.79', '10', '0')
(4197, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3', '107', 'GGSIPU', 'Computer Science', '72', '100', '0')
(4198, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2008', '800', '570', '1370', '3', '105', 'TCE', 'ECE', '8.43', '10', '0')
(4199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0')
(4200, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '570', '1370', '4', '110', 'BITS Pilani', 'EEE', '8.12', '10', '0')
(4201, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0')
(4202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '148', '311', '3', '102', 'JNTU', 'Electronics and communication engineering', '80', '100', '0')
(4203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0')
(4204, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2007', '800', '640', '1440', '4', '273', 'CEG', 'ECE', '8.79', '10', '0')
(4205, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '161', '325', '4.5', '113', 'Fr. CRIT Vashi Mumbai University', 'Computer Engineering', '74', '100', '0')
(4206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '110', 'RNSIT', 'Computer Science', '76.7', '100', '0')
(4207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0')
(4208, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0')
(4209, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0')
(4210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '150', '310', '4.5', '106', 'UVCE', 'Computer Science', '81', '100', '75')
(4211, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '153', '315', '3.5', '110', 'SASTRA', 'Mechanical Engg', '8.26', '10', '27')
(4212, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '150', '160', '310', '3.5', '104', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(4213, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3', '120', 'BMSCE', 'CS', '81', '100', '0')
(4214, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3', '112', 'The LNM Institute of Information Technology', 'Computer Science', '8.5', '10', '0')
(4215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '780', '590', '1370', '4', '112', 'JNTU', 'ece', '85', '100', '0')
(4216, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '330', '1120', '3.5', '91', 'Sathyabama University', 'ECE', '78', '100', '0')
(4217, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4218, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '104', 'SK University', 'CSE', '77.8', '100', '0')
(4219, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0')
(4220, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0')
(4221, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '162', '328', '4', '113', 'NIT Tirchy', 'Mechanical', '8.38', '10', '0')
(4222, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0')
(4223, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '560', '1360', '3.5', '115', 'K J Somaiya College of Engiineering', 'Electronics and telecommunication', '63', '100', '0')
(4224, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84')
(4225, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15')
(4226, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0')
(4227, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0')
(4228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3.5', '102', 'VTU', 'Computer Science', '74.95', '100', '25')
(4229, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0')
(4230, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '610', '1400', '3.5', '113', 'JNTU', 'ece', '78.7', '100', '0')
(4231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0')
(4232, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54')
(4233, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(4234, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0')
(4235, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '144', '303', '2', '95', 'None', '0', '0', '0', '0')
(4236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '800', '630', '1430', '3.5', '111', 'BITS Pilani', 'Ekectrical and Electronics', '8.13', '10', '0')
(4237, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '161', '149', '310', '3', '103', 'Anna University', 'ECE', '8.73', '10', '16')
(4238, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '660', '1460', '3.5', '109', 'None', 'Electronics and Communication', '9.45', '10', '0')
(4239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0')
(4240, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '167', '147', '314', '3.5', '103', 'K J Somaiya College of Engiineering', 'Electronics', '55', '100', '0')
(4241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '94', 'JSSATE India', 'CS', '72.84', '100', '0')
(4242, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '670', '520', '1190', '4', '93', 'MSRIT', 'Industrial Engineering and Management', '70.92', '100', '0')
(4243, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '730', '640', '1370', '4.5', '108', 'L D College Of Engineering', 'Civil', '7.56', '10', '0')
(4244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '153', '323', '4', '106', 'IIT Roorkee', 'Electrical Engineering', '8.3', '10', '0')
(4245, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '160', '164', '324', '4.5', '114', 'None', 'Mechanical Engineering', '80.34', '100', '0')
(4246, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '560', '1330', '4', '108', 'Anna University', 'Aeronautical Engineering', '8.33', '10', '0')
(4247, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48')
(4248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '470', '1260', '5.5', '283', 'NIT Karnataka', 'Electronics and Communication', '82', '100', '0')
(4249, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '570', '1370', '3.5', '108', 'NSS College of Engineering', 'Electronics and Communication', '79', '100', '0')
(4250, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0')
(4251, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '143', '301', '3', '98', 'Anna University', 'Mechanical', '7.76', '10', '0')
(4252, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0')
(4253, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '790', '760', '1550', '4.5', '111', 'BITS Pilani', '0', '7.9', '10', '0')
(4254, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '760', '530', '1290', '3.5', '109', 'NIT Warangal', 'Metallurgical and Materials Engg.', '8.5', '10', '0')
(4255, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '460', '1200', '3', '91', 'MIT/ANNA UNIVERSITY', 'PRODUCTION ENGINEERING', '8.3', '10', '0')
(4256, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '157', '156', '313', '3.5', '107', 'VIT', 'Biomedical EWNgineering', '8.3', '10', '0')
(4257, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '340', '1120', '3', 'None', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '82', '100', '36')
(4258, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0')
(4259, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0')
(4260, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0')
(4261, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '112', 'NIT Calicut', 'ECE', '8.32', '10', '0')
(4262, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0')
(4263, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '157', '324', '3', '110', 'IIT', 'Electronics and Communication', '7.94', '10', '0')
(4264, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '101', 'KLCE', 'Electonics and communications', '8.68', '100', '0')
(4265, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '149', '312', '3', '99', 'JNTU', 'ECE', '7.26', '10', '0')
(4266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '410', '1210', '350', '111', 'None', '0', '0', '0', '0')
(4267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0')
(4268, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', 'None', '103', 'PSG College of Technology', 'MECHANICAL SANDWICH', '8.71', '10', '0')
(4269, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '109', 'IIT Delhi', 'Electrical Engineering', '8.06', '10', '0')
(4270, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '640', '1440', '3', '100', 'CVRCE', 'ece', '81', '100', '0')
(4271, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0')
(4272, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2013', '153', '146', '299', '3', '7', 'Osmania University', 'civil', '0', '0', '0')
(4273, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3', '98', 'CEG', 'Electronics and Communication', '7.03', '10', '0')
(4274, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0')
(4275, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '155', '320', '3', '109', 'IIT (BHU) Varanasi', 'Mechanical Engineering', '7.01', '10', '0')
(4276, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics Engineering', 'Fall ', '2015', '168', '156', '324', '3', '96', 'Velammal Engineering College', 'Electronics and Communication Engineering', '9.01', '10', '0')
(4277, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0')
(4278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0')
(4279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3', '103', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.69', '10', '0')
(4280, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '161', '152', '313', '4', '112', 'MNIT', 'Civil Engineering', '7.67', '10', '0')
(4281, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '160', '329', '4', '106', 'IIT Madras', 'Engineering Physics', '0', '0', '0')
(4282, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '157', '321', '4', '113', 'Manipal Institue of Technology', 'EEE', '8.08', '10', '0')
(4283, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '161', '146', '307', '4', '103', 'NMAM Institute of technology', 'Electronics and Communication Engineering', '8.73', '10', '0')
(4284, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '610', '1380', '3.5', '112', 'NIT Bhopal', 'ECE', '8.27', '10', '0')
(4285, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '99', 'The National Institute of Engineering', 'Mechanical Engg.', '8.91', '10', '34')
(4286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '157', '318', '4.5', '105', 'University of Pune', 'Mechanical', '68', '100', '0')
(4287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '4', '106', 'VTU', 'CS', '8.7', '10', '0')
(4288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0')
(4289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '410', '1210', '3.5', '107', 'MIST JNTU -HYD', 'ECE', '0', '0', '0')
(4290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0')
(4291, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0')
(4292, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '156', '319', '3.5', '107', 'VIT', 'Mechanical engineering', '8.93', '10', '29')
(4293, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '14', '161', '147', '308', '3.5', '99', 'SRM', 'CSE', '7.98', '10', '33')
(4294, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(4295, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35')
(4296, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '157', '318', '3.5', '95', 'AMU Aligarh', 'Mech.', '9.67', '10', '0')
(4297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0')
(4298, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '169', '155', '324', '3', '99', 'NIT Kurukshetra', 'ECE', '8.53', '10', '0')
(4299, 'Arizona State University', '6', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0')
(4300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '160', '327', '4', '110', 'Amrita School of Engineering', 'ECE', '8.06', '10', '0')
(4301, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '161', '155', '316', '3.5', '103', 'None', 'Mechanical Engineering', '82.78', '100', '0')
(4302, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '154', '162', '316', '4', '112', 'SWEC Hyd', 'Electronics and Instrumentation', '76', '100', '0')
(4303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '310', '159', '469', '151', '98', 'NIT Calicut', 'Computer Science', '8.07', '10', '0')
(4304, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '152', '311', '3', '100', 'Amrita School of Engineering', 'Mechanical', '8.34', '10', '0')
(4305, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '151', '311', '3', '86', 'Thapar University', 'electronics and comm. engg', '9.1', '10', '0')
(4306, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '560', '1300', '3.5', '106', 'HKBKCE', 'Electronics and Communication', '79', '100', '0')
(4307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0')
(4308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '156', '313', '3', '105', 'College Of Engg Chengannur', 'ECE', '73.2', '100', '55')
(4309, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0')
(4310, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '590', '1350', '4.5', '115', 'Anna University', 'Electrical and Electronics/ Information Technology', '85', '100', '0')
(4311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24')
(4312, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0')
(4313, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '700', '1440', '4', '104', 'Sri Venkateswara College of Engineering', 'EEE', '77', '100', '0')
(4314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '145', '314', '4', '106', 'BNMIT', 'Electrical and Electronics', '77.32', '100', '0')
(4315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3.5', '93', 'JNVU/MBM Engg College Jodhpur Rajasthan', 'CSE', '67', '100', '0')
(4316, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '145', '311', '3', '100', 'None', '0', '0', '0', '0')
(4317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24')
(4318, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4319, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '113', 'R V College of Engineering', 'Electronics and Communication Engineering', '74.19', '100', '0')
(4320, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0')
(4321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '4', '108', 'VTU', 'Infosmation Science & Engineering', '75.67', '100', '0')
(4322, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '148', '314', '3', '102', 'VIT University', 'Mechanical engineering', '9', '10', '0')
(4323, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0')
(4324, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(4325, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20')
(4326, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0')
(4327, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '147', '305', '3', '103', 'Anna University', 'Aeronautical Engineering', '8.24', '10', '0')
(4328, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '540', '1240', '3.5', '101', 'BIT Mesra', 'ECE', '0', '0', '0')
(4329, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '660', '1460', '3.5', '113', 'None', '0', '73', '100', '0')
(4330, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0')
(4331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0')
(4332, 'Arizona State University', '6', 'Admit', 'MS', 'Environmental Science', 'Fall ', '2014', '170', '157', '327', '4', '110', 'ISM Dhanbad', 'Environmental Science and Engineering', '7.09', '10', '0')
(4333, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '150', '310', '4', '99', 'VJTI', 'Production Engineering', '8.2', '10', '36')
(4334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '101', 'WBUT', 'Information Technology', '8.38', '10', '0')
(4335, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '92', 'Punjab Technical University', 'ece', '78', '100', '0')
(4336, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '107', 'None', '0', '0', '0', '0')
(4337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0')
(4338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4.5', '112', 'SSN College of Engineering', 'Computer Science and Engineering', '8.04', '10', '0')
(4339, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0')
(4340, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '3', '109', 'COEP', 'Electrical', '7.73', '10', '0')
(4341, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '150', '320', '3.5', '110', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '7.23', '10', '0')
(4342, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0')
(4343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36')
(4344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0')
(4345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', '3', 'None', 'MU', 'Computer Engineering', '61', '100', '0')
(4346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4', '109', 'SSN College of Engineering', 'Electronics & Communication', '89', '100', '0')
(4347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '7', 'SRM', 'Computer Science', '8.3', '10', '0')
(4348, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '153', '310', '3', '107', 'SRM', 'Electronics and instrumentation', '7.92', '10', '0')
(4349, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '540', '1320', '4', '113', 'NIT Tirchy', 'Instrumentation and Control Engineering', '8.07', '10', '0')
(4350, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '163', '323', 'None', '111', 'MU', 'Computer Engg', '72.87', '100', '0')
(4351, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '115', 'NITK Surathkal', 'EEE', '8.64', '10', '0')
(4352, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', '116', 'M.V.S.R Engineering College', 'ECE', '87', '100', '0')
(4353, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(4354, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '510', '1310', '3', '96', 'IIT Kharagpur', 'ECE', '7.81', '10', '0')
(4355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0')
(4356, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '4', '108', 'SSN College of Engineering', 'Computer Science', '82.4', '100', '0')
(4357, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0')
(4358, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '103', 'BITS Pilani', 'Information Systems', '7.6', '10', '0')
(4359, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24')
(4360, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '159', '140', '299', '2.5', '80', 'JNTU', 'ece', '63', '100', '0')
(4361, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0')
(4362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0')
(4363, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0')
(4364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3.5', '94', 'Nagpur University', 'Computer Science', '70', '100', '0')
(4365, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '108', 'VJTI', 'Electrical Engineering', '7.3', '10', '0')
(4366, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '287', 'MU', 'IT', '65', '100', '0')
(4367, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2010', '770', '560', '1330', '4.5', '116', 'Atharva College', 'Computer Engineering', '77', '100', '0')
(4368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0')
(4369, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0')
(4370, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '350', '1100', '3', '87', 'Madras Institute of Technology', 'ECE', '9.5', '10', '0')
(4371, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '450', '1230', '3.5', '106', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '0')
(4372, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0')
(4373, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Manipal Institue of Technology', '0', '0', '0', '0')
(4374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '150', '307', '4', '105', 'MU', 'Information Technology', '73.5', '100', '0')
(4375, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0')
(4376, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '152', '310', '4', '113', 'Amrita School of Engineering', 'CSE', '8.4', '10', '0')
(4377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '680', '1460', '3', '106', 'MU', 'electronics', '79', '100', '0')
(4378, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '169', '152', '321', '3', '106', 'IIT Patna', 'EE', '7.6', '10', '0')
(4379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41')
(4380, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'PSG College of Technology', 'Electronics and Communications', '9.17', '10', '0')
(4381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '520', '1290', '305', '105', 'Dr Mahalingam College of Engineering and Technology', 'CSE', '80', '100', '0')
(4382, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'NIT Nagpur', 'Electronics & Communication', '9.63', '10', '0')
(4383, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '470', '1260', '3.5', '102', 'Anna University', 'CSE', '68', '100', '0')
(4384, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0')
(4385, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0')
(4386, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0')
(4387, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '490', '1290', 'None', '99', 'IIITH', 'Computer Science', '8.37', '10', '0')
(4388, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38')
(4389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36')
(4390, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '157', '150', '307', '3', '100', 'Anna University', 'Biomedical Engineering', '8.58', '10', '0')
(4391, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0')
(4392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Computer Science', '72', '100', '0')
(4393, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0')
(4394, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15')
(4395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0')
(4396, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0')
(4397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0')
(4398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0')
(4399, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0')
(4400, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0')
(4401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Electronics and Communication', '70', '100', '0')
(4402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0')
(4403, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '116', 'Thiagarajar College of engineering', 'EEE', '8.8', '10', '0')
(4404, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '44', '31', '75', '4', '108', 'Sri Venkateswara College of Engineering', 'CSE', '75', '100', '0')
(4405, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '150', '312', '3', '91', 'PSG College of Technology', 'Mechanical', '8.36', '10', '48')
(4406, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0')
(4407, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '620', '1400', '4', '110', 'VIT University', '0', '8.4', '10', '0')
(4408, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0')
(4409, 'Arizona State University', '6', 'Admit', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0')
(4410, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0')
(4411, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0')
(4412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '112', 'MNM Jain Engineering College', 'Electrical and Electronics Engineering', '90', '100', '0')
(4413, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0')
(4414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '147', '308', '3', '97', 'NIT Surat', 'Electronics Engineering', '8.02', '10', '0')
(4415, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0')
(4416, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '770', '490', '1260', '3', 'None', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(4417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '152', '320', '3.5', '107', 'Medicaps Institute of Science & Technology Indore', 'Electronics & Communication', '71', '100', '0')
(4418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0')
(4419, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '161', '156', '317', '3', '102', 'College Of Engineering Roorkee', 'Information Technology', '71', '100', '30')
(4420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '161', '329', '4', '110', 'Jamia Millia Islamia', 'Dept of Comp Engg', '8.77', '10', '0')
(4421, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0')
(4422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '150', '308', '4', '110', 'Coimbatore Insitute of Technology', 'ECE', '9.28', '10', '68')
(4423, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59')
(4424, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '550', '1280', '3.5', '86', 'Anna University', 'mechanical', '78', '100', '0')
(4425, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0')
(4426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '640', '1440', '4', '108', 'Amrita School of Engineering', 'Electrical and Electronics', '7.73', '10', '0')
(4427, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(4428, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '151', '149', '300', '3.5', '91', 'Iowa State University', 'Electrical Engineering', '3.5', '100', '0')
(4429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0')
(4430, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '3', '107', 'Assam Engineering College', 'Computer Science and engineering', '76', '100', '12')
(4431, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0')
(4432, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3.5', '99', 'IIT Madras', 'Electrical Engineering', '7.16', '10', '0')
(4433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '620', '1400', '4', '113', 'Univ. of Pune', 'Computer Engineering', '61.55', '100', '0')
(4434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6')
(4435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '160', '324', '4', '114', 'VTU', 'CS', '75', '100', '0')
(4436, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0')
(4437, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '670', '1440', '6', '293', 'Anna University', 'CSE', '80', '100', '0')
(4438, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '148', '311', '3', '102', 'Osmania University', 'ECE', '92', '100', '0')
(4439, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3.5', '107', 'VTU', 'ECE', '8.99', '10', '0')
(4440, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '360', '1160', '3', '107', 'Anna University', 'Electronics and Communication Engg', '75', '100', '0')
(4441, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '148', '301', '3.5', '110', 'Sethu Institute of Technology AU', 'Instrumentation and Control Engineering', '65', '100', '0')
(4442, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '156', '323', '4', '113', 'BITS Pilani', 'EEE', '6.45', '10', '25')
(4443, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0')
(4444, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0')
(4445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '150', '316', '3', '103', 'Walchand College Of Engineering', 'CSE', '8.45', '10', '0')
(4446, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0')
(4447, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0')
(4448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0')
(4449, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0')
(4450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25')
(4451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0')
(4452, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0')
(4453, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '162', '153', '315', '4', '104', 'Bangalore Institute of Technology', 'Electronics and Communication', '72.86', '100', '0')
(4454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '98', 'SSN College of Engineering', 'IT', '77', '100', '0')
(4455, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '3.5', '101', 'GGSIPU', 'Computer science and Engg', '73.4', '100', '0')
(4456, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3', '107', 'Anna University', 'Electronics and Communication', '8.9', '10', '0')
(4457, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0')
(4458, 'Arizona State University', '6', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0')
(4459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12')
(4460, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0')
(4461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '104', 'None', '0', '67', '100', '0')
(4462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '2.5', '81', 'G.Narayanamma Institute of Technology and Science', 'computer science', '78', '100', '0')
(4463, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '580', '1380', '4.5', '117', 'Osmania University', 'Electronics and Communication Engg.', '79', '100', '0')
(4464, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0')
(4465, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0')
(4466, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0')
(4467, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0')
(4468, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0')
(4469, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3.5', '107', 'WBUT', 'CSE', '8.4', '10', '0')
(4470, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '3.5', '108', 'Jadavpur University', 'Information Technology', '8.99', '10', '0')
(4471, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '161', '154', '315', '4', '110', 'NUAA', '0', '4.3', '5', '0')
(4472, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '157', '320', '3', '100', 'ACCET', 'Electronics and Coomunication', '80.04', '100', '45')
(4473, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '4', '114', 'COEP', 'Information Technology', '9.04', '10', '0')
(4474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(4475, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0')
(4476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '89', 'JNTU', 'Computer Science & Engineering', '78.45', '100', '0')
(4477, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '108', 'VJTI', 'CS', '7.5', '10', '0')
(4478, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24')
(4479, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '149', '312', '3', '108', 'BMSCE', 'ECE', '8.9', '10', '0')
(4480, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '3.5', '97', 'ISM Dhanbad', 'ELECTRONICS ENGINEERING', '7.06', '10', '0')
(4481, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', '107', 'PSG College of Technology', 'Electronics and Communication', '9.24', '10', '0')
(4482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '550', '1350', '4.5', '280', 'G.B. Pant Univ of Agril. & Tech.', 'Computer Engineering', '72.3', '100', '0')
(4483, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '160', '319', '4', 'None', 'RGPV', 'Computer Science', '71', '100', '0')
(4484, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25')
(4485, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '151', '310', '3', 'None', 'VTU', 'Electronics and communication', '8.9', '10', '0')
(4486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0')
(4487, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '139', '303', '3', '90', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '74.44', '100', '0')
(4488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '770', '470', '1240', '4', '108', 'JNTU', 'Electronics and Computer Engineering', '83.1', '100', '36')
(4489, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '155', '316', '4', '107', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '77', '100', '27')
(4490, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'NIT Tirchy', '0', '0', '0', '0')
(4491, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0')
(4492, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '147', '310', '4', '88', 'NITK Surathkal', 'ECE(Mtech)', '7.33', '10', '0')
(4493, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '460', '1240', '2.5', '95', 'Manipal Institue of Technology', 'Electronics and Communication', '8.69', '10', '0')
(4494, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'Spring ', '2016', '163', '146', '309', '2.5', 'None', 'SRM', 'computer science and engineering', '8', '10', '30')
(4495, 'Arizona State University', '6', 'Admit', 'MS', 'Information technology management', 'Spring ', '2013', '165', '154', '319', '4', '107', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Computer Science', '73.72', '100', '0')
(4496, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '164', '149', '313', '3.5', '95', 'Anna University', 'computer science', '81', '100', '0')
(4497, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '115', 'Amrita School of Engineering', 'ECE', '8.32', '10', '0')
(4498, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0')
(4499, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Electronics & communication', '9.25', '10', '0')
(4500, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '99', 'CBIT', 'CSE', '89', '100', '0')
(4501, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '145', '305', '3', '98', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0')
(4502, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '790', '560', '1350', '3', '102', 'Velammal Engineering College', 'ECE', '80', '100', '0')
(4503, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4504, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '108', 'CBIT', 'EEE', '81.3', '100', '0')
(4505, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '147', '315', '3.5', '99', 'None', 'Computer Science', '9.74', '10', '0')
(4506, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '151', '311', '3', '101', 'UPTU', 'Information Techonoly', '76.28', '100', '36')
(4507, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3', 'None', 'None', 'CSE', '8.23', '10', '24')
(4508, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '92', 'NIT Warangal', 'Chemical Engineering', '8.36', '10', '0')
(4509, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0')
(4510, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '4', '115', 'University of Calicut', 'Electronics and Communication', '9.54', '10', '0')
(4511, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(4512, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0')
(4513, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0')
(4514, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0')
(4515, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0')
(4516, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '510', '1280', '3.5', '94', 'BITS Pilani', '0', '8.17', '10', '0')
(4517, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0')
(4518, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '620', '1420', '4.5', '108', 'VJTI', 'electrical', '8', '10', '0')
(4519, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '153', '317', '4', '109', 'Amrita School of Engineering', 'ECE', '8.88', '10', '0')
(4520, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0')
(4521, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0')
(4522, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3.5', '109', 'UPTU', 'Computer Science', '73.12', '100', '0')
(4523, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '149', '312', '3.5', '93', 'Maharishi Dayanand University', 'Computer Science', '75', '100', '0')
(4524, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '530', '1300', '4.5', '118', 'Anna University', 'Electronics and Communication Engineering', '73', '100', '0')
(4525, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3', '104', 'U.P Technical University', 'Computer Science', '62', '100', '0')
(4526, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0')
(4527, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '420', '1200', '4', '100', 'MSRIT', 'Electronics & Communications', '79', '100', '0')
(4528, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '158', '323', '2.5', '100', 'NIT Rourkela', 'Mechanical Engg.', '8.17', '10', '0')
(4529, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0')
(4530, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '165', '152', '317', '4', '109', 'NIT Tirchy', 'Electrical & Electronics Engineering', '7.7', '10', '36')
(4531, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '166', '155', '321', '4', 'None', 'VTU', 'CS', '76', '100', '0')
(4532, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '156', '319', '4', '119', 'National Insititute of Technology Karnataka', 'Electrical Engineering', '7.13', '10', '0')
(4533, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '500', '1250', '3', 'None', 'LNMIIT', 'computer science', '7.93', '10', '0')
(4534, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '620', '1420', '3.5', '101', 'UIET Panjab University', 'Computer science', '72.7', '100', '0')
(4535, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '143', '313', '4', '97', 'MU', 'Computer Engineering', '74', '100', '0')
(4536, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '153', '319', '4', 'None', 'Anna University', 'ece', '7.04', '10', '0')
(4537, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', 'None', 'JSSATE', 'InformationScience', '67', '100', '0')
(4538, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '610', '1410', '4', '109', 'PEC University of Technology', 'Mechanical Engineering', '8.61', '10', '0')
(4539, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0')
(4540, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '150', '314', '3.5', '109', 'BITS Pilani', 'E&I;', '7.4', '10', '0')
(4541, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '161', '155', '316', '4', '100', 'VTU', 'Computer Science', '73', '100', '61')
(4542, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '580', '1300', '3.5', '106', 'VTU', 'EEE', '78.86', '100', '0')
(4543, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(4544, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '94', 'FCRIT', 'IT', '77.7', '100', '0')
(4545, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '158', '319', '4.5', 'None', 'VTU', 'Industrial Engg. & Management', '73', '100', '0')
(4546, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(4547, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '460', '1240', '3', '92', 'JNEC', 'CS', '66', '100', '0')
(4548, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3.5', '112', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0')
(4549, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '143', '307', '3', '94', 'NITK Surathkal', 'Mechanical Engineering', '7.41', '10', '0')
(4550, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3.5', '99', 'Osmania University', 'Computer Science', '78', '100', '0')
(4551, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0')
(4552, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17')
(4553, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29')
(4554, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0')
(4555, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0')
(4556, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12')
(4557, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0')
(4558, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0')
(4559, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'JNTU', 'EIE', '73', '100', '0')
(4560, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '500', '1270', '3.5', '104', 'PSG College of Technology', 'CS', '9.43', '10', '0')
(4561, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'VTU', 'Computer Science', '75', '100', '0')
(4562, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0')
(4563, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', 'None', 'Osmania University', 'I.T', '86', '100', '34')
(4564, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0')
(4565, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '570', '1330', '3', '109', 'VTU', 'Electronics and Communication', '74', '100', '0')
(4566, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0')
(4567, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '280', '1050', '3.5', '97', 'JNTU', 'Mechanical Engineering', '84.8', '100', '0')
(4568, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '113', 'RNSIT', 'ISE', '75', '100', '0')
(4569, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '1460', '670', '2130', '4', '114', 'University Institute of Engineering and Technology Kurukshetra University', 'Electronics and Communication', '71.11', '100', '0')
(4570, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '530', '1330', '4', '280', 'NIT Tirchy', 'ECE', '8.2', '10', '0')
(4571, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0')
(4572, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40')
(4573, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', 'None', 'Panjab University', 'ECE', '65.38', '100', '0')
(4574, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '156', '324', '3', '103', 'IIIT Allahabad', 'ECE', '9', '10', '0')
(4575, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '318', '155', '473', '163', '107', 'JNTU', 'Electronics and communications', '86.12', '100', '0')
(4576, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '160', '143', '303', '3', '6', 'LDCE', '0', '7.2', '10', '0')
(4577, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '154', '318', '3', 'None', 'CEG', 'ECE', '9.62', '10', '24')
(4578, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '152', '313', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'EEE', '9.16', '10', '24')
(4579, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0')
(4580, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '510', '1290', '2.5', 'None', 'Anna University', 'EEE', '8.01', '10', '0')
(4581, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '118', 'IIT Madras', 'Aerospace', '9.4', '100', '0')
(4582, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '152', '314', '4.5', '109', 'Pune University', 'Electronics', '58', '100', '0')
(4583, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18')
(4584, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '790', '530', '1320', '3.5', '101', 'IIT Guwahati', 'Mech', '7.65', '10', '0')
(4585, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0')
(4586, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0')
(4587, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '157', '319', '4', '110', 'Gujarat Technological University', 'Mech', '8.3', '10', '0')
(4588, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(4589, 'Arizona State University', '6', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2013', '157', '151', '308', '4.5', '109', 'Loyola College', 'Visual communications', '0', '0', '0')
(4590, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '97', 'Pune University', 'Computer Engineering', '71', '100', '0')
(4591, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0')
(4592, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0')
(4593, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0')
(4594, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0')
(4595, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0')
(4596, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0')
(4597, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0')
(4598, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '400', '1190', '3', '102', 'VIT', 'Electronics', '8.52', '10', '0')
(4599, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '149', '317', '4', '105', 'IIT BHU', 'Electrical Engineering', '7.68', '10', '10')
(4600, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '157', '319', '3.5', 'None', 'Arizona State University', 'Electrical Engineering', '3', '4', '0')
(4601, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '100', 'VIT Pune', 'CHEMICAL ENGINEERING', '8.5', '10', '0')
(4602, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0')
(4603, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '4', '105', 'IIT Patna', 'Department of EEE', '8.23', '10', '0')
(4604, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'University of Mumbai', 'Computer Engineering', '65', '100', '0')
(4605, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VTU', 'Computer Science', '74', '100', '0')
(4606, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '105', 'RGPV', 'Information Technology', '77.09', '100', '0')
(4607, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4608, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4609, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42')
(4610, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '160', '146', '306', '3', '99', 'NIT Surat', 'Mechanical', '7.39', '10', '0')
(4611, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0')
(4612, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36')
(4613, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '163', '140', '303', '3', '88', 'Sree Vidyanikethan Engineering College', 'Civil Engineering', '76.2', '100', '0')
(4614, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0')
(4615, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '800', '540', '1340', '3.5', '107', 'NIT Trichy', 'CSE', '7.31', '10', '0')
(4616, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '143', '298', '3', 'None', 'Coimbatore Insitute of Technology', 'mechanical', '7.7', '10', '0')
(4617, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'Madras Institute of Technology', 'Information Technology', '7.5', '10', '0')
(4618, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '98', 'West Bengal University Of Technology', 'Electrical Engg.', '8.36', '10', '0')
(4619, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0')
(4620, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31')
(4621, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '540', '1330', '3', '101', 'R V College of Engineering', 'ECE', '76.57', '100', '0')
(4622, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(4623, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'RVR & JC College of Engineering', 'electrical and electronics engineering', '83.69', '100', '0')
(4624, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '152', '310', '3.5', '111', 'None', 'ECE', '90.04', '100', '0')
(4625, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '104', 'Bangalore Institute of Technology', 'Computer Science', '73', '100', '12')
(4626, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '155', '150', '305', '3.5', '107', 'Nagpur University', '0', '0', '0', '0')
(4627, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0')
(4628, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '159', '324', '4', '112', 'NIT Rourkela', 'Electronics and Communication', '8.18', '10', '0')
(4629, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '420', '1190', '3', '99', 'Sri Venkateswara College of Engineering', 'Electrical And Electronics Engineering', '75', '100', '0')
(4630, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', 'None', 'IIIT Allahabad', 'IT', '8.78', '10', '18')
(4631, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '100', 'West Bengal University Of Technology', 'CSE', '8.44', '10', '0')
(4632, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18')
(4633, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2')
(4634, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '163', '148', '311', '3', '105', 'BVP Pune', 'production', '77', '100', '0')
(4635, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(4636, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36')
(4637, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '147', '311', '3.5', '101', 'DA-IICT', 'ICT', '8.2', '10', '0')
(4638, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0')
(4639, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '109', 'SRM', 'Electrical and Electronics', '9.8', '100', '0')
(4640, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2016', '161', '152', '313', '3.5', 'None', 'University of Bristol', 'Civil Engineering', '3.2', '4', '0')
(4641, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '440', '1240', '3', '96', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Computer Science', '9.17', '10', '0')
(4642, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '290', 'MU', 'Information Technology', '70', '100', '0')
(4643, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '164', '161', '325', '4', '112', 'COEP', 'Metallurgy and Material Science', '8.71', '10', '0')
(4644, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '143', '305', '3', '92', 'JBIT (Afflliated to JNTU)', 'Information Technology', '71.75', '100', '0')
(4645, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '650', '1450', '5', '297', 'PESIT', 'Electronics & Communication', '82.3', '100', '0')
(4646, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '750', '560', '1310', '4.5', '273', 'GRIET', 'ECE', '70', '100', '0')
(4647, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0')
(4648, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(4649, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18')
(4650, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '570', '1300', '3', 'None', 'KIIT', 'ELECTRICAL ENGINEERING', '8.5', '10', '0')
(4651, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0')
(4652, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0')
(4653, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '530', '1290', '3', '91', 'IIT Allahabad', 'Information Technology', '8.11', '10', '0')
(4654, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '155', '320', '3', '96', 'VJTI', 'ETRX', '8.7', '10', '0')
(4655, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '161', '323', '4', '113', 'VIT', 'School of Electrical Sciences', '8.17', '10', '0')
(4656, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '151', '316', '3.5', '111', 'Govt. College Of Engg. Aurangabad', 'Computer Science', '80.5', '100', '0')
(4657, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0')
(4658, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24')
(4659, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', '106', 'PSG College of Technology', 'Production Engineering', '8.46', '10', '0')
(4660, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2')
(4661, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '157', '326', '4', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.5', '10', '0')
(4662, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26')
(4663, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '104', 'VTU', 'ECE', '81.23', '100', '0')
(4664, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0')
(4665, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3.5', '101', 'NIT Silchar', 'CSE', '8.23', '10', '0')
(4666, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6')
(4667, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '150', '313', '3.5', '98', 'SSN College of Engineering', 'Computer science', '8', '10', '25')
(4668, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0')
(4669, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '470', '1240', '3', '94', 'VIT University', 'B.Tech - IT', '8.87', '10', '0')
(4670, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '760', '1560', '4', '112', 'VTU', 'Information Science and Engineering', '79', '100', '0')
(4671, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0')
(4672, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '4', '105', 'SSN College of Engineering', 'Computer Science and Engineering', '8.34', '10', '22')
(4673, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '161', '159', '320', '3.5', '106', 'IIT Mandi', 'Mechanical Engineering', '7.09', '10', '0')
(4674, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'VIT University', 'Electronics and communication Engineering', '8.75', '10', '0')
(4675, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '112', 'SASTRA', 'ELECTRICAL & ELECTRONICS', '7.7', '10', '0')
(4676, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0')
(4677, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'CVRCE', 'Civil Engineering', '75', '100', '0')
(4678, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '145', '311', '3', '92', 'BITS Pilani', 'Civil', '8.15', '10', '0')
(4679, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '2.5', '94', 'JNTU', 'EEE', '77', '100', '0')
(4680, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0')
(4681, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '149', '308', '3', '104', 'SRM', 'Civil Engineering', '9.1', '10', '16')
(4682, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66')
(4683, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '168', '152', '320', '3.5', '102', 'NIT Rourkela', 'ECE', '7.75', '10', '48')
(4684, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '750', '470', '1220', '3', 'None', 'Crescent Engineering College', 'Mechanical Engineering', '7.98', '10', '24')
(4685, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '770', '580', '1350', '4', '115', 'PESIT', 'Mechanical', '8.73', '10', '0')
(4686, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0')
(4687, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '103', 'BMSCE', 'Electronics and communication', '9.14', '10', '0')
(4688, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4.5', '118', 'BITS Pilani', 'Mechanical Engineering', '8.09', '10', '0')
(4689, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '165', '143', '308', '3.5', '103', 'NIT Rourkela', 'Mechanical Engineering', '8.19', '10', '0')
(4690, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0')
(4691, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0')
(4692, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'COEP', 'IT', '8.22', '10', '0')
(4693, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0')
(4694, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0')
(4695, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '159', '318', '4', '112', 'Sir MVIT', 'Industrial Engineering and Management', '79', '100', '0')
(4696, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '550', '1320', '3.5', '113', 'UPTU', 'Electronics and Communication', '76.56', '100', '0')
(4697, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0')
(4698, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0')
(4699, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '158', '318', '3', '106', 'S.D.M.C.E.T', 'electronics an communication engineering', '8.63', '10', '0')
(4700, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0')
(4701, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4702, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '111', 'MU', 'Mechanical Engineering', '70', '100', '0')
(4703, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0')
(4704, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'Sinhgad College of Engineering', 'Mechanical engineering', '66', '100', '0')
(4705, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', 'None', '99', 'VTU', 'ECE', '82', '100', '0')
(4706, 'Arizona State University', '6', 'Admit', 'MS', 'civil', 'Fall ', '2014', '157', '148', '305', '2.5', '91', 'MSRIT', 'Civil', '8.15', '10', '0')
(4707, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '157', '142', '299', '3', '90', 'JNTU', 'ece', '73', '100', '0')
(4708, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3', '88', 'Sri Sairam Engineering College', 'EEE', '80', '100', '0')
(4709, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0')
(4710, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0')
(4711, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0')
(4712, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '2.5', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science and Engineering', '78.2', '100', '0')
(4713, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3', '104', 'Anna University', 'CSE', '84.5', '100', '0')
(4714, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '98', 'BITS Goa', 'Electrical Engineering', '7.84', '10', '0')
(4715, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '107', 'GGSIPU', 'Information technology', '77.4', '100', '0')
(4716, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0')
(4717, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '164', '156', '320', '4', '114', 'R V College of Engineering', 'CIVIL ENGINEERING', '9.8', '10', '0')
(4718, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '580', '1330', '4', '103', 'Anna University', 'ECE', '78', '100', '0')
(4719, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'D J Sanghvi', 'EXTC', '0', '0', '0')
(4720, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '3.5', '102', 'JBIET', 'ece', '76', '100', '0')
(4721, 'Arizona State University', '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', '166', '144', '310', '3.5', 'None', 'Indraprastha University', 'ELECTRONICS AND COMMUNICATION', '72', '100', '0')
(4722, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0')
(4723, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '102', 'Univ--West Bengal University Of Technology/College--Institute Of Engineering And Management Kolkata', 'Computer Science Engineering', '8.52', '10', '0')
(4724, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'GITAM', 'Mechanical Engineering', '8.07', '10', '0')
(4725, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '165', '150', '315', '3', '105', 'Kerala University', 'EEE', '7.88', '10', '30')
(4726, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', 'None', 'A D Patel Institute Of Technology', 'IT', '7.71', '10', '0')
(4727, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0')
(4728, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '162', '160', '322', '3.5', '106', 'None', '0', '7.57', '10', '0')
(4729, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '146', '309', '4', '93', 'JNTU', 'CSE', '70.09', '100', '0')
(4730, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0')
(4731, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '510', '1290', '3', '97', 'Velammal Engineering College', 'ECE', '80', '100', '0')
(4732, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '156', '325', '4.5', '109', 'NIT Karnataka', 'Mechanical Engineering', '7.23', '10', '0')
(4733, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '160', '151', '311', '3.5', '106', 'NMIMS', 'Computer Engineering', '2.98', '4', '0')
(4734, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0')
(4735, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24')
(4736, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0')
(4737, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(4738, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '105', 'SATHAGIRI COLLEGE OF ENGINEERING VTU', 'ECE', '78.93', '100', '0')
(4739, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4740, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '147', '141', '288', '2', 'None', 'kshatriya college of engineering JNTU-HYD', 'EEE', '65.98', '100', '0')
(4741, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0')
(4742, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0')
(4743, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0')
(4744, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '630', '1390', '3', '102', 'CoE Trivandrum', '0', '7.3', '10', '0')
(4745, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '154', '315', '3', '115', 'Abhinav Hi-Tech College Of Engineering', 'Electronics and Communicaton Engineering', '71', '100', '0')
(4746, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.78', '10', '0')
(4747, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0')
(4748, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '160', '320', '6', '120', 'MU', 'ME', '99', '100', '0')
(4749, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', 'None', '103', 'VIT', 'Information Technology', '9.02', '10', '23')
(4750, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33')
(4751, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2014', '164', '152', '316', 'None', '104', 'SIT', 'ECE', '9.4', '10', '0')
(4752, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3.5', '104', 'VNR VJIET', 'CSE', '72', '100', '0')
(4753, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0')
(4754, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3.5', '106', 'Maharaja Agrasen Institute Of Technology', 'Computer Science', '76', '100', '0')
(4755, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '3.5', '111', 'College Of Engineering Roorkee', 'Computer Science', '76', '100', '0')
(4756, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0')
(4757, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0')
(4758, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '115', 'Valliammai Engineering College', 'e.c.e', '76', '100', '0')
(4759, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0')
(4760, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0')
(4761, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3', '107', 'PSG College of Technology', 'Production Engineering', '7.94', '10', '0')
(4762, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '4', '101', 'Coimbatore Insitute of Technology', 'CSE', '8.23', '10', '0')
(4763, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '117', 'Madras Institute of Technology', 'RUBBER AND PLASTICS TECHNOLOGY', '8.48', '10', '0')
(4764, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50')
(4765, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '4', '113', 'Pune University', 'Electronics and telecomm', '0', '0', '0')
(4766, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0')
(4767, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0')
(4768, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '370', '1170', '3', 'None', 'Govt. Engg. College Jabalpur', 'Mechanical Engineering', '75.78', '100', '0')
(4769, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '410', '1140', '4', '108', 'KLESCET Belgaum', 'Computer science', '75.2', '100', '0')
(4770, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0')
(4771, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '103', 'NIT Durgapur', 'MCA', '8.67', '10', '0')
(4772, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0')
(4773, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0')
(4774, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '96', 'VTU', 'Computer Science', '0', '0', '0')
(4775, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '390', '1180', '4', 'None', 'Bangalore Institute of Technology', 'Electronics & Communications', '77', '100', '0')
(4776, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '790', '490', '1280', '4.5', '280', 'PSG College of Technology', 'ECE', '8.82', '10', '0')
(4777, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0')
(4778, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0')
(4779, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0')
(4780, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '158', '317', '3.5', '111', 'Vidyavardhaka College of Engineering', 'Computer Science', '74.28', '100', '0')
(4781, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '146', '308', '3.5', '95', 'National Institute of Science and Technology B.P.U.T Orissa', 'ELectronics & Communication', '7.56', '10', '0')
(4782, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '780', '450', '1230', '3', '100', 'GGSIPU', 'COMPUTER', '81.1', '100', '0')
(4783, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51')
(4784, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0')
(4785, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0')
(4786, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '142', '306', '3', '99', 'VTU', 'IS', '8.49', '10', '0')
(4787, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0')
(4788, 'Arizona State University', '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'University of Calicut', 'MECHANICAL ENGINEEIRNG', '78.2', '100', '0')
(4789, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '149', '311', '3', '112', 'Anna University', 'CSE', '8', '10', '0')
(4790, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0')
(4791, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0')
(4792, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '114', 'NIT Tirchy', 'Electrical and Electronics', '9.1', '10', '19')
(4793, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3.5', '90', 'S.G.S.I.T.S. Indore RGPV Univ', 'Computer Engineering', '68', '100', '0')
(4794, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0')
(4795, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3', '103', 'SSN College of Engineering', 'EEE', '8.37', '10', '0')
(4796, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '101', 'IIIT Hyderabad', 'Computer Science', '8.01', '10', '0')
(4797, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '89', 'NIT Warangal', 'cse', '8.38', '10', '24')
(4798, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '96', 'R V College of Engineering', 'ISE', '8.45', '10', '43')
(4799, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0')
(4800, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '143', '311', '3', '96', 'CEG', 'Computer Science', '7.25', '10', '48')
(4801, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '740', '550', '1290', '3.5', '111', 'VTU', 'ECE', '80', '100', '0')
(4802, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '103', 'BITS Goa', 'EEE', '7.81', '10', '0')
(4803, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '142', '304', '3', '88', 'JNTU', 'ECE', '72', '100', '0')
(4804, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3.5', '110', 'SRM', 'Electronics and Instrumentation', '8.71', '10', '0')
(4805, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0')
(4806, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '102', 'IIITDM', 'electronics engg', '9.27', '10', '0')
(4807, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '167', '327', '4.5', '116', 'VTU', 'CS', '80', '100', '0')
(4808, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0')
(4809, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '560', '1340', '3', '99', 'BMSCE', 'EC', '75', '100', '0')
(4810, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '141', '308', '3', '98', 'NIT Warangal', 'CSE', '8.5', '10', '48')
(4811, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '780', '540', '1320', '3.5', '105', 'NIT Surathkal', 'Civil Engineering', '8.8', '10', '0')
(4812, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '162', '324', '4.5', '114', 'Amity University', 'Electrical & Electronics (EEE)', '8.69', '10', '0')
(4813, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '150', '310', '3', '102', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.71', '10', '0')
(4814, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0')
(4815, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0')
(4816, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4817, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '99', 'NIT Rourkela', 'Biomedical Engineering', '7.03', '10', '0')
(4818, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '430', '1230', '3', '92', 'BITS Pilani', 'Marine Engineering', '9.27', '10', '0')
(4819, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '151', '316', '3.5', '104', 'NIT Warangal', 'ECE', '7.78', '10', '0')
(4820, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4821, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', 'None', '800', '620', '1420', '3.5', '108', 'VIT University', 'ECE', '8.8', '10', '0')
(4822, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'NIT Warangal', 'Mechanical Engineering', '8.77', '10', '24')
(4823, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', '3', '93', 'GITAM', 'Information Technology', '8.4', '10', '0')
(4824, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4825, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '146', '305', '3.5', 'None', 'JNTU', 'Electronics and Communication Engineering', '82.6', '100', '0')
(4826, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0')
(4827, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0')
(4828, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', '98', 'PSG College of Technology', 'Information Technology', '8.85', '10', '0')
(4829, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0')
(4830, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '590', '1300', '3', '107', 'VTU', 'Computer science', '80', '100', '0')
(4831, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0')
(4832, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(4833, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3.5', '94', 'VIT University', 'ECE', '8.9', '100', '0')
(4834, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '109', 'VTU', 'electrical', '76', '100', '0')
(4835, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0')
(4836, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0')
(4837, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '107', 'NIT Calicut', 'EEE', '7.4', '10', '0')
(4838, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '520', '1270', '2.5', '110', 'SSN College of Engineering', 'ECE', '80', '100', '0')
(4839, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '158', '321', '4.5', '105', 'Pune University', 'Computer Engineering', '67', '100', '0')
(4840, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0')
(4841, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '70', '100', '0')
(4842, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '103', 'PESIT', 'Computer Science', '77', '100', '54')
(4843, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3', '102', 'SASTRA', 'ECE', '8', '10', '0')
(4844, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '99', 'WCE Sangli', 'IT', '79', '100', '0')
(4845, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '3', '96', 'Thapar University', 'Electrical Engineering', '9.14', '10', '0')
(4846, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4847, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', '109', 'NIT Silchar', 'Computer Science and Engineering', '8.23', '10', '0')
(4848, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0')
(4849, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '164', '153', '317', '3', '103', 'NIT Rourkela', 'Computer Science & Engineering', '8.44', '10', '34')
(4850, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4851, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '151', '308', '3.5', '102', 'RGPV', 'MECHANICAL ENGINEERING', '3.45', '4', '0')
(4852, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(4853, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(4854, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '430', '1230', '4', '237', 'CEG', 'Electronics and Communication', '9.03', '10', '0')
(4855, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '94', 'Sree Vidyanikethan Engineering College', 'INFORMATION TECHNOLOGY', '74.34', '100', '0')
(4856, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3', '104', 'RGUKT', 'Electronics and Communication', '9.11', '10', '0')
(4857, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3', '92', 'NMREC', 'ECE', '71', '100', '0')
(4858, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '159', '145', '304', '3', '99', 'NIT Warangal', 'civil engineering', '8.19', '10', '0')
(4859, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(4860, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '95', 'COEP', 'Computer Science', '7.99', '10', '36')
(4861, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '800', '620', '1420', '4', '104', 'VIT Pune', 'Instrumentation and Control', '8.5', '10', '0')
(4862, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '83.6', '100', '0')
(4863, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50')
(4864, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(4865, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0')
(4866, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '101', 'IIT Kanpur', 'Electrical Engineering', '8.8', '10', '0')
(4867, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '96', 'IPU/MAIT', 'ECE', '76', '100', '0')
(4868, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '660', '1410', '3.5', '112', 'SSN College of Engineering', 'EEE', '8.787', '10', '0')
(4869, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0')
(4870, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0')
(4871, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0')
(4872, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '3.5', '112', 'Nagarjuna University', 'IT', '89.3', '100', '0')
(4873, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '157', '326', '4', '108', 'None', 'Mechanical', '8.46', '10', '0')
(4874, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '800', '1590', '4.5', '290', 'Dharamsinh Desai University', 'Computer Engineering', '76.2', '100', '0')
(4875, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '111', 'VTU', 'Electronics and Communications', '75', '100', '0')
(4876, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '480', '1280', '4', '283', 'Model Engineering College', 'Electronics and Comunication', '79.4', '100', '0')
(4877, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '149', '316', 'None', 'None', 'Manipal Institue of Technology', 'CSE', '8.53', '10', '0')
(4878, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '700', '540', '1240', '3', '109', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.97', '10', '0')
(4879, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0')
(4880, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0')
(4881, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0')
(4882, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '157', '327', '3', '101', 'NIT Jamshedpur', 'Electronics and Comm. Engg.', '8.55', '10', '0')
(4883, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(4884, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '109', 'Jalpaiguri Government Engineering College', 'Electronics & Communication Engg', '8.14', '10', '0')
(4885, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '570', '1370', '4', '283', 'VTU', 'Electronics and Communication Engineering', '83', '100', '0')
(4886, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '169', '151', '320', '3.5', '105', 'IIT', 'Mechanical', '8', '10', '0')
(4887, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '167', '147', '314', '4', '101', 'Shiv Nadar University', 'Mathematics', '8.5', '10', '0')
(4888, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '96', 'Anna University', 'E&I;', '7.82', '10', '0')
(4889, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '96', 'Nirma Institute of Technology', 'Computer Science and Engineering', '7.88', '10', '0')
(4890, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '450', '1220', 'None', 'None', 'COEP', 'production', '7', '10', '0')
(4891, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0')
(4892, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '149', '313', 'None', '109', 'GNITS', 'ETM', '89.37', '100', '0')
(4893, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0')
(4894, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '540', '1310', '3.5', '111', 'None', 'Electronics and comm. engg', '76.92', '100', '0')
(4895, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '800', '450', '1250', '2.5', '106', 'JNTU', 'ECE', '76.1', '100', '0')
(4896, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3', '100', 'None', '0', '0', '0', '0')
(4897, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '161', '143', '304', '3', 'None', 'NIT Surat', 'Electronics', '8.64', '10', '0')
(4898, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '630', '1410', '3', '102', 'Acharya Nagarjuna University', 'EEE', '80', '100', '0')
(4899, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '760', '650', '1410', '3', '105', 'VITU Vellore', 'Biotechnology', '8.25', '10', '0')
(4900, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4.5', '115', 'VTU', 'Computer Science', '71', '100', '0')
(4901, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '3', '105', 'VIT University', 'SELECT', '8.34', '100', '0')
(4902, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '420', '1180', '3.5', '96', 'Ramrao Adik Institute of Technology', 'Electronics', '67', '100', '0')
(4903, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0')
(4904, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0')
(4905, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '5', '114', 'NIT Karnataka', 'Mechanical Engineering', '8.66', '10', '0')
(4906, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '510', '1210', '3.5', '98', 'SRM', 'EIE', '77', '100', '0')
(4907, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '151', '311', '4', 'None', 'Anna University', 'Information Technology', '82', '100', '0')
(4908, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0')
(4909, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '650', '1380', '4', '103', 'Sardar Patel College of Engineering', 'electronics and telecommunication', '79.04', '100', '0')
(4910, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38')
(4911, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0')
(4912, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '520', '1320', '3', '105', 'SVIT', 'computers', '68', '100', '0')
(4913, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0')
(4914, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0')
(4915, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0')
(4916, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0')
(4917, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '158', '151', '309', 'None', '105', 'GITAM', 'ECE', '8.84', '10', '0')
(4918, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '790', '630', '1420', '3', '101', 'nitw', 'elcetronics', '8.6', '10', '0')
(4919, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4920, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '164', '330', '4', '119', 'MNM Jain Engineering College', 'CSE', '8.6', '10', '0')
(4921, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '570', '1310', '4', '112', 'RMK Engineering College', 'computer science', '85', '100', '0')
(4922, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0')
(4923, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(4924, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '106', 'JNTU', 'ECE', '78', '100', '0')
(4925, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '650', '1420', '2.5', 'None', 'NIT Durgapur', 'Mechanical engineering', '8.28', '10', '0')
(4926, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '159', '322', '4.5', '110', 'Vasavi College of Engineering', 'Information Technology', '89', '100', '16')
(4927, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '156', '318', '3.5', '112', 'CEG', 'computer science', '7.3', '10', '0')
(4928, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '3', '105', 'NIT Jamshedpur', 'Electronics & Communication Engineering', '8.68', '10', '48')
(4929, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0')
(4930, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0')
(4931, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '520', '1240', '4', '106', "St Joseph's College of Engineering", 'EEE', '75.31', '100', '0')
(4932, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26')
(4933, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(4934, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0')
(4935, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4936, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3.5', '103', 'CBIT', 'EEE', '80', '100', '0')
(4937, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3.5', '101', 'University of Mumbai', 'Mechanical Engineering', '65.5', '100', '0')
(4938, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '4', '112', 'None', 'Mechanical Engineering', '3.75', '4', '0')
(4939, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0')
(4940, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '740', '520', '1260', '4', '263', 'MDU', 'MEchanical', '74', '100', '0')
(4941, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0')
(4942, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0')
(4943, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '510', '1270', '3', '104', 'VIT University', 'EIE', '8.57', '10', '0')
(4944, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'Universiity College of Engineering Osmania University.', 'EEE', '75', '100', '0')
(4945, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(4946, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '450', '1210', '3', '106', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '9.06', '10', '0')
(4947, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '166', '150', '316', '3.5', '94', 'VIT', 'Computer Science', '7.88', '10', '0')
(4948, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '650', '1350', '4.5', '105', 'VTU', 'CS', '78', '100', '0')
(4949, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', 'None', 'None', 'CSE', '81.4', '100', '0')
(4950, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '143', '306', '3.5', '95', 'University of Mumbai', 'Information Technology', '66', '100', '0')
(4951, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21')
(4952, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0')
(4953, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '480', '1280', '3', 'None', 'PESIT', 'E & C', '78.4', '100', '0')
(4954, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0')
(4955, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '780', '550', '1330', '3', '90', 'JNTU', 'eee', '0', '0', '0')
(4956, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '46', '25', '71', '5', '102', 'IIITM', 'IT', '8.17', '10', '120')
(4957, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '144', '310', '2.5', '102', 'VTU', 'EnC', '74.5', '100', '0')
(4958, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '94', 'Thiagarajar College of engineering', 'Computer science', '7.86', '10', '0')
(4959, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0')
(4960, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '97', 'Sharif university of Technology', 'Industrial engineering', '3.92', '4', '0')
(4961, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '163', '153', '316', '4', '111', 'SRM', 'Mechanical', '8', '10', '0')
(4962, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0')
(4963, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3', '97', 'SRM', 'Electrical & Electronics Engineering', '8.35', '10', '0')
(4964, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '164', '153', '317', '4.5', '109', 'VTU', 'CS', '82.6', '100', '0')
(4965, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0')
(4966, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0')
(4967, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4.5', '98', 'NIT Durgapur', 'Computer Science and Engineering', '7.52', '10', '0')
(4968, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '4', '104', 'New Horizon College of Engineering', 'Computer Science and Engineering', '78.8', '100', '0')
(4969, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '4.5', '115', 'IIT Delhi', 'Electrical (Power)', '6.78', '10', '0')
(4970, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '3', '97', 'GITAM', 'cse', '8.22', '10', '0')
(4971, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '109', 'VIT University', 'mechanical- energy', '8.3', '10', '0')
(4972, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0')
(4973, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '149', '316', '3.5', '97', 'BIT Mesra', 'cse', '7.51', '10', '36')
(4974, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '640', '1420', '4', '116', 'NIT Tirchy', 'Instrumentation and control', '8.78', '10', '0')
(4975, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '4.5', '117', 'Pondicherry Engineering College', 'CS', '77', '100', '0')
(4976, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '157', '327', '4', '110', 'BITS Hyderabad', 'Mechanical Engineering', '8.31', '10', '12')
(4977, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '3', '104', 'JNTU', 'CSE', '79.18', '100', '0')
(4978, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3', '88', 'SSN College of Engineering', 'EEE', '84', '100', '0')
(4979, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0')
(4980, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '147', '310', '3', '94', 'West Bengal University Of Technology', 'ECE', '9.18', '10', '0')
(4981, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '161', '146', '307', '3', '99', 'K J Somaiya College of Engiineering', 'mechanical', '9.12', '10', '0')
(4982, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42')
(4983, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '166', '148', '314', '2', '101', 'Maharaja Sayajirao University Of Baroda', 'Mech eng', '3.94', '4', '0')
(4984, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '163', '160', '323', '4.5', '111', 'VIT', 'ECE', '8.48', '10', '0')
(4985, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0')
(4986, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'Anna University', 'mechanical', '75', '100', '0')
(4987, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '148', '312', '3', '94', 'BITS Goa', 'Mechanical', '6.5', '10', '0')
(4988, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '161', '147', '308', '3', '105', 'MU', 'Electronics and Telecommunication engineering', '72', '100', '0')
(4989, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '3', '98', 'MU', 'IT', '63', '100', '17')
(4990, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '154', '321', '4.5', '114', 'KIIT', 'Electronics and Electrical', '9.08', '10', '0')
(4991, 'Arizona State University', '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '162', '154', '316', '3.5', '111', 'Kathmandu University', 'Civil', '3.42', '4', '7')
(4992, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0')
(4993, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24')
(4994, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '146', '307', '4', '100', 'University of Pune', 'IT', '75.56', '100', '0')
(4995, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Jadavpur University', 'Electrical Engineering', '8.17', '10', '0')
(4996, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '102', 'Netaji Subhas Institute of Technology', 'Electrical Engineering', '8.02', '10', '0')
(4997, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0')
(4998, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'IIT Kharagpur', 'ECE', '8.64', '10', '0')
(4999, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3.5', '100', 'Model Engineering College', 'Computer science', '80', '100', '0')
(5000, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3.5', '103', 'SGSITS', 'Electronics & Instrumentation', '8', '10', '0')
(5001, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '450', '800', '1250', '3.5', '92', 'NUDT(China)', 'CS', '0', '0', '0')
(5002, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '104', 'BVBCET', 'Information Science', '8.7', '10', '0')
(5003, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '2.5', '90', 'BITS Pilani', 'Electronics and Instrumentation', '7.44', '10', '0')
(5004, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '152', '318', '3.5', '100', 'M.V.S.R Engineering College', 'Electronics & Communication', '76.23', '100', '0')
(5005, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', 'None', "St Joseph's College of Engineering", 'Information Technology', '7.52', '10', '0')
(5006, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '167', '148', '315', '3', '101', 'ISM Dhanbad', 'electronics and communication engineering', '8.2', '10', '0')
(5007, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(5008, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0')
(5009, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3.5', '96', 'Heritage Institute of Technology', 'Computer Science and Engineering', '88', '100', '54')
(5010, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0')
(5011, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '590', '1320', '3', '107', 'Manipal Institue of Technology', 'ECE', '7.47', '10', '0')
(5012, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '159', '150', '309', '3', '102', 'JNTU', 'Computer Science and Engineering', '67.48', '100', '0')
(5013, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '620', '1410', 'None', '100', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0')
(5014, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0')
(5015, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0')
(5016, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '161', '326', '3', '110', 'Jaypee Institute of Information Technology', 'IT', '6.2', '10', '0')
(5017, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '360', '1100', '3.5', 'None', 'Madras Institute of Technology', 'production engineering', '8.6', '10', '0')
(5018, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '620', '1360', '3', '99', 'Zakir husain college AMU', 'Electronics engg', '8.65', '10', '0')
(5019, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0')
(5020, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '3.5', '108', 'CEG', 'computer science', '8.82', '10', '36')
(5021, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0')
(5022, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '650', '1390', '3', '93', 'Sreenidhi Institute of Science & Technology', 'electronics and computers', '72', '100', '0')
(5023, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '470', '1260', '3', '96', 'MVSR', 'Information Technology', '78', '100', '0')
(5024, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '152', '322', '3', 'None', 'BITS Pilani', 'E&I;', '7.58', '10', '24')
(5025, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0')
(5026, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0')
(5027, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '3.5', '98', 'Thapar University', 'Computer Science', '7.96', '10', '0')
(5028, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '149', '304', '3.5', '106', 'JNTU', 'CS', '66', '100', '0')
(5029, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '3.5', '110', 'SASTRA', 'Electrical & Electronics Engineering', '9.00427', '10', '0')
(5030, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'The LNM Institute of Information Technology', 'Computer Science', '7.6', '10', '0')
(5031, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45')
(5032, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', 'None', '108', 'Amrita School of Engineering', 'cse', '9.59', '100', '0')
(5033, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '148', '303', '3', '98', 'GITAM', 'Electrical and Electronics Engineering', '8.32', '10', '0')
(5034, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '590', '1380', '4', '273', 'None', '0', '0', '0', '0')
(5035, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '107', 'Inderprastha engineering college(Affiliated to Uttar Pradesh Technical university)', 'Computer Science and Engineering', '82.74', '100', '0')
(5036, 'Arizona State University', '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '670', '1460', '4.5', '111', 'Manipal Institue of Technology', 'Electronics and Comm.', '8.48', '10', '0')
(5037, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '720', '760', '1480', '4.5', '293', 'VTU', 'Info Sc and Engg', '76', '100', '0')
(5038, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0')
(5039, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '730', '580', '1310', '3', 'None', 'NIT Warangal', 'ECE', '7.84', '10', '0')
(5040, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0')
(5041, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0')
(5042, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '147', '314', '3', '94', 'NIT Rourkela', 'Computer Science', '9.6', '10', '26')
(5043, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '152', '320', '4', '104', 'NIT Kurukshetra', 'Mechanical Engineering', '8.53', '10', '0')
(5044, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3', '111', 'NIT Surat', 'Electronics Engg.', '8.57', '10', '0')
(5045, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0')
(5046, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '154', '316', '4', '109', 'VTU', 'CS', '81', '100', '53')
(5047, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0')
(5048, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', '81', 'None', '159', '0', '159', '0', '107', 'Nagpur University', 'Civil Engg', '58', '100', '0')
(5049, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5050, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0')
(5051, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(5052, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(5053, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2012', '760', '330', '1090', '3', '90', 'MSRIT', 'MECHANICAL', '9.42', '100', '0')
(5054, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '146', '306', '3', '97', 'BMSCE', 'IEM', '8.77', '10', '0')
(5055, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '3.5', '115', 'Anna University', 'biomedical engineering', '8.68', '10', '0')
(5056, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2014', '161', '153', '314', '3.5', '107', 'SRM', 'Biotechnology', '8.58', '10', '0')
(5057, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0')
(5058, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '4', '112', 'Vishwakarma Institute of Technology', 'Electronics', '8.72', '10', '0')
(5059, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '159', '327', 'None', '109', 'Delhi College Of Engineeing', 'Mechanical Department', '68.7', '100', '10')
(5060, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '166', '330', '4.5', 'None', 'VIT', 'ECE', '8.65', '10', '0')
(5061, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0')
(5062, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '450', '1250', '4', '99', 'IIIT Hyderabad', 'ECE', '7.56', '10', '0')
(5063, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50')
(5064, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '145', '306', '3.5', '105', 'Anna University', 'Mechanical Engineering', '8.33', '10', '0')
(5065, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '158', '159', '317', '3', '111', 'VTU', 'Electronics and Communication', '80.17', '100', '0')
(5066, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0')
(5067, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29')
(5068, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0')
(5069, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0')
(5070, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '570', '1340', '3', 'None', 'WBUT', 'applied electronics and instrumentation', '8', '10', '0')
(5071, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(5072, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0')
(5073, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '650', '1430', '3.5', '106', 'SSN College of Engineering', 'BIomedical Engineering', '7.98', '10', '0')
(5074, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '4', '110', 'Punjabi University', 'Computer Engineering', '78.37', '100', '0')
(5075, 'Arizona State University', '6', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46')
(5076, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '147', '311', '3', '100', 'NIT Surathkal', 'Computer Science', '8.11', '10', '24')
(5077, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '610', '1400', '5', '263', 'Anna University', 'ECE', '74', '10', '0')
(5078, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '157', '322', '4', '112', 'BVBCET', 'ECE', '81', '100', '0')
(5079, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0')
(5080, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0')
(5081, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.1', '10', '0')
(5082, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '500', '1280', '3', '106', 'SASTRA', 'Electronics and Communication Engineering', '9.135', '10', '0')
(5083, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '153', '311', '3.5', '106', 'BIT Mesra', 'Computer Science', '7.39', '10', '0')
(5084, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '790', '580', '1370', '4', '111', 'Pondicherry Engineering College', 'Mechanical Engg', '8.1', '10', '0')
(5085, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Spring', 'None', '160', '139', '299', '3', 'None', 'Princeton College of Engg & Tech', 'Electronics and communications', '77.17', '100', '0')
(5086, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0')
(5087, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '530', '1300', '3.5', 'None', 'Madras Institute of Technology', 'ECE', '8.72', '10', '0')
(5088, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '480', '1280', '3.5', '98', 'MVSR', 'I.T', '75', '100', '0')
(5089, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '107', 'VTU', 'Computer Science', '72.5', '100', '46')
(5090, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences', 'Electricals', '80.38', '100', '0')
(5091, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3.5', '97', 'NIT Calicut', 'Computer Science and Engineering', '8.25', '10', '36')
(5092, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '149', '311', '4', '108', 'Velammal Engineering College', 'Mechanical', '8.5', '10', '0')
(5093, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'NIT Calicut', 'Mechanical Eng', '8.18', '10', '29')
(5094, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0')
(5095, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '107', 'JNTU', 'CSE', '70.34', '100', '0')
(5096, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0')
(5097, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '160', '151', '311', '3.5', '104', 'CEG', 'Materials Science & Engineering', '8.03', '10', '0')
(5098, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '151', '314', '3', '100', 'MITCOE', 'Mechanical', '0', '0', '0')
(5099, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'CEG', 'Electrical and Electronics Engineering', '8.71', '10', '0')
(5100, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '4', '105', 'Amrita School of Engineering', 'Infomation Technology', '7.75', '10', '24')
(5101, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0')
(5102, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0')
(5103, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '163', '151', '314', '3', '100', 'JNTU', 'ece', '8', '10', '0')
(5104, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '610', '1370', '3', '102', 'NIT Calicut', 'Mechanical Engineering', '7.1', '10', '0')
(5105, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0')
(5106, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '4', 'None', 'BITS Pilani', 'Mechanical Engineering', '6.8', '10', '0')
(5107, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '157', '322', '3', '108', 'Jadavpur University', 'Electrical Engineering', '7.45', '10', '12')
(5108, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '4', '111', 'Manipal Institue of Technology', 'CSE', '9.56', '10', '0')
(5109, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '111', 'GGSIPU', 'Computer Science and Engineering', '76.52', '100', '0')
(5110, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '160', '314', '3.5', '108', 'University of Pune', 'Computer Science', '70.26', '100', '25')
(5111, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76')
(5112, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2')
(5113, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0')
(5114, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '146', '311', '3.5', '99', 'SRM', 'Mechatronics', '9.2', '10', '0')
(5115, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '510', '1290', '3.5', '105', 'West Bengal University Of Technology', 'Electronics and communication', '8.55', '10', '0')
(5116, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18')
(5117, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '490', '1270', '4', '100', 'SSN College of Engineering', 'Computer Science', '87', '100', '0')
(5118, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0')
(5119, 'Arizona State University', '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '152', '317', '3.5', '104', 'MSRIT', 'Electronics and Communication', '8.45', '10', '0')
(5120, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '158', '147', '305', '3', '85', 'None', 'Biotechnology', '75', '100', '26')
(5121, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0')
(5122, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'MU', 'ECE', '73', '100', '0')
(5123, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '158', '152', '310', '3', '102', 'Galgotia College of Engg & Technology (UPTU)', 'Electronics & Instrumentation', '70.9', '100', '0')
(5124, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0')
(5125, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '350', '1150', '3.5', '93', 'MU', 'Electronics and Telecommuncation', '68', '100', '0')
(5126, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0')
(5127, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0')
(5128, 'Arizona State University', '6', 'Admit', 'MS', 'Energy Technologies', 'Fall ', '2014', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Mechanical Engineering', '8.83', '10', '0')
(5129, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0')
(5130, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3.5', '100', 'CEG', 'Computer Science', '8.3', '10', '0')
(5131, 'Arizona State University', '6', 'Admit', 'MS', 'Integrated Manufacturing Systems Engineering', 'Fall ', '2013', '166', '152', '318', '3', '104', 'BITS Pilani', 'Mechanical Engineering', '6.87', '10', '0')
(5132, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '3.5', '97', 'Pune University', 'electronics and telecommunication', '3.3', '4', '0')
(5133, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '3', 'None', 'Anna University', 'Computer Science', '0', '0', '0')
(5134, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '144', '309', '3', '104', 'JNTU', 'ECE', '79.7', '100', '0')
(5135, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0')
(5136, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '151', '319', '3', '108', 'Sri Jayachamarajendra College of Engineering', 'Information Science', '78.4', '100', '0')
(5137, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0')
(5138, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0')
(5139, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0')
(5140, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '152', '313', '3.5', '113', 'KL University', 'ECE', '8.32', '10', '0')
(5141, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '104', 'BITS Pilani', 'Electronics and Communication', '8.4', '10', '0')
(5142, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0')
(5143, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '112', 'Anil Neerukonda Institue of Technology and Sciences', 'EEE', '8.55', '10', '0')
(5144, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3', '94', 'ANITS', 'Computer Science', '78', '100', '0')
(5145, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '158', '151', '309', '3', '7', 'CVRCE', 'ECE', '73.1', '100', '0')
(5146, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0')
(5147, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '152', '315', '3.5', '110', 'Amrita School of Engineering', 'Electronics and Communication', '7.9', '10', '0')
(5148, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0')
(5149, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'RNSIT', 'Information Science', '80.1', '100', '0')
(5150, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '520', '1300', '3.5', '103', 'Anna University', 'Electrical Engineering', '77.7', '100', '0')
(5151, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Communication', '81', '100', '0')
(5152, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Commuinication', '81', '100', '0')
(5153, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '155', '144', '299', '22', 'None', 'JNTU', 'electrical and electronics engineering', '3.6', '4', '0')
(5154, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40')
(5155, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '144', '307', '2.5', '102', 'GITAM', 'Mechanical Engineering', '8.4', '10', '0')
(5156, 'Arizona State University', '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2011', '780', '530', '1310', '3', '98', 'SJCE', 'Electronics and Communication', '80', '100', '0')
(5157, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '13', '168', '156', '324', 'None', '113', 'University of Pune', 'Electronics', '63.8', '100', '0')
(5158, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42')
(5159, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '103', 'Anna University', 'Computer Science', '76', '100', '0')
(5160, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3.5', '105', 'VTU', 'Information Science', '75', '100', '0')
(5161, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0')
(5162, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0')
(5163, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0')
(5164, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0')
(5165, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '650', '1450', '3.5', '102', 'Amrita School of Engineering', 'ECE', '8.86', '10', '0')
(5166, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '154', '319', '3.5', '96', 'VTU', 'Electronics and Communication', '79', '100', '0')
(5167, 'Arizona State University', '6', 'Admit', 'MS', 'CS / MIS', 'Spring ', '2014', '160', '148', '308', 'None', '102', 'SSN College of Engineering', 'IT', '85', '100', '0')
(5168, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0')
(5169, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '3.5', '93', 'Pune University', 'Computer', '66.5', '100', '0')
(5170, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0')
(5171, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '159', '161', '320', '4', '117', 'IEM', 'CS', '8.43', '10', '0')
(5172, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '590', '1390', '3', '112', 'None', 'EE', '9.1', '10', '0')
(5173, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0')
(5174, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(5175, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '350', '1110', '4', '95', 'Bangalore Institute of Technology', 'Telecommunication', '80', '100', '0')
(5176, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0')
(5177, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(5178, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '147', '312', '3', 'None', 'CBIT', 'CSE', '84', '100', '0')
(5179, 'Arizona State University', '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '163', '161', '324', '4.5', '112', "St Joseph's College of Engineering", 'Information Technology', '8.2', '10', '23')
(5180, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'National Institute of Science and Technology Orissa', 'CSE', '8.25', '10', '0')
(5181, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'NIT-Durgapur', 'Mechanical Engg.', '8.32', '10', '0')
(5182, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '152', '316', '3.5', 'None', 'VSS Univ of Technology', 'Electronics and Telecomm.', '9.26', '10', '0')
(5183, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '155', '148', '303', '3', '95', 'Anna University', 'ECE', '8.71', '10', '31')
(5184, 'Arizona State University', '6', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0')
(5185, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0')
(5186, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0')
(5187, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26')
(5188, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0')
(5189, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0')
(5190, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '3', '107', 'WBUT', 'IT', '7.85', '10', '0')
(5191, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0')
(5192, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4', 'None', 'NIE', 'Mechanical Engineering', '8.99', '10', '0')
(5193, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0')
(5194, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '115', 'M.V.S.R Engineering College', 'ECE', '82', '100', '0')
(5195, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '157', '319', '4', 'None', 'Delhi University', 'ECE', '66', '100', '0')
(5196, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '590', '1390', '3.5', '106', 'W.B.U.T.', 'I.T.', '7.85', '10', '0')
(5197, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '510', '1300', '3', '107', 'Sri Jayachamarajendra College of Engineering', 'ec&e;', '9.32', '10', '0')
(5198, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '145', '310', '3.5', '96', 'BITS Hyderabad', 'Electrical Engineering', '9.12', '10', '0')
(5199, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '149', '308', '4.5', '111', 'VTU', 'Mechanical', '72', '100', '0')
(5200, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0')
(5201, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '3.5', '111', 'VTU', 'E&C;', '7.7', '10', '0')
(5202, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(5203, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0')
(5204, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '157', '151', '308', '3.5', '108', 'VTU', 'Mechanical', '70', '100', '18')
(5205, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0')
(5206, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'None', 'Electronics and Telecommunication', '8.04', '100', '0')
(5207, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3', '100', 'CUSAT', 'Computer Science And Engineering', '74.2', '100', '0')
(5208, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5209, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '640', '1410', '3', '106', 'SJCE', 'EEE', '9.03', '10', '0')
(5210, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0')
(5211, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '102', 'Maamallan', 'ece', '8.66', '10', '0')
(5212, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '108', 'University of Pune', 'Computer', '69', '100', '0')
(5213, 'Arizona State University', '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '790', '390', '1180', '3', '102', 'Anna University', 'Instrumentation and Control', '77', '100', '0')
(5214, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0')
(5215, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7')
(5216, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0')
(5217, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0')
(5218, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0')
(5219, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '111', 'Manipal Institue of Technology', 'Mechanical and Manufacturing Engineering', '7.7', '10', '0')
(5220, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '158', '317', '4.5', '109', 'MVSR', 'Electronics and Communication', '75', '100', '0')
(5221, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '600', '1400', '4.5', '280', 'IIIT Hyderabad', 'CSE', '7.2', '10', '0')
(5222, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3.5', '94', 'BITS Goa', 'Electronics and Instrumentation', '6.12', '10', '0')
(5223, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '142', '303', '3', '102', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.6', '10', '0')
(5224, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0')
(5225, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2016', '154', '141', '295', '3', '81', 'SASTRA', 'Information Technology', '8', '10', '65')
(5226, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0')
(5227, 'Arizona State University', '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '138', '289', '4', '100', 'Pune University', 'Electronics', '6', '100', '0')
(5228, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'NIT Durgapur', 'CSE', '85', '100', '0')
(5229, 'Arizona State University', '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0')
(5230, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '99', 'GITAM', 'Computer Science and Engineering', '8.85', '10', '0')
(5231, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '680', '1460', '4', '112', 'Uttarakhand Technical University', 'Information Technology', '81.1', '100', '0')
(5232, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '470', '1220', '3.5', 'None', 'MU', 'Chemical', '74', '100', '0')
(5233, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '110', 'JNTU', 'ECE', '81.5', '100', '0')
(5234, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0')
(5235, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0')
(5236, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0')
(5237, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '165', '152', '317', '3.5', '108', 'PESIT', 'Computer Science', '8.8', '10', '36')
(5238, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '162', '328', '4', '111', 'Osmania University', 'ECE', '80', '100', '0')
(5239, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '157', '325', '4', '112', 'NIT Tirchy', 'Instrumentation and Control Engineering', '9.1', '10', '0')
(5240, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '380', '1180', '3', '101', 'NIT Durgapur', 'ECE', '8.84', '10', '0')
(5241, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '620', '570', '1190', '4', '57', 'SSN College of Engineering', 'CSE', '83', '100', '0')
(5242, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0')
(5243, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20')
(5244, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0')
(5245, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0')
(5246, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0')
(5247, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3', 'None', 'University of Delhi', 'Computer Sc', '67', '100', '28')
(5248, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '4', '109', 'None', '0', '0', '0', '0')
(5249, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '106', 'Miami University', 'Computer Science', '3.34', '4', '0')
(5250, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(5251, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5252, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21')
(5253, 'Arizona State University', '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0')
(5254, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '670', '1450', '4.5', '102', 'Ramdeobaba Engg. College Nagpur University', 'Electronics Engineering', '71.16', '100', '0')
(5255, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '146', '314', '3', '108', 'Delhi University', 'ICE', '70.83', '100', '54')
(5256, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '480', '1250', '4', '109', 'Thapar University', 'Electronics & Instrumentation', '8.31', '10', '0')
(5257, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(5258, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '155', '150', '305', '3', '99', 'Anna University', 'EEE', '7.91', '10', '0')
(5259, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '139', '299', '3', '92', 'VIT University', 'Mechanical Engineering', '7.96', '10', '0')
(5260, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(5261, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0')
(5262, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3', '90', 'Vasavi College of Engineering', 'CSE', '79', '100', '0')
(5263, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '141', '307', '3', '65', 'SNIST', 'Computer Science', '7.5', '10', '0')
(5264, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0')
(5265, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '146', '313', '4', '98', 'MU', 'Mechanical', '65', '100', '0')
(5266, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '108', 'Dayananda Sagar College of Engineering', 'Computer science', '74.4', '100', '0')
(5267, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '94', 'Pondicherry University', 'Electronics and Communication Engineering', '7.91', '10', '0')
(5268, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(5269, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0')
(5270, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4.5', '112', 'MU', 'Information Technology', '75', '100', '0')
(5271, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3', '96', 'Gujarat Technological University', 'Mechancial Engineering', '67', '100', '0')
(5272, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0')
(5273, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '165', '155', '320', '4.5', '116', 'Jadavpur University', 'Metallurgical and Material Engineering', '8.85', '10', '0')
(5274, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '160', '324', '4', '108', 'NITK Surathkal', 'civil', '7.1', '10', '0')
(5275, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3.5', '104', 'College Of Engineering Roorkee', 'Computer Science', '73.5', '100', '0')
(5276, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '96', 'CEG', '0', '9.07', '100', '0')
(5277, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60')
(5278, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '108', 'Gujarat Technological University', 'Computer', '8.78', '10', '0')
(5279, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '650', '1420', '4.5', '117', 'NIT Durgapur', 'Electrical Engineering', '8.74', '10', '0')
(5280, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0')
(5281, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', '4', '105', 'WBUT', 'CSE', '8.36', '10', '0')
(5282, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0')
(5283, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '110', 'SRM', 'CSE', '83', '100', '0')
(5284, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0')
(5285, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '5', '118', 'NITK Surathkal', 'ECE', '8.1', '10', '0')
(5286, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '155', '321', '4', '108', 'CEG', 'Mechanical', '8.11', '10', '0')
(5287, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '150', '314', '3', '98', 'Graphic Era University', 'Computer Science and Engineering', '75.31', '100', '24')
(5288, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0')
(5289, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0')
(5290, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0')
(5291, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0')
(5292, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4.5', '111', 'Manipal Institue of Technology', 'Information Technology', '7.59', '10', '0')
(5293, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '13', '166', '154', '320', '2.5', '108', 'BITS Goa', 'EEE', '7.66', '10', '0')
(5294, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '460', '1220', 'None', '103', 'VTU', 'Electronics and Communication', '79', '100', '0')
(5295, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '157', '327', '4', 'None', 'NIT Rourkela', 'Electronics and Communication', '8.51', '10', '0')
(5296, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '110', 'Pune University', 'electronics enineering', '58', '100', '0')
(5297, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '650', '1440', '4', '114', 'Pune University', 'Computer Science', '73', '100', '0')
(5298, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'None', '0', '0', '0', '60')
(5299, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '590', '1320', '4', '273', 'K J Somaiya College of Engiineering', 'CE', '66', '100', '0')
(5300, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'Delhi College Of Engineeing', 'Electrical & Electronics', '81.25', '100', '12')
(5301, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0')
(5302, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0')
(5303, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24')
(5304, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11')
(5305, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0')
(5306, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0')
(5307, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0')
(5308, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0')
(5309, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18')
(5310, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '360', '1140', '3.5', '102', 'Nagarjuna University', 'Information science and technology', '83', '100', '0')
(5311, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3.5', '111', 'VTU', 'Information Science', '73', '100', '0')
(5312, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0')
(5313, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '118', 'VTU', 'CSE', '81', '100', '0')
(5314, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '113', 'PESIT', 'ECE', '80.15', '100', '0')
(5315, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0')
(5316, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', '3', '108', 'Amrita School of Engineering', 'Computer Science', '7.4', '10', '0')
(5317, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0')
(5318, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', '108', 'Anna University', 'B.Tech I.T', '8', '10', '0')
(5319, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '550', '1310', '4', '277', 'PTU', 'Electrical Engineering', '76.46', '100', '0')
(5320, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '107', 'SASTRA', 'Mechanical', '9.3', '10', '0')
(5321, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '148', '316', '4', '101', 'University College of Engineering Jawaharlal Nehru Technological University', 'Computer Science', '79.2', '100', '0')
(5322, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0')
(5323, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '690', '1480', '4', '112', 'MU', 'Computer', '64.5', '100', '0')
(5324, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0')
(5325, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '95', 'VIIT', 'ENTC', '4', '100', '0')
(5326, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '380', '1130', '2.5', '85', 'SVCE', 'EEE', '76', '100', '0')
(5327, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0')
(5328, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0')
(5329, 'Arizona State University', '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0')
(5330, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0')
(5331, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '480', '1260', '3', '100', 'BVBCET', 'Information Science', '8.29', '10', '0')
(5332, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0')
(5333, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '164', '330', '4', '108', 'VJTI', 'Computer Engineering', '7.5', '10', '0')
(5334, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '99', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.4', '10', '0')
(5335, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '530', '1320', '3.5', '117', 'DR.AIT', 'ECE', '76', '100', '0')
(5336, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '650', '1420', '5', '287', 'SASTRA', 'Information Technology', '9.2', '10', '0')
(5337, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3', '88', 'PICT', 'Information Technology', '3.77', '4', '0')
(5338, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0')
(5339, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '102', 'NIT Bhopal', 'Computer Science', '7.99', '10', '0')
(5340, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0')
(5341, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '150', '315', '3', '105', 'VIT University', 'ECE', '7.92', '10', '3')
(5342, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '4', '92', 'Chaitanya Bharathi Institute of Technology', 'ECE', '74', '100', '0')
(5343, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(5344, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', "st.thomas' college of engg and technology", 'information technology', '8.52', '10', '0')
(5345, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3', '94', 'Anna University', 'cse', '7.5', '100', '0')
(5346, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '540', '1260', '4', '105', 'VTU', 'EE', '79', '100', '0')
(5347, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0')
(5348, 'Arizona State University', '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0')
(5349, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(5350, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', 'None', '750', '3', '100', 'VTU', 'EEE', '84.41', '100', '0')
(5351, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '145', '163', '308', '3', 'None', 'BITS Pilani', 'Mechanical Engieering', '7.39', '10', '0')
(5352, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '154', '324', '3', '103', 'NIT Kurukshetra', 'Civil Engineering', '7.8', '10', '0')
(5353, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '160', '157', '317', '3.5', '115', 'SRM', 'Mechanical Engineering', '8.744', '10', '0')
(5354, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3', '103', 'BITS Pilani', 'EEE', '9.24', '10', '0')
(5355, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0')
(5356, 'Arizona State University', '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10')
(5357, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(5358, 'Arizona State University', '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0')
(5359, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0')
(5360, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '163', '157', '320', '4', '108', 'Pondicherry Engineering College', 'EEE', '7.7', '10', '42')
(5361, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0')
(5362, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0')
(5363, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '139', '305', '2.5', 'None', 'GITAM', 'ECE', '8.52', '10', '0')
(5364, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0')
(5365, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '650', '1390', '3', '106', 'VTU', 'Computer Science', '75.4', '100', '0')
(5366, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0')
(5367, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '4.5', '110', 'None', '0', '0', '0', '0')
(5368, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0')
(5369, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3.5', 'None', 'Panjab University', 'UIET', '75', '100', '0')
(5370, 'Arizona State University', '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5371, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(5372, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0')
(5373, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '790', '510', '1300', '3.5', '101', 'SRM', 'Mechanical', '9.19', '10', '0')
(5374, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58')
(5375, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '156', '315', '3', '100', 'CEG', 'Industrial Engineering', '7.97', '10', '0')
(5376, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0')
(5377, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '4.5', '106', 'Amrita School of Engineering', 'ECE', '9.27', '10', '0')
(5378, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '154', '313', '3', '109', 'CEG', 'Computer Science and Engineering', '9.18', '10', '0')
(5379, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0')
(5380, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0')
(5381, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0')
(5382, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '530', '1240', '3', '104', 'VTU', 'Computer Science', '72', '100', '0')
(5383, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '144', '306', '4', '108', 'PSG College of Technology', 'EEE', '9.49', '10', '0')
(5384, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '149', '311', '3', '86', 'VIT University', 'Mechanical engg', '7.82', '10', '0')
(5385, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2014', '162', '151', '313', '3.5', '100', 'Anna University', 'Cse', '7.5', '10', '0')
(5386, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4', '108', 'VIT', 'ECE', '9.16', '10', '0')
(5387, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '590', '1350', '3', '117', 'RMD Engineering College', 'Electronics and Communication', '8.7', '10', '0')
(5388, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(5389, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '149', '318', '3', '104', 'GGSIPU', 'Computer Science', '73', '100', '57')
(5390, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Anna University', 'Mechanical', '7.5', '10', '0')
(5391, 'Arizona State University', '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(5392, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0')
(5393, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5394, 'Arizona State University', '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Spring ', '2014', '161', '144', '305', '3', '97', 'NIT RAIPUR', 'METALLURGY', '8.1', '10', '0')
(5395, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0')
(5396, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0')
(5397, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0')
(5398, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '430', '1210', '3', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICATION', '76', '100', '0')
(5399, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0')
(5400, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '154', '310', '3.5', '92', 'MU', 'Production', '67', '100', '0')
(5401, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0')
(5402, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0')
(5403, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0')
(5404, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '148', '316', '3', '99', 'SASTRA', 'Mechanical', '8.3', '10', '0')
(5405, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'University Vishweriah College of Engineering', 'Computer Science', '80', '100', '0')
(5406, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '165', '149', '314', '3', '101', 'Dharamsinh Desai University', 'Instrumentation and Control', '8.9', '100', '0')
(5407, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', '109', 'Chhatrapati Shahuji Maharaj University Kanpur', 'BTech Computer Science', '10', '10', '44')
(5408, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '147', '316', '3', '97', 'MU', 'Electronics Engg', '61', '100', '0')
(5409, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '156', '320', '3', '103', 'SPCE', 'Electrical engineering', '78', '100', '0')
(5410, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3', '109', 'VNIT Nagpur', 'ece', '73', '100', '0')
(5411, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '143', '306', '3', '88', 'JNTU', 'Mechanical', '68', '100', '0')
(5412, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0')
(5413, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '95', 'NITK Surathkal', 'civil', '7.61', '10', '0')
(5414, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '113', 'DSI', 'Electrical and Electronics', '80', '100', '0')
(5415, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '109', 'University of Mumbai', 'Mechanical Engineering', '69', '100', '0')
(5416, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0')
(5417, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '450', '1150', '3', '82', 'CVRCE', 'ECE', '72', '100', '0')
(5418, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0')
(5419, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3.5', '108', 'SET JAIN UNIVERSITY', 'ECE', '74.7', '100', '0')
(5420, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20')
(5421, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '3.5', 'None', 'Nagarjuna University', 'CS', '8.3', '10', '0')
(5422, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '149', '314', '3.5', '105', 'Pondicherry Engineering College', 'Information Technology', '8.51', '10', '48')
(5423, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '149', '311', '4', '105', 'SRM', 'Mechanical Engineering', '9.34', '10', '0')
(5424, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '430', '1220', '4', '100', 'PESIT', 'Electronics and Communication Department', '85.5', '100', '0')
(5425, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0')
(5426, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '152', '316', '3.5', '107', 'None', '0', '0', '0', '0')
(5427, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0')
(5428, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2015', '165', '156', '321', '4', '112', 'PESIT', 'Mechanical', '9.21', '10', '24')
(5429, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'JNTU', 'CSE', '70', '100', '0')
(5430, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0')
(5431, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '600', '1400', '5', '290', 'Anna University', 'ECE', '85', '100', '0')
(5432, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '148', '313', '3.5', '106', 'Thapar University', 'Civil Engineering', '8.54', '10', '0')
(5433, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '167', '149', '316', '3', '107', 'Thapar University', 'Computer Science', '6.22', '10', '0')
(5434, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3.5', '111', 'Mahatma Gandhi University Kerala', 'Electronics and Communication', '7.47', '10', '0')
(5435, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '143', '302', '3', '84', 'SKIET Kurukshetra University', 'Information Technology', '74', '100', '0')
(5436, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0')
(5437, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '670', '1430', '4', '115', 'SVCE', 'EEE', '84', '100', '0')
(5438, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '166', '144', '310', '3', 'None', 'Bharati Vidyapeeth', 'Biomedical', '0', '0', '0')
(5439, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0')
(5440, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '150', '315', '4.5', 'None', 'PESIT', 'Mechanical', '9.08', '10', '0')
(5441, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32')
(5442, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0')
(5443, 'Arizona State University', '6', 'Admit', 'MS', 'microelectronics', 'Fall ', '2015', '158', '163', '321', '3', '107', 'Amrita School of Engineering', 'Electronics and Instrumentation', '8.57', '10', '36')
(5444, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '145', '307', '3', '95', 'Vasavi College of Engineering', 'Computer Science', '82', '100', '12')
(5445, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '96', 'BITS Pilani', 'COMPUTERS', '7.8', '10', '0')
(5446, 'Arizona State University', '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '104', 'University of Pune', 'Mechanical', '61', '100', '60')
(5447, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '103', 'JNTU', 'IT', '78.56', '100', '0')
(5448, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5449, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5450, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0')
(5451, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0')
(5452, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0')
(5453, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0')
(5454, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29')
(5455, 'Arizona State University', '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '154', '149', '303', '4', '101', 'JNTU', 'Metallurgy and Materials Engineering', '62.5', '100', '0')
(5456, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0')
(5457, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0')
(5458, 'Arizona State University', '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '162', '152', '314', '4', '100', 'VIT', 'Information Technology', '8.95', '10', '0')
(5459, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0')
(5460, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0')
(5461, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '94', 'COEP', 'Computer', '0', '0', '0')
(5462, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '153', '318', '3.5', '105', 'NIT Surat', 'Electronics', '7.74', '10', '0')
(5463, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0')
(5464, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0')
(5465, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '700', '1430', '3.5', '112', 'Anna University', 'Mechanical Engineering', '76.18', '100', '0')
(5466, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '620', '1400', '3.5', '106', 'Assam Engineering College', 'Electrical Engineering', '74.3', '100', '0')
(5467, 'Arizona State University', '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '470', '1270', '3', '109', 'RAIT', 'Electronics and Telecommunication', '6.5', '10', '0')
(5468, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0')
(5469, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '150', '315', 'None', '99', 'Jalpaiguri Government Engineering College', 'Electronics and Communication', '8.11', '10', '0')
(5470, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0')
(5471, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0')
(5472, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0')
(5473, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '164', '157', '321', '4.5', '105', 'NIT Tirchy', 'Production Engineering', '7.86', '10', '24')
(5474, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '152', '316', '3', '104', 'NIT Allahabad', 'CSE', '8.68', '10', '0')
(5475, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34')
(5476, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '680', '1470', 'None', '108', 'SJCE', 'E & C', '68', '100', '0')
(5477, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '147', '311', '3', '98', 'VNIT Nagpur', 'Mechanical', '8', '10', '24')
(5478, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0')
(5479, 'Arizona State University', '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0')
(5480, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '4.5', '115', "People's Education Society Institute of Technology (PESIT)", 'ECE', '8.51', '10', '0')
(5481, 'Arizona State University', '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0')
(5482, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(5483, 'Arizona State University', '6', 'Admit', 'MS', 'Data Science', 'Spring ', '2016', '162', '159', '321', '3.5', '111', 'NIT Warangal', 'Electrical and Electronics Engineering', '8.4', '10', '24')
(5484, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '530', '1310', '4', 'None', 'Pune University', 'Mechanical', '73', '100', '0')
(5485, 'Arizona State University', '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', 'None', 'VTU', 'Mechanical', '75.6', '100', '0')
(5486, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '147', '304', '3.5', '108', 'Sri Sairam Engineering College', 'ECE', '8.3', '10', '0')
(5487, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0')
(5488, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'Amrita School of Engineering', 'CSE', '7.69', '10', '0')
(5489, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '92', 'VTU', 'ECE', '71', '100', '0')
(5490, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(5491, 'Arizona State University', '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0')
(5492, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0')
(5493, 'Arizona State University', '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', 'None', 'KIIT', 'Computer Science(IT)', '8.4', '10', '0')
(5494, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '4', '96', 'Sardar Patel College of Engineering', 'Electrical Engineeting', '72', '100', '0')
(5495, 'Arizona State University', '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '4', '114', 'NIT Calicut', 'ECE', '9.16', '10', '0')
(5496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '140', '306', '3', '95', 'VTU', 'Electronics and Communication', '82.8', '100', '0')
(5497, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26')
(5498, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '159', '153', '312', '3', '99', 'MRCET(affiliated to JNTUH)', 'aero', '72', '100', '0')
(5499, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '153', '317', '3', '98', 'CSPIT', 'electronics and communication', '8.51', '10', '0')
(5500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0')
(5501, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '91', 'Northern India Engineering College UPTU', 'Biomedical engineering', '65', '100', '0')
(5502, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0')
(5503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0')
(5504, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0')
(5505, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '150', '309', '3', '109', 'VTU', 'Computer Science', '70', '100', '17')
(5506, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0')
(5507, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '155', '316', '3', '102', 'NIT Hamirpur', 'Electronics and Communication Engineering', '8.04', '10', '20')
(5508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0')
(5509, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '153', '317', '3.5', '110', 'VTU', '0', '70', '100', '0')
(5510, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '3', '103', 'Jaypee Institute of Information Technology', 'CSE', '70', '100', '0')
(5511, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56')
(5512, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0')
(5513, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '148', '311', '3', 'None', 'PESIT', 'Telecommunication', '8.5', '10', '23')
(5514, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '156', '149', '305', '3', 'None', 'MU', 'electronics and telecommunication', '65.13', '100', '0')
(5515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0')
(5516, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '3.5', '117', 'RNSIT', 'Instrumentation Technology', '78', '100', '0')
(5517, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '146', '309', '3', '102', 'Manipal Institue of Technology', 'Information Technology', '7', '10', '0')
(5518, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0')
(5519, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '146', '308', '3.5', '97', 'VSS Univ of Technology', 'ELECTRICAL ENGINEERING', '7.77', '10', '0')
(5520, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3', '105', 'CoE Trivandrum', 'ECE', '83.3', '100', '0')
(5521, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58')
(5522, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0')
(5523, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '680', '600', '1280', '3.5', '88', 'Dr MGR Educational and Research Institute', 'Computer Science and Engineering', '7.43', '10', '0')
(5524, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0')
(5525, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '154', '318', '4', '111', 'Goa University', 'Electronics and Telecommunication', '65.44', '100', '0')
(5526, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '149', '304', '3', '93', 'Anna University', 'Mechanical Engineering', '7.6', '10', '0')
(5527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32')
(5528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28')
(5529, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0')
(5530, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', 'None', '164', '148', '312', '3', '101', 'University of Pune', 'Mechanical', '61', '100', '0')
(5531, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(5532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37')
(5533, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '147', '309', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'ELECTRONICS AND COMMUNICATION', '7.8', '10', '18')
(5534, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0')
(5535, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '153', '315', '3', '105', 'Reva Institute of Technology', 'cse', '0', '0', '0')
(5536, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0')
(5537, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0')
(5538, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '149', '312', '4', '101', 'Manav Rachna', 'ECE', '8', '10', '0')
(5539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0')
(5540, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0')
(5541, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '158', '158', '316', '4', '116', 'MU', 'EXTC', '70.47', '100', '12')
(5542, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0')
(5543, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0')
(5544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0')
(5545, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0')
(5546, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3', '100', 'RGPV', 'computer science', '73', '100', '0')
(5547, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '142', '302', '2.5', 'None', 'Dr.AIT', 'TCE', '9.03', '10', '0')
(5548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0')
(5549, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(5550, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0')
(5551, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0')
(5552, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0')
(5553, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '165', '153', '318', '4', '113', 'Pune University', 'Information technology', '69', '100', '0')
(5554, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3.5', '95', 'VNR VJIET', 'IT', '75', '100', '0')
(5555, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '152', '310', '3', '102', 'Osmania University', 'EEE', '67', '100', '0')
(5556, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '590', '1350', '3', 'None', 'Velammal Engineering College', 'Electronics and Instrumentation', '75', '100', '0')
(5557, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0')
(5558, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0')
(5559, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70')
(5560, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', '4.5', '118', 'VTU', 'Electronics and Communication', '67', '100', '0')
(5561, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12')
(5562, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '113', 'Manipal Institue of Technology', 'Mechatronics', '7.5', '10', '0')
(5563, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '0', 'SVCE', 'Information Technology', '8.44', '10', '0')
(5564, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18')
(5565, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '156', '319', '3.5', '112', 'MNIT', 'Electronics and Communication Engineering', '6.8', '10', '0')
(5566, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0')
(5567, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '158', '319', '4.5', '111', 'Pune University', 'Electronics and Telecom', '65', '100', '0')
(5568, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13')
(5569, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0')
(5570, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0')
(5571, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0')
(5572, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0')
(5573, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0')
(5574, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '167', '155', '322', '4.5', '109', 'University of Pune', 'Electronics and Telecommunication', '64', '100', '0')
(5575, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0')
(5576, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', 'None', 'None', 'PICT', 'Computer Engg', '64', '100', '0')
(5577, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '440', '1170', '3', '102', 'Pune University', 'Computer Engineering', '73', '100', '0')
(5578, 'Arizona State University', '6', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48')
(5579, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0')
(5580, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '148', '313', '3', '97', 'Jaypee Institute of Information Technology', 'ECE', '7.4', '10', '51')
(5581, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '110', 'Sinhgad College of Engineering', 'Computer Engg', '60', '100', '0')
(5582, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0')
(5583, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '650', '570', '1220', '4', '101', 'University of Pune', 'Computer & I.T', '56', '100', '0')
(5584, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0')
(5585, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '580', '1310', '3.5', '107', 'SNDT Univ Mumbai', 'ENC', '7.73', '10', '0')
(5586, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '640', '1350', '3', '113', 'JNTU', 'ECE', '73', '100', '0')
(5587, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '158', '325', '4', '115', 'University of Mumbai', 'Computer Engineering', '0', '0', '0')
(5588, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '165', '153', '318', '3.5', '110', 'BITS Pilani', 'chemical', '7.34', '10', '2')
(5589, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0')
(5590, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0')
(5591, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '158', '154', '312', '3.5', '114', 'West Bengal University Of Technology', 'ELECTRONICS AND COMMUNICATION', '8.64', '10', '0')
(5592, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '156', '318', '3.5', '112', 'None', '0', '58.1', '100', '0')
(5593, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0')
(5594, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', 'None', 'University of Pune', 'Computer', '65.8', '100', '0')
(5595, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34')
(5596, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '164', '327', '4.5', '116', 'VTU', 'Electronics and Communication', '65.35', '100', '20')
(5597, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '3.5', '82', 'CEG', 'Electrical and Electronics Engineering', '9.31', '10', '0')
(5598, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0')
(5599, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '149', '312', '3', '91', 'Maharishi Dayanand University', 'Information Technology', '72', '100', '0')
(5600, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3', '93', 'CVRCE', 'Electronics and Communication Engineering', '82', '100', '0')
(5601, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0')
(5602, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0')
(5603, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0')
(5604, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0')
(5605, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '760', '530', '1290', '3.5', '107', 'SGSITS', 'ECE', '69.78', '100', '0')
(5606, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11')
(5607, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '3', '105', 'GCET Sardar Patel University', 'Computers', '6.38', '10', '0')
(5608, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'IP University MAIT', 'ECE', '81', '100', '0')
(5609, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0')
(5610, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(5611, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18')
(5612, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0')
(5613, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '580', '1320', '3.5', '97', 'CUSAT', 'Electronics and Communication Engineering', '76.32', '100', '0')
(5614, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '3', '93', 'M G university Kerala', 'CS', '73.3', '100', '12')
(5615, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '153', '313', '4', '105', 'Pune University', 'ENTC', '60', '100', '56')
(5616, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '156', '315', '3.5', '112', 'CITM Faridabad Haryana (affiliated to Maharshi Dayanand University Rohtak)', 'Aeronautical Engineering', '70.5', '100', '0')
(5617, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24')
(5618, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0')
(5619, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '158', '320', 'None', '108', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.7', '100', '52')
(5620, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0')
(5621, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '149', '309', '4', 'None', 'DSCE', 'ECE', '72', '100', '0')
(5622, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0')
(5623, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '155', '318', '3', '107', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0')
(5624, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '150', '306', '3.5', 'None', 'Anna University', 'Electrical and Electronics Eng.', '8.7', '10', '24')
(5625, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45')
(5626, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '101', 'NITK Surathkal', 'Electronics & Comm Engg', '7.34', '10', '0')
(5627, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0')
(5628, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0')
(5629, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '145', '304', '3', '90', 'SRM', 'ELECTRICAL AND ELECTRONICS', '9.328', '10', '0')
(5630, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24')
(5631, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0')
(5632, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(5633, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '111', 'CoE Trivandrum', 'Computer Science', '7.93', '10', '36')
(5634, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '101', 'JNTU', 'ECE', '76', '100', '0')
(5635, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(5636, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '630', '350', '980', '3', '93', 'EEC', 'ECE', '0', '0', '0')
(5637, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '3.5', '104', 'NIT Durgapur', 'ELECTRICAL ENGINEERING', '7.97', '10', '0')
(5638, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0')
(5639, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3')
(5640, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0')
(5641, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '141', '299', '3', 'None', 'SSN College of Engineering', 'EEE', '75', '100', '0')
(5642, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0')
(5643, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0')
(5644, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0')
(5645, 'Arizona State University', '6', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8')
(5646, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0')
(5647, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0')
(5648, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', 'None', '100', 'IIT Roorkee', 'Paper Technology', '7.84', '10', '43')
(5649, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '650', '1440', '4', '110', 'VTU', 'Mechanical', '68', '100', '0')
(5650, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0')
(5651, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '152', '315', '3', '104', 'VIT', 'Electrical and Electronics Engineering', '8.97', '10', '0')
(5652, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '157', '322', '4.5', '115', 'university pf Pune', 'Electronics and telecomm', '64', '100', '15')
(5653, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '153', '316', '4', '108', 'VTU', 'Computer Science', '83.68', '100', '0')
(5654, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36')
(5655, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '160', '149', '309', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '7.35', '10', '0')
(5656, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '360', '1140', '3', '101', 'Siddaganga Institue of Technology', 'Electronics and Communication', '9.27', '10', '0')
(5657, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '3', '102', 'Sardar Patel College of Engineering', 'Information Technology', '67', '100', '0')
(5658, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical & Electronics', '67', '100', '0')
(5659, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '167', '324', '3', '110', 'BITS Pilani', 'Electronics & Instrumentation', '6', '10', '0')
(5660, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '101', 'Panimalar Engineering College', 'Electrical and Electronics', '8.2', '10', '0')
(5661, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '147', '314', '3', '88', 'Cochin University of Science and Technology', 'Division of Electorinics', '72', '100', '0')
(5662, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0')
(5663, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0')
(5664, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18')
(5665, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '640', '1420', '5', '270', 'MU', 'Comp Engg', '57.29', '100', '0')
(5666, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'Anna University', 'Computer Science', '73', '100', '0')
(5667, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '143', '299', 'None', '97', '0', 'ECE', '79', '100', '0')
(5668, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0')
(5669, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '109', 'NIT Hamirpur', 'Electronics and Communication', '8.18', '10', '18')
(5670, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '156', '147', '303', '3', '100', 'Madras Institute of Technology', 'Computer Science Engineering', '6.8', '10', '0')
(5671, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0')
(5672, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(5673, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MIS', 'Fall ', '2014', '162', '155', '317', '4', '106', 'Yeshwantrao Chavan College of Engineering', 'ECE', '64', '100', '0')
(5674, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '146', '311', '3', '97', 'RVR & JC College of Engineering', 'electronics and communication engineering', '84.8', '100', '0')
(5675, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0')
(5676, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '720', '340', '1060', '3', '84', 'pvpsit', 'ece', '76.52', '100', '0')
(5677, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '163', '153', '316', '3', '109', 'NIT Tirchy', 'CSE', '7.03', '10', '0')
(5678, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '102', 'MU', 'Electronics & Telecommunication', '69', '100', '0')
(5679, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0')
(5680, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '109', 'University of Calicut', 'Computer Science and Engg', '79', '100', '38')
(5681, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3')
(5682, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', 'None', 'None', 'Madras Institute of Technology', 'Electronics and Communication', '8.5', '10', '0')
(5683, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(5684, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0')
(5685, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', 'None', 'DA-IICT', 'ICT', '6.83', '10', '19')
(5686, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15')
(5687, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(5688, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6')
(5689, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0')
(5690, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0')
(5691, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '102', 'VTU', 'Computer Science', '71.7', '100', '0')
(5692, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0')
(5693, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(5694, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87')
(5695, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0')
(5696, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36')
(5697, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '155', '314', '5', '105', 'NMIMS', 'Electronics', '2.85', '4', '0')
(5698, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '166', '150', '316', '3.5', '107', 'University of Mumbai', 'electronics and telecom', '70.03', '100', '31')
(5699, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '157', '319', '3.5', '109', 'SRM', 'ECE', '8.23', '10', '0')
(5700, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0')
(5701, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '110', 'VTU', 'E&C;', '69.4', '100', '0')
(5702, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '640', '1440', '3.5', '105', 'SSN College of Engineering', 'IT', '73', '100', '0')
(5703, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '3.5', '94', 'IIT Indore', 'Electrical Engineering', '6.6', '10', '0')
(5704, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0')
(5705, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '163', '142', '305', '3', '93', 'BIT VTU', 'Electronics And Communication', '80', '100', '0')
(5706, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '3', 'None', 'Univ of Mumbai', 'Electrical', '64.41', '100', '0')
(5707, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '144', '310', '3.5', '96', 'SRM', 'ECE', '8', '10', '0')
(5708, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0')
(5709, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0')
(5710, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '158', '161', '319', '3.5', '112', 'Guru Nanak Dev University Amritsar', 'Electronics & Communications', '70.8', '100', '0')
(5711, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '104', 'Manipal Institue of Technology', 'Biomedical Engineering', '7.67', '10', '0')
(5712, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '168', '149', '317', '3', '101', 'None', 'Electronics and Communication Engineering', '7.85', '10', '0')
(5713, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '84', 'Panjab University', 'CSE', '75.02', '100', '0')
(5714, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0')
(5715, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0')
(5716, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0')
(5717, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12')
(5718, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24')
(5719, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3', '99', 'Pondicherry University', 'CSE', '8.03', '10', '0')
(5720, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '163', '324', '4', '116', 'SDM', 'mechanical', '68.84', '100', '0')
(5721, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0')
(5722, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0')
(5723, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '166', '324', '4', 'None', 'Manipal Institue of Technology', 'electrical & electronics', '7.41', '10', '0')
(5724, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '108', 'PESIT', 'Mechanical Engg.', '60', '100', '0')
(5725, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0')
(5726, 'Arizona State University', '6', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0')
(5727, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '100', 'Anna University', 'ECE', '8.7', '10', '0')
(5728, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '102', 'GITAM', 'ECE', '9.15', '10', '0')
(5729, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(5730, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '4', '107', 'Pune University', 'IT', '58', '100', '0')
(5731, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19')
(5732, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0')
(5733, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0')
(5734, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0')
(5735, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '162', '141', '303', '3.5', '102', 'Vasavi College of Engineering', 'Civil Engineering', '66', '100', '0')
(5736, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0')
(5737, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '149', '312', '3.5', '105', 'IIIT Hyderabad', 'ECE', '6.72', '10', '0')
(5738, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '2.5', '97', 'None', '0', '8.63', '10', '0')
(5739, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4', '8', 'Pondicherry University', 'Computer Science', '7.1', '10', '20')
(5740, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0')
(5741, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '800', '510', '1310', '3', '96', 'PICT', 'IT', '3.29', '4', '0')
(5742, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Spring ', '2014', '158', '150', '308', '3.5', '92', 'WBUT', 'ECE', '9.77', '10', '0')
(5743, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3', '100', 'NIT Tirchy', 'Computer Science', '7.62', '10', '0')
(5744, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '330', '1050', '3.5', '103', 'Anna Univeristy', 'EEE', '74', '100', '0')
(5745, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0')
(5746, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12')
(5747, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0')
(5748, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0')
(5749, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', '91', 'COER UPTU', 'Electronics and TeleCommunication', '76', '100', '0')
(5750, 'Arizona State University', '6', 'Reject', 'MS', 'Packaging Science', 'Fall ', '2013', '160', '152', '312', '3.5', '106', 'Anna University', 'Mechanical', '7.36', '10', '0')
(5751, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0')
(5752, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0')
(5753, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(5754, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '3.5', '114', 'Nagpur University', 'Electrical Engineering', '61', '100', '0')
(5755, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '520', '1280', '3', '104', 'Shri Ramdeobaba Engineering College', 'electronics and communication', '70', '100', '0')
(5756, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0')
(5757, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0')
(5758, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0')
(5759, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '2.5', '95', 'PESIT', 'Electronics and communication', '8.02', '10', '0')
(5760, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0')
(5761, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0')
(5762, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '460', '1250', '3.5', '263', 'JNTU', 'eee', '79', '100', '0')
(5763, 'Arizona State University', '6', 'Reject', 'MS', 'Master of Science in Information Technology', 'Fall ', '2014', '162', '151', '313', '3.5', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22')
(5764, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0')
(5765, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0')
(5766, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0')
(5767, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0')
(5768, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0')
(5769, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '161', '153', '314', '3', '108', 'University of Delhi', 'Mechanical Engineering', '63.15', '100', '42')
(5770, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0')
(5771, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0')
(5772, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0')
(5773, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0')
(5774, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22')
(5775, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '156', '323', '3', '107', 'NIT Nagpur', 'ECE', '8.22', '10', '28')
(5776, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52')
(5777, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '410', '1150', '4', '104', 'Anna University', 'Electrical and Electronics', '7.9', '10', '0')
(5778, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '147', '307', '4', '101', 'Shivaji University', 'Electronics & Telecommunication', '69.07', '100', '0')
(5779, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0')
(5780, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'RTU Kota / JECRC jaipur', 'Information Technology', '74', '100', '41')
(5781, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3.5', '90', 'Anna University', 'Computer Science and Engineering', '7.8', '10', '0')
(5782, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84')
(5783, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0')
(5784, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '420', '1140', '3.5', '98', 'VTU', 'Computer Science and engineering', '67.53', '100', '0')
(5785, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0')
(5786, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '670', '1450', '4', '113', 'University of Pune', 'Electronics & Telecommunication', '61', '100', '0')
(5787, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '790', '610', '1400', '3.5', '115', 'JNTU', 'Electronics and Instrumentation Engineering', '79', '100', '0')
(5788, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '152', '313', '3', '105', 'Sardar Patel College of Engineering', 'Electrical Engineering', '75.86', '100', '18')
(5789, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '100', 'Coimbatore Insitute of Technology', 'M.Sc Software Engineering', '78', '100', '0')
(5790, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '145', '311', '3', '96', 'SASTRA', 'electronics and communication engineering', '7.93', '10', '27')
(5791, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '144', '308', 'None', 'None', 'Vignan Institute of Technology and Science', 'ECE', '83', '100', '0')
(5792, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1')
(5793, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0')
(5794, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0')
(5795, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0')
(5796, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '82', 'MU', 'Electronics and Telecommunication', '73.9', '100', '0')
(5797, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36')
(5798, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3', '108', 'Pune University', 'Electronics', '57', '100', '0')
(5799, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0')
(5800, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '4', '113', 'RMK Engineering College', 'B.E. Electrical and Electronics Engineering', '8.28', '10', '0')
(5801, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '450', '1250', '3', 'None', 'NIT Warangal', 'Civil engineering', '7.1', '10', '0')
(5802, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '11', '780', '500', '1280', '3.5', '105', 'Crescent Engineering College', 'CS', '69', '100', '0')
(5803, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '430', '1120', '3.5', '89', 'Anna University', 'Electrical and Electronics Engineering', '81', '100', '0')
(5804, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '149', '310', '3.5', '102', 'VIT', 'EEE', '8.18', '10', '0')
(5805, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '710', '550', '1260', '3', '98', 'VTU', 'Telecommunication', '74', '100', '0')
(5806, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3.5', '102', 'Amity University', 'Computer Science And Engineering', '7.6', '10', '0')
(5807, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0')
(5808, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '153', '313', '3.5', '112', 'NMAMIT Nitte', 'Computer Science & Engineering', '67', '100', '0')
(5809, 'Arizona State University', '6', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0')
(5810, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32')
(5811, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '161', '162', '323', '4', '115', 'Madras Institute of Technology', 'ECE', '8', '10', '0')
(5812, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0')
(5813, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39')
(5814, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2012', '800', '590', '1390', '4.5', '106', 'None', '0', '70', '100', '0')
(5815, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0')
(5816, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2012', '740', '530', '1270', '3', '99', 'JNTU', 'EEE', '54.66', '100', '0')
(5817, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0')
(5818, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '310', '1090', '3', '83', 'Bapatla Engineering College', 'civil engineering', '83', '100', '0')
(5819, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0')
(5820, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '94', 'Guru Gobind Singh Indraprashta University', 'electronics & communication engg', '70.06', '100', '0')
(5821, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '153', '321', 'None', 'None', 'VTU', 'EC', '80', '100', '0')
(5822, 'Arizona State University', '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '770', '340', '1110', '3', '97', 'VTU', 'ECE', '70', '100', '0')
(5823, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0')
(5824, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0')
(5825, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0')
(5826, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0')
(5827, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '155', '317', '4', '109', 'Sri Sairam Engineering College', 'Instrumentation and Control', '8.2', '10', '0')
(5828, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42')
(5829, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '530', '1330', '3.5', '115', 'Manipal Institue of Technology', 'ECE', '8.6', '10', '0')
(5830, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '690', '1480', '3.5', '106', 'NIT Bhopal', 'CSE', '7.36', '10', '0')
(5831, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'UPTU', 'Mechanical Engineering', '67', '100', '42')
(5832, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '154', '146', '300', '3.5', '95', 'Gujarat Technological University', 'Mechanical Engineering', '8.1', '10', '0')
(5833, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '104', 'MU', 'computer', '58.95', '100', '0')
(5834, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0')
(5835, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '168', '152', '320', '4', '105', 'VTU', 'Electronics', '64', '100', '0')
(5836, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0')
(5837, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '110', 'VTU', 'Electronics & Communication', '76.5', '100', '0')
(5838, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0')
(5839, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '156', '149', '305', '3', '100', 'SASTRA', 'Electronics and Communication', '9.11', '10', '52')
(5840, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '157', '317', 'None', '114', 'VTU', 'ECE', '8.59', '10', '0')
(5841, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '146', '308', '3.5', '97', 'Pune University', 'Computer Engineering', '70', '100', '0')
(5842, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0')
(5843, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0')
(5844, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'Punjab Technical University', 'Electronics & Communication', '79.92', '100', '32')
(5845, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '144', '300', '3.5', '91', 'Birla Vishvakarma Mahavidyalaya', 'Electrical Engineering', '8.11', '10', '24')
(5846, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(5847, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '4', '110', 'SJCE', 'EC', '76', '100', '0')
(5848, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', "St Joseph's College of Engineering", 'cse', '8.64', '10', '0')
(5849, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0')
(5850, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0')
(5851, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0')
(5852, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0')
(5853, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0')
(5854, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24')
(5855, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0')
(5856, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '112', 'VIT Pune', 'Instrumentation & Control', '8.8', '10', '0')
(5857, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '160', '318', '3.5', '114', 'MU', '0', '61', '100', '0')
(5858, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '161', '156', '317', '3.5', '116', 'VTU', 'EEE', '85', '100', '0')
(5859, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '163', '155', '318', '3', '90', 'West Bengal University Of Technology', 'Electronics and Instrumentation Engineering', '8.54', '10', '33')
(5860, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56')
(5861, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0')
(5862, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', 'None', 'JNTU', 'ECE', '75', '100', '0')
(5863, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '4', '97', 'Amrita School of Engineering', 'Electronics and Communication', '9.01', '10', '48')
(5864, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '157', '315', '4', '116', 'Goa University', 'Civil Engineering', '68', '100', '0')
(5865, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0')
(5866, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', 'None', '111', 'VTU', 'CSE', '75', '100', '0')
(5867, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '2.5', '90', 'Pondicherry Engineering College', 'ECE', '8.25', '10', '0')
(5868, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0')
(5869, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0')
(5870, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '151', '316', '3', '95', 'Uni. Of Pune VIIT', 'E&TC;', '67', '100', '0')
(5871, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '144', '303', '3', '101', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0')
(5872, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '4', '110', 'Priyadarshini College of Engineering', 'Computer Technology', '63.15', '100', '0')
(5873, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0')
(5874, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3', '93', 'University of Mumbai', 'Computer Science', '62.3', '100', '36')
(5875, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '99', 'BIT Mesra', 'Mechanical Engineering', '71', '100', '0')
(5876, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0')
(5877, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3', '103', 'Velammal Engineering College', 'Electronics and Communication', '88', '100', '0')
(5878, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '740', '490', '1230', '4', '105', 'Manipal Institue of Technology', 'Electronics & Coomunication', '8.59', '10', '0')
(5879, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0')
(5880, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0')
(5881, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '430', '1230', '3.5', '104', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '9.18', '10', '0')
(5882, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3', '100', 'NIT Calicut', 'Electrical Engg', '7.6', '10', '0')
(5883, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0')
(5884, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '146', '303', '2.5', 'None', 'Madras Institute of Technology', 'ECE', '6.5', '10', '0')
(5885, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '151', '312', '3', '112', 'VTU', 'eee', '70', '100', '0')
(5886, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0')
(5887, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0')
(5888, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0')
(5889, 'Arizona State University', '6', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2014', '156', '145', '301', '3', '83', 'DBIT', 'Mechanical', '58.72', '100', '34')
(5890, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0')
(5891, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3.5', '100', 'RGPV', 'Computer', '65', '100', '0')
(5892, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '149', '309', '3.5', '109', 'Pune University', 'Electronics &Telecommunication;', '74', '100', '0')
(5893, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0')
(5894, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28')
(5895, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '91', 'Panjab University', 'ECE', '82.2', '100', '0')
(5896, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0')
(5897, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0')
(5898, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '147', '304', '3', '102', 'VIT', 'IT', '7.93', '10', '0')
(5899, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2013', '164', '154', '318', '3', '93', 'NIT Calicut', 'CHEMICAL ENGINEERING', '7.42', '10', '0')
(5900, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '2.5', 'None', 'Coimbatore Insitute of Technology', 'Electronics and Communitaion', '6.76', '10', '0')
(5901, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '420', '1160', '3', '105', 'None', 'ECE', '82.7', '100', '0')
(5902, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0')
(5903, 'Arizona State University', '6', 'Reject', 'MS', 'Wireless communications', 'Fall ', '2014', '163', '154', '317', '3.5', '104', 'JNTU', 'Electronics and Communication', '83.64', '100', '42')
(5904, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0')
(5905, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0')
(5906, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0')
(5907, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3.5', '104', 'MU', 'Electrical Engineering', '71', '100', '30')
(5908, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0')
(5909, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '96', 'VIT', 'ELECTRONICS AND COMMUNICATION', '8.35', '10', '0')
(5910, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '156', '151', '307', '3.5', '103', 'md university rohtak', 'ece', '75.2', '100', '0')
(5911, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '490', '730', '1220', '3', '104', 'University of Pune', 'electronics and telecommunication', '62.49', '100', '0')
(5912, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '143', '301', '3', '90', 'RGTU', 'Electronics and communication', '8.39', '10', '0')
(5913, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '154', '147', '301', '3.5', '99', 'KSIT Visvesvaraya Technological University', 'Electronics & Communication', '72', '100', '0')
(5914, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(5915, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3', '96', 'K J Somaiya College of Engiineering', 'ETRX', '67.5', '100', '0')
(5916, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0')
(5917, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '163', '155', '318', '3.5', '99', 'Madras Institute of Technology', 'ECE', '8.74', '10', '0')
(5918, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0')
(5919, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0')
(5920, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '142', '302', '3', '86', 'Cochin University of Science and Technology', 'Computer Science', '78', '100', '0')
(5921, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', 'None', '95', 'Amrita School of Engineering', 'ECE', '7.9', '10', '0')
(5922, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0')
(5923, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '770', '430', '1200', '3.5', '97', 'Amrita School of Engineering', 'Computer Science', '7.5', '10', '0')
(5924, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '450', '1170', '3', '84', 'Anna University', 'electronics and instrumentation', '66', '100', '0')
(5925, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0')
(5926, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '103', 'SASTRA', 'Computer Science', '7.04', '10', '0')
(5927, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Global Academy of Technology', 'Electrical & Electronics Engineering', '77.6', '100', '0')
(5928, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0')
(5929, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '450', '1080', '3.5', '95', 'HKBKCE', 'Computer Science', '7.5', '100', '0')
(5930, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Amrita School of Engineering', 'Computer Science Engineering', '7.36', '10', '0')
(5931, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0')
(5932, 'Arizona State University', '6', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0')
(5933, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', 'None', 'None', '0', '3.5', '106', 'None', 'CSE', '7.55', '100', '36')
(5934, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0')
(5935, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '160', '140', '300', '3', '81', 'Andhra University', 'ECE', '8.2', '10', '0')
(5936, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '150', '306', '3.5', '99', 'VTU', 'EC', '75', '100', '0')
(5937, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '164', '149', '313', '3.5', '99', 'Govt. Engineering College Trichur[University of Calicut]', 'Electrical & Electronics Engineering', '70', '100', '0')
(5938, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '152', '310', '3', '107', 'N I E Mysore', 'Computer Science and Engineering', '9.24', '10', '41')
(5939, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0')
(5940, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3', '103', 'Indus Inst. of Tech. and Eng.', 'E.C.', '8.77', '10', '0')
(5941, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '730', '380', '1110', '3', '93', 'MU', '0', '63', '100', '0')
(5942, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '440', '1170', '3.5', '240', 'PSG College of Technology', 'Automotive Engg', '8.11', '10', '0')
(5943, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '4', '107', 'VTU', 'ECE', '78', '100', '0')
(5944, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0')
(5945, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '158', '152', '310', '3', 'None', 'SSN College of Engineering', 'EEE', '81', '100', '0')
(5946, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '430', '1180', '4', '109', 'BIT Mesra', 'Electronics and Communication', '7.92', '10', '0')
(5947, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0')
(5948, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '152', '317', '3.5', '104', 'University of Mumbai', 'Electronics Engineering', '66.67', '100', '0')
(5949, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0')
(5950, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0')
(5951, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0')
(5952, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '670', '1470', '4', '116', 'VTU', 'Electrical Engineering', '72', '100', '0')
(5953, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(5954, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0')
(5955, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '140', '301', '3.5', '100', 'Sir MVIT', 'Electronics & Communication', '81.5', '100', '0')
(5956, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '480', '1180', '3.5', '99', 'SSN College of Engineering', 'Computer science and engineering', '72', '100', '0')
(5957, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0')
(5958, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '410', '1200', '3.5', '109', 'Anna University', 'Computer Science and Engineering', '7.1', '10', '0')
(5959, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '730', '530', '1260', '3', '93', 'Uni of Mumbai', 'Production', '58.9', '100', '0')
(5960, 'Arizona State University', '6', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33')
(5961, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '650', '1450', '4', '277', 'MU', 'Electronics', '62', '100', '0')
(5962, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '105', 'Bangalore Institute of Technology', 'Electronics and Communcication Engineering', '68.2', '100', '0')
(5963, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '156', '309', '4', '111', 'None', 'Computer Science', '7', '10', '30')
(5964, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0')
(5965, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '4', '110', 'None', 'Information Technology', '8.1', '10', '0')
(5966, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0')
(5967, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25')
(5968, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '150', '313', '3', '99', 'NIT SILCHAR ASSAM INDIA', 'ELECTRICAL ENGINEERING', '6.93', '10', '0')
(5969, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(5970, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '4', '7', 'Osmania University', 'ECE', '81.2', '100', '0')
(5971, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '152', '145', '297', '3', '98', 'None', '0', '8.7', '10', '0')
(5972, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '560', '1350', '3.5', '114', 'BITS Pilani', 'CSIS', '0', '0', '0')
(5973, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '95', 'UVCE', 'Electronics and Communications', '77.16', '100', '0')
(5974, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0')
(5975, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0')
(5976, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '157', '324', '4.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '8', '10', '36')
(5977, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '156', '145', '301', '3.5', 'None', 'SCSVMV University', 'ECE', '8.88', '10', '0')
(5978, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0')
(5979, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '700', '430', '1130', '3.5', 'None', 'S.V.C.E', 'EEE', '73', '100', '0')
(5980, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '145', '309', '3.5', '98', 'Pune University', 'Information technology', '63', '100', '0')
(5981, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(5982, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12')
(5983, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2016', '158', '149', '307', '4', '101', 'University of Mumbai', 'Computers', '65', '100', '25')
(5984, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0')
(5985, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'SVCE', 'CSE', '72', '100', '0')
(5986, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45')
(5987, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '144', '301', '3', '80', 'Dr.Ambedkar Institute of Technology', 'Electronics and Communication', '8.92', '10', '0')
(5988, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '144', '304', '3', '91', 'VTU', 'Electronics and Communication', '8.12', '10', '0')
(5989, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '740', '610', '1350', '4', '107', 'VTU', 'Electronics and Communication', '71', '100', '0')
(5990, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77')
(5991, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '780', '540', '1320', '3', '104', 'CoE Trivandrum', 'ECE', '7.85', '10', '0')
(5992, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '150', '316', '3.5', '110', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0')
(5993, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0')
(5994, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0')
(5995, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '530', '1330', '4.5', '114', 'RTM Nagpur University', 'Electronics and Communication Engg.', '62.4', '100', '0')
(5996, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '480', '1270', '4', '109', 'VTU', 'ECE', '70.1', '100', '0')
(5997, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3', '94', "St Joseph's College of Engineering", 'Electronics And Communication', '75.45', '100', '0')
(5998, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3', '91', 'MU', 'I.T', '74.78', '100', '0')
(5999, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0')
(6000, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '153', '311', '4', '100', 'Nit Allahabad', 'Mechanical Engineering', '6.02', '10', '43')
(6001, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0')
(6002, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Graphics and Game Technology', 'Fall ', '2013', '161', '155', '316', '3', '107', 'VTU', 'Electronics & Communication', '78', '100', '0')
(6003, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '162', '325', '4', '111', 'University of Kerala', 'Computer Science', '8.1', '10', '36')
(6004, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '103', 'BMSCE', 'Electronics and Communications', '68.1', '100', '0')
(6005, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '157', '152', '309', '3', '104', 'MU', 'EXTC', '70.48', '100', '12')
(6006, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '101', 'Rajasthan Technical University', 'Electronics & Communication Engg', '70.1', '100', '0')
(6007, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '152', '309', '3', '103', 'Nagpur University', 'Computer Technology', '71.2', '100', '0')
(6008, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(6009, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0')
(6010, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31')
(6011, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0')
(6012, 'Arizona State University', '6', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56')
(6013, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2')
(6014, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0')
(6015, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '145', '301', '3', '92', 'Dr Ambedkar Institute of Technology', 'Telecommunications', '82.57', '100', '0')
(6016, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(6017, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0')
(6018, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0')
(6019, 'Arizona State University', '6', 'Reject', 'MS', 'Communication Engineering', 'Fall ', '2014', '159', '150', '309', '3', '93', 'UPTU', 'Electronics & Communication', '70', '100', '0')
(6020, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0')
(6021, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '152', '316', 'None', '112', 'FRCRCE', 'Electronics', '70', '100', '0')
(6022, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0')
(6023, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '115', 'Manipal Institue of Technology', 'Electronics and Communication', '8.62', '10', '26')
(6024, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6025, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0')
(6026, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '154', '152', '306', '3', '109', 'MU', 'ELECTRICAL', '70', '100', '0')
(6027, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29')
(6028, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '147', '312', '3.5', '99', 'PSG College of Technology', 'Electronics and Communication', '8.55', '10', '34')
(6029, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0')
(6030, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '420', '1140', '4', '106', 'Pune University', 'E&TC;', '0', '0', '0')
(6031, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0')
(6032, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9')
(6033, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4', '119', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.79', '10', '0')
(6034, 'Arizona State University', '6', 'Reject', 'MS', 'Mathematics', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'ISM Dhanbad', 'Applied Mathematics', '8.43', '10', '0')
(6035, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '157', '313', '4', '112', 'Siksha O Anusandhan University', 'Electronics & Communication Engineering', '7.69', '10', '0')
(6036, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '1310', '550', '1860', '3.5', '103', 'CUSAT', 'Civil', '79', '100', '0')
(6037, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40')
(6038, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9')
(6039, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(6040, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VIT', 'Electronics and Communication', '8.93', '100', '24')
(6041, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'University of Pune', 'IT', '64', '100', '0')
(6042, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(6043, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0')
(6044, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0')
(6045, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '800', '650', '1450', '3.5', '114', 'Manipal Institue of Technology', 'Electronics and Communications', '3.61', '4', '8')
(6046, 'Arizona State University', '6', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0')
(6047, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0')
(6048, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0')
(6049, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0')
(6050, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '102', 'SSN College of Engineering', 'EEE', '8.218', '10', '0')
(6051, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0')
(6052, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0')
(6053, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58')
(6054, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '3.5', '104', 'MU', 'CE', '70', '100', '0')
(6055, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '147', '305', '3.5', '100', 'Pune University', 'Computer Science', '62', '100', '0')
(6056, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '105', 'Anna University', 'ECE', '7.567', '10', '0')
(6057, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0')
(6058, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2016', '157', '143', '300', '3', '84', 'Anna University', 'civil engineering', '6.3', '10', '0')
(6059, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '103', 'NITK Surathkal', 'ECE', '8.82', '10', '30')
(6060, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24')
(6061, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0')
(6062, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60')
(6063, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '4', '112', 'SSIT VTU', 'IT', '69', '100', '0')
(6064, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0')
(6065, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '3', '104', 'BITS Pilani', 'Computer Science', '7.2', '10', '0')
(6066, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(6067, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2008', '780', '560', '1340', '4', '108', 'Aeronautical Society of India', 'Aerospace', '58.27', '100', '0')
(6068, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0')
(6069, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '150', '318', '2.5', '95', 'SRM', 'EEE', '9.15', '10', '0')
(6070, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0')
(6071, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12')
(6072, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '163', '148', '311', '3', '100', 'Sardar Vallabhbhai National Institute of Technology', 'Electrical Engineering', '7.84', '10', '0')
(6073, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0')
(6074, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '149', '313', '4', '104', 'VTU', 'Instrumentation Tech.', '78', '100', '24')
(6075, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0')
(6076, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '100', 'Jain University', 'Electronics & Communication', '71.14', '100', '0')
(6077, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '2.5', 'None', 'JNTU', 'CSE', '78', '100', '0')
(6078, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0')
(6079, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(6080, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0')
(6081, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '610', '1400', '3', '98', 'NIT Warangal', 'Electronics and Communication Engineering', '7.64', '10', '0')
(6082, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '99', 'MU', 'EE', '72', '100', '0')
(6083, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0')
(6084, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0')
(6085, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0')
(6086, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '165', '149', '314', '3', 'None', 'KLEF UNIVERSITY', 'EEE', '7.01', '10', '0')
(6087, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0')
(6088, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '159', '146', '305', '3', '95', 'D j Sanghvi', 'Biomedical engineering', '3.5', '4', '0')
(6089, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3.5', 'None', 'Manipal Institue of Technology', 'ECE', '8.53', '10', '0')
(6090, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0')
(6091, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30')
(6092, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '140', '301', '2.5', '99', 'VTU', 'ECE', '9.53', '10', '12')
(6093, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0')
(6094, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '147', '309', '4', '104', 'Anna University', 'EIE', '8.03', '10', '0')
(6095, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '105', 'SASTRA', 'B.tech Mechatronics', '8', '10', '18')
(6096, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30')
(6097, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '157', '162', '319', '4', '105', 'Nirma Institute of Technology', 'Computer Engineering', '8.06', '10', '24')
(6098, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '150', '306', '3', '104', 'Pune University', 'Electrical Engineering', '59.39', '100', '0')
(6099, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '141', '300', '3', 'None', 'RMK Engineering College', 'Electronics and Communication', '76', '100', '0')
(6100, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0')
(6101, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(6102, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0')
(6103, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'VTU', 'ECE', '76.2', '100', '0')
(6104, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '162', '152', '314', '2.5', '100', 'ANU', 'ECE', '74.7', '100', '0')
(6105, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '160', '159', '319', '4.5', '110', 'Anna University', 'ECE', '86', '100', '0')
(6106, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0')
(6107, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '102', 'Mepco Schlenk Engineering College', 'Computer Science', '8.21', '10', '0')
(6108, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20')
(6109, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '65', '100', '0')
(6110, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0')
(6111, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '158', '152', '310', '3.5', '106', 'University of Pune', 'Electronics and Telecommunications', '58', '100', '92')
(6112, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '136', '300', '2.5', '85', 'GITAM', 'CSE', '7.87', '10', '0')
(6113, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96')
(6114, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '161', '144', '305', 'None', '96', 'Vasavi College of Engineering', 'it', '75', '100', '0')
(6115, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0')
(6116, 'Arizona State University', '6', 'Reject', 'MS', 'microelectronics', 'Spring ', '2012', '750', '380', '1130', '3.5', '80', 'MBM Jodhpur India', 'ECE', '71', '100', '0')
(6117, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2006', '800', '530', '1330', '4.5', '293', 'G. H. Patel College of Engineering and Technology', 'Chemical Engineering', '8.35', '10', '0')
(6118, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '148', '317', '3', '104', 'NIT Tirchy', 'Electronics and Communication', '7.77', '10', '36')
(6119, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'BNMIT', 'Electronics and communication', '71.5', '100', '0')
(6120, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0')
(6121, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '155', '312', '3.5', '108', 'Thiagarajar College of engineering', 'ECE', '8.4', '10', '0')
(6122, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0')
(6123, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0')
(6124, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17')
(6125, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '104', 'S.J.B. Institute of Technology', 'Information Science and Engineering', '74.5', '100', '24')
(6126, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3', '90', 'BITS Dubai', 'ECE', '7.7', '10', '0')
(6127, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '163', '149', '312', '3', '109', 'CBIT', 'Ece', '75', '100', '0')
(6128, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13')
(6129, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0')
(6130, 'Arizona State University', '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2015', '161', '147', '308', '4', '94', 'SRM', 'EEE', '7.01', '10', '18')
(6131, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0')
(6132, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '158', '153', '311', '3.5', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engg', '72', '100', '0')
(6133, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '144', '305', '3', '93', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.75', '10', '0')
(6134, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0')
(6135, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27')
(6136, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0')
(6137, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0')
(6138, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '148', '313', '3', '94', 'BITS Pilani', 'Electronics and Instrumentation', '5.81', '10', '0')
(6139, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0')
(6140, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', '3.5', '111', 'VTU', 'Electronics and Communication', '8.2', '10', '32')
(6141, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '149', '312', '3', '91', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Tele-communication', '7.93', '10', '0')
(6142, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '97', 'SJCE', 'Electronics and Communication', '63', '100', '0')
(6143, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33')
(6144, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(6145, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '147', '311', '3', '94', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics & Communication', '8.91', '10', '20')
(6146, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0')
(6147, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '600', '1300', '4', '106', 'Amrita School of Engineering', 'Electronics & Communication', '7.56', '10', '0')
(6148, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(6149, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VTU', 'ECE', '74.16', '100', '58')
(6150, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '163', '152', '315', '3', '104', 'Anna University', 'Electronics and Communication Engineering', '9.28', '10', '36')
(6151, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0')
(6152, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '155', '319', '3.5', '110', 'MGIT JNTU', 'ECE', '75.2', '100', '0')
(6153, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '800', '490', '1290', '3', 'None', 'NIT Warangal', 'eee', '7.92', '10', '0')
(6154, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '158', '147', '305', '3', '101', 'UVCE', 'ECE', '81.57', '100', '0')
(6155, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3.5', '97', 'RNSIT', 'Computer Science & Engineering', '81', '100', '0')
(6156, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12')
(6157, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '3', '104', 'University of Madras', 'EEE', '81', '100', '0')
(6158, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3', '103', 'Punjab Technical University', 'CSE', '75', '100', '0')
(6159, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '154', '316', '3.5', '110', 'Jamia Millia Islamia', 'Electronics and Communication', '9.37', '10', '0')
(6160, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0')
(6161, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '156', '147', '303', '4', '90', 'Velammal Engineering College', 'Department of Electronics and Instrumentation', '3.96', '5', '0')
(6162, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0')
(6163, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.23', '10', '0')
(6164, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '620', '530', '1150', '4', '103', 'Pune University', 'Information technology', '63', '100', '0')
(6165, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '153', '319', '4', '105', 'GLA Institute of Technology and Management', 'Electronics and Communication Engineering', '73', '100', '0')
(6166, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '150', '304', '3', '91', 'VTU', 'Electronics and Communication', '73', '100', '0')
(6167, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '159', '327', '4', '110', 'UPTU', 'ECE', '73.68', '100', '0')
(6168, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0')
(6169, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2016', '161', '147', '308', '4', '105', 'JNTU', 'ECE', '81.6', '100', '0')
(6170, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0')
(6171, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '530', '1230', '3.5', '104', 'None', 'Information Technology', '0', '100', '0')
(6172, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0')
(6173, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0')
(6174, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0')
(6175, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0')
(6176, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16')
(6177, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0')
(6178, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '154', '318', '4', '108', 'UPTU', 'Electronics and Communication Engineering', '74.2', '100', '39')
(6179, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0')
(6180, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0')
(6181, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0')
(6182, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0')
(6183, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '159', '326', '4.5', '117', 'BVDU', 'Electronics & Telecommunication', '63', '100', '0')
(6184, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '149', '305', '3.5', '100', 'SRR Engineering College', 'EEE', '7.94', '10', '0')
(6185, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '3', '102', 'GITAM', 'E C E', '7.4', '10', '0')
(6186, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '470', '1210', '3', '110', 'Bharati Vidyapeeth', 'ECE', '67', '100', '0')
(6187, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '2.5', '89', 'PESIT', 'Telecommunication', '65', '100', '0')
(6188, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0')
(6189, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0')
(6190, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0')
(6191, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '145', '303', '3.5', '95', 'VTU', 'E&C;', '84.55', '100', '0')
(6192, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '149', '313', '3.5', '100', 'SRM', 'eee', '8.637', '10', '0')
(6193, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '100', 'VTU', 'Instrumentation Technology', '77', '100', '0')
(6194, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '157', '145', '302', '3.5', '99', 'None', '0', '82', '100', '0')
(6195, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '153', '313', '4', '108', 'VTU', 'Electrical and electronics', '70', '100', '0')
(6196, 'Arizona State University', '6', 'Reject', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0')
(6197, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '144', '298', 'None', '89', 'VTU', 'ECE', '78', '100', '0')
(6198, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '550', '1270', '3', '90', 'Madras Institute of Technology', 'ECE', '8.9', '10', '0')
(6199, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0')
(6200, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '550', '1290', '3.5', '95', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '65.64', '100', '0')
(6201, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33')
(6202, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0')
(6203, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '3.5', '110', 'St. Peters University', 'computer science', '8.5', '10', '17')
(6204, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0')
(6205, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '156', '322', '3.5', '109', 'Anna University', 'Electrical & Electronics Engineering', '7.79', '10', '0')
(6206, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '160', '146', '306', '3.5', '102', 'None', 'Computer Science', '76.6', '100', '27')
(6207, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0')
(6208, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '145', '306', '3', '89', 'Rajasthan University', 'Electronics and Communication Engineering', '72', '100', '55')
(6209, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '530', '1230', '3', '95', 'SSN College of Engineering', 'EEE', '80', '100', '0')
(6210, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '148', '314', '3', '100', 'Pune University', 'Electronics & Telecom', '70', '100', '0')
(6211, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12')
(6212, 'Arizona State University', '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0')
(6213, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', 'None', 'IIT Kanpur', 'Industrial (M.tech)', '9.5', '10', '0')
(6214, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '450', '1250', '4', '109', 'Coimbatore Insitute of Technology', 'EEE', '8.22', '10', '0')
(6215, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0')
(6216, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0')
(6217, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '4', '100', 'CMRIT', 'Telecommunication', '77', '100', '0')
(6218, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '166', '328', '5', '119', 'SRM', 'EEE', '8.2', '10', '0')
(6219, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '151', '321', '4', '105', 'BITS Pilani', 'BE(Hons). Mechanical', '6.55', '10', '0')
(6220, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '490', '1290', '3', '102', 'MU', 'Mechanical', '55', '100', '0')
(6221, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6')
(6222, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '148', '309', '3.5', 'None', 'MU', 'Computer', '68', '100', '0')
(6223, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0')
(6224, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '142', '307', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'computer Science and Engineering', '78', '100', '0')
(6225, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '148', '308', '3', '100', 'Nagpur University', 'ELECTRONICS', '65', '100', '0')
(6226, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24')
(6227, 'Arizona State University', '6', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24')
(6228, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '141', '298', '3', '92', 'MDU', 'ECE', '70', '100', '0')
(6229, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12')
(6230, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '153', '316', '3', 'None', 'Jaypee Institute of Information Technology', 'IT', '75', '100', '17')
(6231, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0')
(6232, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0')
(6233, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '4', '104', 'NIT Calicut', 'Electronics and Communication Engineering', '6.8', '10', '0')
(6234, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '560', '1350', '3', 'None', 'VIT University', 'ECE', '8', '10', '0')
(6235, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0')
(6236, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '143', '302', '3', 'None', 'JNTU', 'Electronics and Communication', '75.2', '100', '27')
(6237, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0')
(6238, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '106', 'Pune University', 'Computer Engg.', '60.23', '100', '0')
(6239, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0')
(6240, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29')
(6241, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '168', '145', '313', '3', '93', 'NIT', 'ECE', '7.45', '10', '28')
(6242, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '520', '1260', '3', '99', 'MSRIT', 'E&C;', '74', '100', '0')
(6243, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0')
(6244, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '143', '303', '2.5', '87', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '7.86', '10', '0')
(6245, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '68', '100', '0')
(6246, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0')
(6247, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '147', '309', '3.5', '99', 'VTU', 'Electroncis and communication', '72', '100', '0')
(6248, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0')
(6249, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '4', 'None', 'National Institute of Engineerint VTU', 'Information Science', '0', '0', '0')
(6250, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '93', 'MAIT GGSIPU', 'Electrical and Electronics Engineering', '71.07', '100', '0')
(6251, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '106', 'MU', 'IT', '58', '100', '0')
(6252, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25')
(6253, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', '2.5', '103', 'Anna University', 'Instrumentation and Control', '8.7', '10', '0')
(6254, 'Arizona State University', '6', 'Reject', 'MS', 'Construction Management', 'Fall ', '2014', '168', '149', '317', '4', 'None', 'IIT Roorkee', 'Architecture and Planning', '6.22', '10', '61')
(6255, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '154', '314', '4.5', '104', 'NIT Warangal', 'Electronics & Communication Engineering', '7.3', '10', '0')
(6256, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(6257, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0')
(6258, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '153', '315', '3', '99', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communications', '8.52', '10', '0')
(6259, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(6260, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '3', 'None', 'Vignan Institute of Technology and Science', 'School of Electronics', '86', '100', '0')
(6261, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '153', '316', '3.5', '110', 'Anna University', 'Electronics and Communication', '81.5', '100', '0')
(6262, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '141', '304', '3', '87', 'JNTU', 'Information Technology', '81', '100', '20')
(6263, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '3.5', '102', 'Anna University', 'ece', '71', '100', '0')
(6264, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '13', '163', '153', '316', '4', '109', 'University of Pune', 'E&C;', '69.5', '100', '0')
(6265, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0')
(6266, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0')
(6267, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '4', '100', 'Rajasthan Technical University', 'Electronics Instrumentation & Control Engg', '67', '100', '0')
(6268, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0')
(6269, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3', '95', 'GVP Vishakapatnam', 'Information Technology', '71', '100', '0')
(6270, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2016', '162', '156', '318', '3.5', '105', 'Maharishi Dayanand University', 'Electronics And Communication', '69', '100', '0')
(6271, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '115', 'VJTI', 'ELECTRICAL', '7.3', '10', '0')
(6272, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0')
(6273, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical and Electronics', '67', '100', '0')
(6274, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '530', '1290', '3.5', '100', 'VIT', 'electronics and communication', '8.07', '10', '0')
(6275, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0')
(6276, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '147', '306', '3.5', '96', 'University of Mumbai', 'Electronics and Telecommunication', '58', '100', '0')
(6277, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0')
(6278, 'Arizona State University', '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(6279, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '270', 'MSRIT', 'CSE', '75', '100', '0')
(6280, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24')
(6281, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', 'None', 'Thapar University', 'ECE', '8.8', '10', '0')
(6282, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0')
(6283, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6')
(6284, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '145', '301', '3', '94', 'Mahrishi Dayanand University', 'Electrical', '68', '100', '0')
(6285, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '3.5', '99', 'Coimbatore Insitute of Technology', 'CSE', '7.5', '10', '0')
(6286, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0')
(6287, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3', '105', 'Madras Institute of Technology', 'Information Technology', '7.3', '100', '0')
(6288, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0')
(6289, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '152', '321', '2', '101', 'BITS Pilani', 'ELECTRONICS & COMMUNICATIONS', '8.58', '10', '0')
(6290, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3', '100', 'Institute of Technical Education and Research', 'Computer Science', '7.35', '10', '0')
(6291, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0')
(6292, 'Arizona State University', '6', 'Reject', 'MS', 'Subsea Engineering', 'Fall ', '2014', '168', '147', '315', '2.5', '97', 'Panjab University', 'Mechanical', '76', '100', '20')
(6293, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(6294, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(6295, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '155', '314', '3.5', '106', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.84', '10', '20')
(6296, 'Arizona State University', '6', 'Reject', 'MS', 'Biomedical Engineering', 'Spring ', '2013', '760', '470', '1230', '3', '102', 'SRM', 'Biomedical Engineering', '7.912', '10', '0')
(6297, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0')
(6298, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0')
(6299, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '890', '450', '1340', '3', '103', 'SVCE', 'IT', '70', '100', '0')
(6300, 'Arizona State University', '6', 'Reject', 'MS', 'software engineering', 'Spring ', '2013', '720', '350', '1070', 'None', '104', 'MU', 'Masters of Engg I.T.', '71', '100', '0')
(6301, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(6302, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0')
(6303, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '158', '317', '3.5', '115', 'COEP', 'E&TC;', '6.37', '10', '14')
(6304, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0')
(6305, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '149', '311', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communications Engg.', '7.54', '10', '0')
(6306, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '146', '309', '3.5', '102', 'Pune University', 'Mechanical Engineering', '70', '100', '0')
(6307, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '96', 'Manipal Institue of Technology', 'ECE', '8.85', '10', '0')
(6308, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '460', '1240', '3.5', '104', 'Sinhgad College of Engineering', 'Computer Science', '65', '100', '0')
(6309, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0')
(6310, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0')
(6311, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '156', '314', '4', '113', 'MU', 'Chemical Engineering', '56.45', '100', '25')
(6312, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0')
(6313, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0')
(6314, 'Arizona State University', '6', 'Reject', 'MS', 'EE / CS', 'Fall ', '2012', '151', '158', '309', '4.5', '105', 'VTU', 'EEE', '74', '100', '0')
(6315, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '160', '150', '310', '3', '105', 'M N M jain Engineering College', 'Electronics and Communication', '70', '100', '0')
(6316, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '145', '300', '3.5', '98', 'CMRIT', 'Electronics and Communication', '79.3', '100', '0')
(6317, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '3', '100', 'NMAM Institute of Technology Nitte', 'Electronics and Communication', '9.09', '10', '40')
(6318, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '156', '157', '313', '3', '108', 'Walchand College Of Engineering', 'Electronics and Telecommunications', '69.4', '100', '9')
(6319, 'Arizona State University', '6', 'Reject', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '730', '560', '1290', '4', '112', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.94', '10', '0')
(6320, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3.5', '105', 'PEC University of Technology', 'Electrical Engineering', '7.6', '10', '0')
(6321, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0')
(6322, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '162', '317', '4', '112', 'BITS Dubai', 'Electronics and Communication Engineering (ECE)', '8.81', '10', '0')
(6323, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '87', 'VIT Pune', 'Mech Engg', '65', '100', '0')
(6324, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Sri Sairam Engineering College', 'Electronics and Communication Engineering', '7.4', '10', '0')
(6325, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '3', '100', 'Pune University', 'Computer Science', '64', '100', '0')
(6326, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', '3', '102', 'Govind Ballabh Pant Engg College', 'Electronics and Communication', '72', '100', '29')
(6327, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '100', 'BITS Pilani', 'Electrical and Electronics', '7.88', '10', '0')
(6328, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2016', '170', '162', '332', '3.5', '115', 'University of Pune', 'Computer Engineering', '62', '100', '37')
(6329, 'Arizona State University', '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0')
(6330, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '149', '305', '3', '8', 'SASTRA', 'EEE', '8.13', '10', '0')
(6331, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0')
(6332, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0')
(6333, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '670', '390', '1060', '3', '108', 'VTU', 'Computer Science', '74.5', '100', '0')
(6334, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(6335, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0')
(6336, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2013', '166', '159', '325', '4', '115', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.56', '10', '0')
(6337, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '3.5', '94', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communication', '7.3', '10', '0')
(6338, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '152', '312', '3', '102', 'nit raipur', 'electrical', '7.12', '10', '0')
(6339, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '400', '1200', '2.5', '100', 'VIT University', 'ECE', '8.51', '10', '0')
(6340, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0')
(6341, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '158', '324', '3', '95', 'Vignan Institute of Technology and Science', 'electronics and communications', '70.6', '100', '0')
(6342, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '4', '112', 'Sri Jayachamarajendra College of Engineering', 'Electronics and comm', '77', '100', '0')
(6343, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', '3', 'None', 'RGPV', 'Mechanical', '68', '100', '0')
(6344, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '162', '158', '320', '3.5', 'None', 'BITS Pilani', 'Electrical and Electronics', '7.75', '10', '0')
(6345, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '152', '316', '3.5', '101', 'Ambedkar Institute of technology', 'ECE', '77.77', '100', '0')
(6346, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '3', '97', 'Jaypee Institute of Information Technology', 'Computer Science', '78', '100', '30')
(6347, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12')
(6348, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '148', '311', '3', '99', 'SVITS', 'CSE', '65', '100', '30')
(6349, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '155', '321', '2.5', '109', 'NIT ALLAHABAD', 'ece', '7.86', '10', '66')
(6350, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3', '103', 'Amity University', 'CSE', '7.2', '10', '0')
(6351, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0')
(6352, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0')
(6353, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0')
(6354, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall', 'None', '159', '145', '304', '4.5', '100', 'VTU', 'mechanical', '72', '100', '0')
(6355, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '89', 'CET Odisha', 'CSE', '8', '10', '0')
(6356, 'Arizona State University', '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '149', '316', '3.5', '101', 'Biju Patnaik University of Technology', 'Electrical and Electronics engineering', '7.86', '10', '0')
(6357, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0')
(6358, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0')
(6359, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(6360, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0')
(6361, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '149', '310', '3', '95', 'Pune University', 'Computer Engg.', '65.15', '100', '0')
(6362, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '145', '301', '3.5', '105', 'JNTU', 'CSE', '73.2', '100', '0')
(6363, 'Arizona State University', '6', 'Reject', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(6364, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0')
(6365, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0')
(6366, 'Arizona State University', '6', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0')
(6367, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '152', '319', '3', '111', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '14')
(6368, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0')
(6369, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '520', '1320', '4.5', '273', 'SPCE', 'Electrical', '65', '100', '0')
(6370, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '630', '1410', '3', '100', 'Sathyabama University', 'ECE', '75', '100', '0')
(6371, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0')
(6372, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '94', 'JNTU', 'CSE', '68', '100', '0')
(6373, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0')
(6374, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '620', '1340', '3.5', '96', 'SRM', 'Computer Science', '9.35', '10', '0')
(6375, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '159', '152', '311', '3.5', 'None', 'Anna University', 'ECE', '74', '100', '0')
(6376, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0')
(6377, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0')
(6378, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '101', 'Anna University', 'Electronics and Communication Engineering', '7.6', '10', '0')
(6379, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '150', '153', '303', '3.5', '99', 'JNTU', 'electronics and instrumentation', '75', '100', '0')
(6380, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '153', '147', '300', '4', 'None', 'Amrita School of Engineering', 'ECE', '6.33', '10', '0')
(6381, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0')
(6382, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0')
(6383, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '159', '148', '307', '4', '103', 'SRM', 'ECE', '8.06', '10', '0')
(6384, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '154', '315', '3', '105', 'VTU', 'Telecommunication', '7.82', '10', '0')
(6385, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '4', '114', 'VTU', 'Information Science', '60', '100', '0')
(6386, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4')
(6387, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '147', '313', '3', '86', 'Pune University', 'e&tc;', '8.66', '10', '0')
(6388, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '146', '306', '3', '104', 'University of Pune', 'Electronics and Telecommunicatio', '71', '100', '0')
(6389, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '149', '304', '3.5', '110', 'VTU', 'Computer Science', '78', '100', '0')
(6390, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2014', '164', '159', '323', '4', '115', 'CUSAT', 'ECE', '65.23', '100', '6')
(6391, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '144', '302', '3', 'None', 'MREC(JNTUH)', 'ECE', '79', '100', '0')
(6392, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6393, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0')
(6394, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '151', '317', '4', '107', 'PESIT', 'Electronics and Communication Engineering', '7.7', '10', '28')
(6395, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49')
(6396, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(6397, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '161', '318', '3', '95', 'Pune University', 'ECE', '7.35', '10', '0')
(6398, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0')
(6399, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '3.5', '89', 'GITAM', 'ELECTRONICS AND COMMUNICATION', '8.36', '10', '0')
(6400, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '460', '1250', '3', '93', 'Coimbatore Insitute of Technology', 'CSE', '7.87', '10', '0')
(6401, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '157', '152', '309', '2.5', '99', 'PESIT', 'Electronics and Communication', '79', '100', '0')
(6402, 'Arizona State University', '6', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2011', '800', '580', '1380', '4', '114', 'NITK Surathkal', 'Electrical & electronics', '6.99', '10', '0')
(6403, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '440', '1200', '3', '90', 'NITK Surathkal', 'Computer Engineering', '71', '100', '0')
(6404, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0')
(6405, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0')
(6406, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0')
(6407, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(6408, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0')
(6409, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0')
(6410, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0')
(6411, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0')
(6412, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '152', '310', '5', '109', 'Sathyabama University', 'EEE', '8.07', '10', '0')
(6413, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '147', '308', '3', '97', 'Dayananda Sagar College of Engineering', 'Telecommunication', '75', '100', '0')
(6414, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0')
(6415, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0')
(6416, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0')
(6417, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '370', '1080', '3.5', '100', 'Pune University', 'Electronics Engineering', '58.13', '100', '0')
(6418, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2013', '163', '153', '316', '3', '104', 'BNMIT', 'ECE', '80', '100', '0')
(6419, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0')
(6420, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0')
(6421, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '520', '1300', '3', '277', 'K J Somaiya College of Engiineering', 'Computer Engineering', '53', '100', '0')
(6422, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0')
(6423, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0')
(6424, 'Arizona State University', '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0')
(6425, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '610', '1410', '3', '107', 'University of Mumbai', 'Computer Engineering', '61.4', '100', '24')
(6426, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15')
(6427, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '162', '329', '4.5', '115', 'Datta Meghe College of Engineering', 'Electronics', '59.4', '100', '0')
(6428, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0')
(6429, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '164', '158', '322', '4', '108', 'Gujarat Technological University', 'Computer Engineering', '7.71', '10', '0')
(6430, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0')
(6431, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '149', '313', '3', '109', 'MU', 'Instrumentation', '63.2', '100', '0')
(6432, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0')
(6433, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0')
(6434, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '155', '149', '304', '3', '89', 'PSG College of Technology', 'Mechanical Engineering', '7.96', '10', '0')
(6435, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '151', '308', 'None', '95', 'VTU', 'EEE', '67', '100', '22')
(6436, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0')
(6437, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '152', '154', '306', '3', '108', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.6', '10', '0')
(6438, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '490', '1220', '3', '102', 'VTU', 'Electronics and Communication', '66', '100', '0')
(6439, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(6440, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '151', '319', '3', '99', 'Nirma Institute of Technology', 'Eletronics and Communication', '7.52', '10', '0')
(6441, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0')
(6442, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0')
(6443, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0')
(6444, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '3', '101', 'GITAM', 'ECE', '8.63', '10', '0')
(6445, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '100', 'CVRCE', 'Electronics and Instrumentation', '70.01', '100', '0')
(6446, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0')
(6447, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '165', '154', '319', '4', '110', 'Pune University', 'Computer', '53', '100', '0')
(6448, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0')
(6449, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '102', 'Amrita School of Engineering', 'EEE', '7.55', '10', '41')
(6450, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '153', '319', '4', '106', 'VTU', 'Electronics & Communication', '84', '100', '24')
(6451, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '3', '107', 'VTU', 'Electronics & Communication', '81.5', '100', '24')
(6452, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', 'None', 'JNTU', 'ELECTRONICS & COMMUNICATION ENGINEERING', '73', '100', '0')
(6453, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0')
(6454, 'Arizona State University', '6', 'Reject', 'MS', 'energy', 'Fall ', '2012', '159', '144', '303', '3', '86', 'G.B.P.U.A.T Pantnagar', 'Electrical', '7.87', '10', '0')
(6455, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '103', 'JNTU', 'CSE', '70', '100', '0')
(6456, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Networks', 'Fall ', '2013', '162', '154', '316', '4.5', '112', 'VTU', 'Telecommunication', '81.059', '100', '0')
(6457, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'VTU', 'Electronics & Communication', '74.06', '100', '25')
(6458, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '790', '580', '1370', '2.5', '102', 'SRM', 'Computer Science', '8', '10', '0')
(6459, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '146', '308', '3.5', '96', 'MU', 'Electronics', '67.15', '100', '0')
(6460, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0')
(6461, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0')
(6462, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0')
(6463, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '157', '325', '3.5', '105', 'Shri Vaishnav Institute Of Technology and Science', 'Electronics and Communication', '70', '100', '0')
(6464, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0')
(6465, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0')
(6466, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '145', '305', '3', '98', 'Anna University', 'ECE', '8.29', '10', '3')
(6467, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0')
(6468, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27')
(6469, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6470, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24')
(6471, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '104', 'Jaypee Institute of Information Technology', 'CSE', '7.4', '10', '0')
(6472, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12')
(6473, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '93', 'Amrita School of Engineering', 'Electronic and Instrumentation', '8.01', '10', '0')
(6474, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '145', '308', '3', '94', 'LJIET', 'Mechanical', '6.69', '10', '0')
(6475, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0')
(6476, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'NIT Karnataka', 'EEE', '6.76', '10', '0')
(6477, 'Arizona State University', '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29')
(6478, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '490', '1230', '3.5', '97', 'Vidyalankar Institute of Technology', 'ETRX', '62', '100', '0')
(6479, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '147', '306', '3', '99', 'BVBCET', 'Electronics and Communication', '8.52', '10', '0')
(6480, 'Arizona State University', '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6481, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '4', '107', 'MU', 'Electrical', '64', '100', '18')
(6482, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'SPCE', 'Electrical', '62', '100', '0')
(6483, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Fall ', '2015', '160', '154', '314', '4', '112', 'MU', 'Instrumentation Engineeering', '65.55', '100', '0')
(6484, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '146', '310', '3', '110', 'P.T.U.', 'ECE', '75', '100', '0')
(6485, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '680', '560', '1240', '3', '86', 'Coimbatore Insitute of Technology', 'EEE', '8.41', '10', '0')
(6486, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0')
(6487, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0')
(6488, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27')
(6489, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '93', 'VJTI', 'COMPUTER', '6.5', '10', '0')
(6490, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2015', '161', '154', '315', '3', '102', 'Anna University', 'Chemical Engineering', '7.51', '10', '0')
(6491, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '158', '321', 'None', 'None', 'LNMIIT', 'ECE', '8.1', '10', '0')
(6492, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '141', '302', '3', 'None', 'U.P.T.U.', 'Electrical Engineering', '74.32', '100', '30')
(6493, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0')
(6494, 'Arizona State University', '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2006', '800', '650', '1450', '5', '287', 'Nirma Institute of Technology', 'ec', '73', '100', '0')
(6495, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '330', '1130', '3', '84', 'Velammal Engineering College', 'Information technology', '71', '100', '0')
(6496, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0')
(6497, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '3.5', '107', 'MU', 'Computer Engineering', '58', '100', '34')
(6498, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '3', '86', 'MU', 'Electronics And Telecommunication', '71', '100', '0')
(6499, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '156', '153', '309', '3.5', '107', 'VTU', 'Electronics and Communication', '67', '100', '57')
(6500, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '157', '147', '304', '3', '112', 'VTU', 'Electronics and communication', '82.6', '100', '0')
(6501, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0')
(6502, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '97', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.82', '10', '0')
(6503, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0')
(6504, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3.5', '109', 'MIT', 'Electronics', '6.5', '100', '0')
(6505, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '167', '152', '319', '3', '101', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '0')
(6506, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0')
(6507, 'Arizona State University', '6', 'Reject', 'MS', 'physics', 'Fall ', '2013', '163', '156', '319', '3.5', '100', 'Guru Gobind Singh Indraprashta University', 'ECE', '72', '100', '0')
(6508, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '142', '305', '3', '89', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.01', '10', '0')
(6509, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '158', '316', '4', '100', 'PICT', 'Information Technology', '3.56', '4', '33')
(6510, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0')
(6511, 'Arizona State University', '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44')
(6512, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '114', 'MU', 'Electronics and Telecommunication', '70', '100', '0')
(6513, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24')
(6514, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30')
(6515, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '147', '307', '3', '101', 'Anna University', 'EEE', '8', '10', '0')
(6516, 'Arizona State University', '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '580', '1320', '4', '104', 'MSRIT', 'Chemical Engineering', '7.67', '100', '0')
(6517, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '149', '319', '3.5', '111', 'Amrita School of Engineering', 'EIE', '7.7', '10', '0')
(6518, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '93', 'SASTRA', 'EEE', '8.36', '10', '0')
(6519, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '150', '309', '3', '96', 'VTU', 'ECE', '76', '100', '0')
(6520, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0')
(6521, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '151', '311', '3', '88', 'JNTU', 'EE', '78', '100', '0')
(6522, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '141', '305', '3', '81', 'Vardhaman', 'ece', '69', '100', '0')
(6523, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '144', '300', '3.5', '94', 'B.S.A.Crescent Engineering College', 'Electrical and Electronics Engineering', '69', '100', '0')
(6524, 'Arizona State University', '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '156', '161', '317', 'None', '117', 'Rajiv Gandhi Technical University', 'Information Technology', '67', '100', '0')
(6525, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0')
(6526, 'Arizona State University', '6', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0')
(6527, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0')
(6528, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '155', '316', '3.5', '104', 'Sardar Patel University', 'Electronics', '7.47', '10', '53')
(6529, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '142', '300', '3', '94', 'MSRIT', 'TC', '8.1', '10', '0')
(6530, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0')
(6531, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '3', '90', 'WBUT', 'Electrical Engineering', '8.71', '10', '0')
(6532, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0')
(6533, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Summer ', '2016', '163', '153', '316', '3.5', '102', 'IIIT Hyderabad', 'ECE', '8.4', '10', '0')
(6534, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '780', '590', '1370', '3', '98', 'BITS Pilani', 'Electrical and Electronics', '7.1', '10', '0')
(6535, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0')
(6536, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Sir MVIT', 'Telecommunication', '68.3', '100', '0')
(6537, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '95', 'JNTU', 'Electronics & Communications Engineering', '74.83', '100', '0')
(6538, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '153', '316', '3.5', '104', 'SVCE', 'Computer Science', '6.89', '10', '0')
(6539, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0')
(6540, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '2.5', '91', 'Andhra University', 'E E E', '71', '100', '0')
(6541, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '145', '303', '2.5', '105', 'None', 'IT', '7.57', '10', '0')
(6542, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '157', '319', '3', '116', 'MU', 'Mechanical', '63', '100', '0')
(6543, 'Arizona State University', '6', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '159', '150', '309', '2.5', '87', 'JNTU', 'Mechanical engg', '65', '100', '0')
(6544, 'Arizona State University', '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '142', '301', '3', 'None', 'SVNIT', 'Electrical Engineering', '6.92', '10', '0')
(6545, 'Arizona State University', '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '152', '151', '303', '3', '98', 'University of Mumbai', 'Production Engineering', '71', '100', '24')
(6546, 'Arizona State University', '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '550', '1350', '4.5', '115', 'BITS Hyderabad', 'Electronics and Communication Engineering', '6.5', '10', '0')
(6547, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', 'None', 'NMIMS', 'Electronics and Telecommunication', '3.55', '4', '0')
(6548, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '470', '1230', '3.5', '99', 'Panjab University', 'University Institute of Engineering and Technology', '70.5', '100', '0')
(6549, 'Arizona State University', '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0')
(6550, 'Arizona State University', '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2013', '166', '159', '325', '4', '113', 'Amrita Coimbatore', 'ECE', '7.73', '10', '0')
(6551, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2018', '-1', '-1', '-1', '-1', '100', 'Jaypee University of Engineering and Technology', 'Computer Science', '77', '100', '24')
(6552, 'Arizona State University', '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2017', '163', '145', '308', '4.5', '103', 'Anna University', 'Information Technology', '8.07', '10', '0')
(6553, 'Arizona State University', '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', '2018', '150', '163', '313', '4', '98', 'SRM University', 'Mechanical Engineering', '9', '10', '0')
(6554, 'California State University, East Bay', '7', 'Reject', 'MS', 'Computer Science', 'Fall', '2018', '150', '133', '283', '-1', '-1', 'VR Siddhartha engineering college', 'Computer Science', '7.88', '10', '0')
(6555, 'California State University, East Bay', '7', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '154', '135', '289', '2', '87', 'Kiit', 'Mechanical Engineering', '7', '10', '38')
(6556, 'Clarkson University', '8', 'Admit', 'MS', 'Engineering Management', 'Fall', '2019', '156', '138', '294', '3.5', '-1', 'KL University', 'Chemical Engineering', '6.53', '10', '13')
(6557, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0')
(6558, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0')
(6559, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '162', '329', '4', '110', 'University of Pune', 'E&TC;', '63.75', '100', '0')
(6560, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(6561, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(6562, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0')
(6563, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0')
(6564, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0')
(6565, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'Assam Engineering College', 'Civil Engineering', '79.6', '100', '0')
(6566, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0')
(6567, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '152', '320', '3', 'None', 'Osmania University', 'Mechanical', '71.2', '100', '22')
(6568, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.9', '10', '48')
(6569, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '165', '145', '310', '3.5', '108', 'SVNIT', 'Electronics', '8.7', '10', '0')
(6570, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '153', '150', '303', '3.5', '106', 'None', '0', '0', '0', '0')
(6571, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '148', '314', '4', '102', 'Maharishi Dayanand University', 'ECE', '77.74', '100', '0')
(6572, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0')
(6573, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '112', 'Pune University', 'Mechanical Engineering', '56.9', '100', '12')
(6574, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', '114', 'PESIT', 'Information Science', '8.32', '10', '0')
(6575, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '110', 'VIT University', 'Mechanical Engineering', '8.25', '10', '0')
(6576, 'Clemson University', '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0')
(6577, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37')
(6578, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22')
(6579, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0')
(6580, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0')
(6581, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0')
(6582, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0')
(6583, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0')
(6584, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '92', 'West Bengal University Of Technology', 'Automobile', '7.55', '10', '0')
(6585, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3.5', '105', 'VTU', 'Computer Science', '71', '100', '0')
(6586, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0')
(6587, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(6588, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0')
(6589, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0')
(6590, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '1340', '560', '1900', '3', 'None', 'COEP', 'Computer Science', '7.64', '10', '0')
(6591, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '150', '320', '3', '105', 'BITS Pilani', 'Mechanical', '8.62', '10', '24')
(6592, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '152', '318', '3.5', '108', 'PESIT', 'Mechanical', '9.13', '10', '12')
(6593, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '164', '145', '309', '3', '95', 'Andhra University', 'Mechanical Engineering', '7.56', '10', '0')
(6594, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '91', 'University of Pune', 'Mechanical Engineering', '59.3', '100', '0')
(6595, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29')
(6596, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '3', 'None', 'YCCE', 'mechanical', '64', '100', '0')
(6597, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0')
(6598, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3.5', '110', 'Sri Venkateswara College of Engineering', 'Mechanical', '7.2', '10', '0')
(6599, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'CEG', 'Mechanical engineering', '7', '10', '0')
(6600, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '163', '330', 'None', 'None', 'R V College of Engineering', '0', '8.63', '10', '0')
(6601, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0')
(6602, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '147', '308', '3.5', '98', 'MU', 'Mechanical Engineering', '57', '100', '0')
(6603, 'Clemson University', '9', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0')
(6604, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'COEP', 'Instrumentation and Control', '8.16', '10', '0')
(6605, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(6606, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '4', '114', 'GITAM', 'CS', '7.6', '10', '0')
(6607, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0')
(6608, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0')
(6609, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54')
(6610, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '155', '159', '314', '4', '114', 'SRM', 'Mechanical Engineering', '7.484', '10', '30')
(6611, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0')
(6612, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0')
(6613, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0')
(6614, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0')
(6615, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0')
(6616, 'Clemson University', '9', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', '162', '149', '311', '3.5', '105', 'Anna University', 'Electronics and Instrumentation', '7.6', '10', '18')
(6617, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0')
(6618, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '780', '520', '1300', '3', '98', 'SRM', 'ECE', '7', '10', '0')
(6619, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '166', '151', '317', '3.5', '103', 'Anna University', 'Mechanical', '86', '100', '0')
(6620, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '590', '1320', '3.5', '105', 'SRM', 'Mechanical Engineering', '9.2', '10', '0')
(6621, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '108', 'Anna University', 'Mathematics and Computer Applications', '8.79', '10', '0')
(6622, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0')
(6623, 'Clemson University', '9', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0')
(6624, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'Anna University', 'EEE', '6.45', '10', '0')
(6625, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '156', '142', '298', '3', '92', 'Pune University', 'Production Engineering', '0', '0', '0')
(6626, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0')
(6627, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '109', 'NIT Tirchy', 'Mechanical Engineering', '7.04', '10', '11')
(6628, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '650', '1400', '3.5', '104', 'SBMJCE', 'ECE', '65', '100', '0')
(6629, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '3.5', '111', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '7.21', '10', '0')
(6630, 'Clemson University', '9', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0')
(6631, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18')
(6632, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '154', '321', '4', '103', 'LNMIIT', 'cs', '6.33', '10', '0')
(6633, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '740', '400', '1140', '4', '83', 'VIT', 'Mechanical', '7.44', '10', '0')
(6634, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '3', '104', 'UPTU', 'Computer Science', '67', '100', '0')
(6635, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '100', 'GGSIPU', 'Mechanical and Automation Engineering', '77.7', '100', '0')
(6636, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '154', '312', '3', '109', 'GGSIPU', 'Computer Science', '78', '100', '0')
(6637, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', '3', '93', 'Pune University', 'IT', '64', '100', '0')
(6638, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0')
(6639, 'Clemson University', '9', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0')
(6640, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0')
(6641, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '4.5', '108', 'Amrita School of Engineering', 'EIE', '7.45', '10', '0')
(6642, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0')
(6643, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1')
(6644, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0')
(6645, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48')
(6646, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0')
(6647, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '490', '1280', '3.5', '96', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Information Technology', '81', '100', '0')
(6648, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0')
(6649, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '800', '520', '1320', '4', '290', 'Crescent Engineering College', 'Mechanical Engineering', '76', '100', '0')
(6650, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0')
(6651, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', 'None', '93', 'ESPOL - ECU', 'Elect & Comput Science', '7.52', '10', '0')
(6652, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '149', '319', '3', '96', 'NIT Bhopal', 'CIVIL', '6.98', '10', '31')
(6653, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(6654, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0')
(6655, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0')
(6656, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '380', '1170', '3', '104', 'SVCE', 'CS', '77', '100', '0')
(6657, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', '4', '109', 'Nanjing University', 'Software Institute', '82.9', '100', '0')
(6658, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '760', '490', '1250', '3.5', '97', 'JNTU', 'Computer Engg', '68', '100', '0')
(6659, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '151', '154', '305', '4', '115', 'Gurukula Kangri Vishwavidyalaya', 'Computer Science Engineering', '82.1', '100', '0')
(6660, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0')
(6661, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0')
(6662, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '111', 'ITM University M.D.U. Rohtak', 'Mechanical', '8.28', '10', '0')
(6663, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0')
(6664, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0')
(6665, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '114', 'MU', 'IT', '72.4', '100', '0')
(6666, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0')
(6667, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0')
(6668, 'Clemson University', '9', 'Admit', 'MS', 'Architectural Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'JNAFAU HYDERABAD', '0', '0', '0', '0')
(6669, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0')
(6670, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '150', '312', '4.5', '101', 'None', 'Mechanical Engineering', '8.2', '10', '0')
(6671, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '161', '322', '4', '112', 'SVNIT Surat', 'Mechanical', '8.3', '10', '0')
(6672, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0')
(6673, 'Clemson University', '9', 'Admit', 'MS', 'Architecture', 'Fall ', '2015', '162', '157', '319', 'None', '115', 'MU', "Rachana Sansad\\'s Academy of Architecture Mumbai", '67.5', '100', '12')
(6674, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '154', '315', '3.5', '107', 'Goa University', 'Electronics & Telecommunications', '72', '100', '48')
(6675, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '112', 'MU', 'Computer Engineering', '56', '100', '0')
(6676, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0')
(6677, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0')
(6678, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0')
(6679, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0')
(6680, 'Clemson University', '9', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '164', '153', '317', '3', '91', 'Mepco Schlenk Engineering College', 'EEE', '8.51', '10', '0')
(6681, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0')
(6682, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(6683, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '500', '1300', '3', '100', 'NIT Jaipur', 'Mechanical Engineering', '7.56', '10', '0')
(6684, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '152', '307', '3.5', '91', 'VIT University', 'CSE', '8.34', '10', '0')
(6685, 'Clemson University', '9', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '142', '306', '3', '93', 'GMRIT', 'Mechanical', '78', '100', '0')
(6686, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '163', '151', '314', '3', 'None', 'SRM', 'Civil Engineering', '8.82', '10', '0')
(6687, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0')
(6688, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0')
(6689, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6690, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(6691, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0')
(6692, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '154', '149', '303', '3', '7', 'MVGR College of Engg (JNTU-K)', 'Civil Engineering', '68.11', '100', '0')
(6693, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '168', '153', '321', '3', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.4', '10', '0')
(6694, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '690', '520', '1210', '3.5', '96', 'Koneru Lakshmaiah College of Engineering', 'Industrial & Production Engineering', '74', '100', '0')
(6695, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0')
(6696, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '155', '315', '4.5', 'None', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(6697, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '370', '720', '1090', '3.5', '93', 'Osmania University', 'Mechanical', '0', '0', '0')
(6698, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0')
(6699, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0')
(6700, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0')
(6701, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0')
(6702, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0')
(6703, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(6704, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '155', '314', '4', '106', 'University of Mumbai', 'Computer Engineering', '55.74', '100', '0')
(6705, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '540', '1250', '3', '81', 'Thiagarajar College of engineering', 'Computer Science', '9.31', '10', '0')
(6706, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '153', '316', '3.5', '107', 'Sardar Patel University', 'mechanical engineering', '8.43', '10', '0')
(6707, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0')
(6708, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0')
(6709, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0')
(6710, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '380', '1170', '3.5', '101', 'RGPV', 'Information Technology', '76.16', '100', '0')
(6711, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '440', '1160', '4', '107', 'Pune University', 'Mechanical Engineering', '68.72', '100', '0')
(6712, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0')
(6713, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6714, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '530', '1250', '3.5', '101', 'Anna University', 'Mechanical Engineering', '80.5', '100', '0')
(6715, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '164', '156', '320', '4', '110', 'University of Calicut', 'INSTRUMENTATION & CONTROL', '77.4', '100', '0')
(6716, 'Clemson University', '9', 'Admit', 'MS', 'biosystems engineering', 'Fall ', '2011', '710', '650', '1360', '4', '104', 'SASTRA', 'biotechnology', '9.5', '10', '0')
(6717, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0')
(6718, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '155', '147', '302', '3.5', '110', 'None', 'ECE', '81', '100', '0')
(6719, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'NIT Durgapur', 'CSE', '8.68', '10', '0')
(6720, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '96', 'COEP', 'IT', '7.05', '10', '0')
(6721, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '159', '145', '304', '3', '93', 'Ajalakshmi Engineering College', 'Automobile Engineering', '8.1', '10', '0')
(6722, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '160', '320', '4', '109', 'B M S College of Engineering', 'Computer Science and Engineering', '77.4', '100', '0')
(6723, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13')
(6724, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'SSN College of Engineering', 'Mechanical Engineering', '8.99', '10', '0')
(6725, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', 'None', 'Anna University', 'Mechanical Engineering', '81', '100', '0')
(6726, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0')
(6727, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '160', '146', '306', '3', 'None', 'Coimbatore Insitute of Technology', 'Mechanical', '9.15', '10', '0')
(6728, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '690', '500', '1190', '2.5', '89', 'AISSMS College of Engineering Pune', 'Civil', '64', '100', '0')
(6729, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0')
(6730, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0')
(6731, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '430', '1100', '2.5', '100', 'SASTRA', 'Information and Communication Tech.', '6.6', '10', '0')
(6732, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0')
(6733, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '168', '153', '321', '3', '102', 'NIT Surat', 'Production Engineering', '8.24', '10', '0')
(6734, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '156', '150', '306', '3', '100', 'Manipal Institue of Technology', 'MECHANICAL', '7', '10', '0')
(6735, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', 'None', '120', 'VTU', 'ECE', '73.71', '100', '0')
(6736, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(6737, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3.5', '111', 'Amrita School of Engineering', 'Electrical Engineering', '8.2', '10', '0')
(6738, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0')
(6739, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24')
(6740, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0')
(6741, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '113', 'None', 'Electronics and Comm', '75.6', '100', '0')
(6742, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '163', '160', '323', '4.5', '117', 'Manipal Institue of Technology', 'Mechanical', '8.7', '10', '0')
(6743, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '530', '1310', '4', '103', 'Anna University', 'ECE', '84', '100', '0')
(6744, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '149', '308', '3', '99', 'Thiagarajar College of engineering', 'mechanical', '8.87', '10', '0')
(6745, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0')
(6746, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(6747, 'Clemson University', '9', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2013', '750', '530', '1280', '2.5', '102', 'University of Dhaka', 'Mathematics', '72.4', '100', '0')
(6748, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '540', '1300', '3.5', '113', 'University of Pune', 'Electrical', '78.13', '100', '0')
(6749, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3', '104', 'Pune University', 'Computer Engineering', '65.2', '100', '0')
(6750, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '103', 'Goa University', 'Mechanical Dept.', '74.3', '100', '0')
(6751, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0')
(6752, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '111', 'Delhi College Of Engineeing', 'Mechanical Engineering', '67', '100', '0')
(6753, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '4', '96', 'MU', 'Mechanical', '65', '100', '0')
(6754, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '460', '1230', '4', '110', 'Pune University', 'Mechanical', '71.1', '100', '0')
(6755, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0')
(6756, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '500', '1220', '3.5', '108', 'University of Mumbai', 'Mechanical Engineering', '61', '100', '0')
(6757, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0')
(6758, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0')
(6759, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0')
(6760, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0')
(6761, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0')
(6762, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0')
(6763, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '152', '316', '3', '97', 'University of Mumbai', 'Production Engineering', '70.3', '100', '0')
(6764, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '104', 'NIT DGP', 'CE', '3.64', '4', '0')
(6765, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0')
(6766, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0')
(6767, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '98', 'JNTU', 'ECE', '74', '100', '0')
(6768, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '151', '320', '3.5', '108', 'NIT Jaipur', 'Mechanical', '6.2', '10', '0')
(6769, 'Clemson University', '9', 'Admit', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0')
(6770, 'Clemson University', '9', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0')
(6771, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '94', 'Pune University', 'Mechanical', '77.4', '100', '0')
(6772, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'R V College of Engineering', 'computer science', '79', '100', '0')
(6773, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0')
(6774, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0')
(6775, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '520', '1300', '4', '112', 'VTU', 'Mechanical', '77', '100', '0')
(6776, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2016', '159', '154', '313', '3.5', '113', 'VTU', 'Electrical and Electronics', '80.08', '100', '17')
(6777, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58')
(6778, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0')
(6779, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'CSE', '8', '10', '0')
(6780, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0')
(6781, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0')
(6782, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0')
(6783, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '750', '500', '1250', '3.5', '100', 'University of Pune', 'Mechanical', '67', '100', '0')
(6784, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '430', '1230', '4', '104', 'JNTU', 'mechanical engineering', '74', '100', '0')
(6785, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0')
(6786, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0')
(6787, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '169', '161', '330', '4', '109', 'NIT Rourkela', 'Electronics and Instrumentation Engg', '9.41', '10', '0')
(6788, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0')
(6789, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29')
(6790, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0')
(6791, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '590', '1330', '4', '104', 'NIT Silchar', 'Electrical Engineering', '6.67', '10', '0')
(6792, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0')
(6793, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33')
(6794, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '3.5', '108', 'IIT Indore', 'Mechanical Engineering', '7.16', '10', '24')
(6795, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VIT University', 'Mechanical', '7.82', '10', '0')
(6796, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '620', '580', '1200', '3.5', '86', 'Pune University', 'computer engg', '60', '100', '0')
(6797, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44')
(6798, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '770', '500', '1270', '3.5', '111', 'Ansal Institute of Technology', 'Computer Science', '73', '100', '0')
(6799, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'DA-IICT', 'ECE', '6.79', '10', '0')
(6800, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '752', '491', '1243', '3', '235', 'BITS Pilani', 'ENGGINEERING', '7', '10', '0')
(6801, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '580', '1310', 'None', '113', 'NMAMIT Karkala Karnataka', 'Mech Engineering', '8.6', '10', '0')
(6802, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '490', '1250', '3', '89', 'Pune University', 'Mechanical', '63', '100', '0')
(6803, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '146', '309', '3.5', '106', 'Pune University', 'Mechanical Engineering', '63', '100', '0')
(6804, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '730', '1500', '4', '114', 'VIT University', 'Mechanical with spl. in Energy', '8.63', '10', '0')
(6805, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '154', '315', '3.5', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engg', '65', '100', '0')
(6806, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '154', '319', '3.5', '107', 'Pune University', 'E&TC;', '65', '100', '0')
(6807, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '540', '1300', '3', '101', 'JNTU', 'Computer Science', '0', '0', '0')
(6808, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '152', '315', '4', '111', 'COEP', 'Production Engineering (Sandwich)', '8.94', '10', '16')
(6809, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0')
(6810, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '162', '157', '319', '3', '112', 'PCCOE Pune University', 'Electronics and Telecommunication Engineering', '0', '0', '28')
(6811, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '640', '1360', '4', 'None', 'BNMIT', 'ECE', '73', '100', '0')
(6812, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '152', '312', '3', '102', 'VTU', 'Mechanical engineering', '73.5', '100', '0')
(6813, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26')
(6814, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '620', '1420', '4', '102', 'Thiagarajar College of engineering', 'Mechanical engineering', '8.77', '10', '0')
(6815, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '152', '306', '3.5', '102', 'PESIT', 'Mechanical Engineering', '6.3', '10', '0')
(6816, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', 'None', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0')
(6817, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', '310', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0')
(6818, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0')
(6819, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '160', '156', '316', '4.5', '111', 'NIT Calicut', 'Mechanical', '6.23', '10', '0')
(6820, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '320', '1110', '3', '102', 'MU', 'Civil', '78', '100', '0')
(6821, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0')
(6822, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'Pune University', 'Mechanical Engineering', '69.8', '100', '0')
(6823, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0')
(6824, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0')
(6825, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '103', 'Andhra University', 'CSE', '8.14', '10', '47')
(6826, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '111', 'Osmania University', 'ECE', '82.3', '100', '0')
(6827, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3', '100', 'MU', 'Computer Engineer', '56', '100', '0')
(6828, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33')
(6829, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '152', '313', '4', '102', 'SRM', 'Mechanical Engg', '8.6', '10', '0')
(6830, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '720', '400', '1120', '4', '104', 'ICFAI', 'CSE', '7.95', '10', '0')
(6831, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0')
(6832, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0')
(6833, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6834, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '159', '320', '3.5', 'None', 'Aurora College of Engineering', 'Mechanical Engg', '69.7', '100', '0')
(6835, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0')
(6836, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0')
(6837, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '154', '312', '3', 'None', 'MVSR', 'I.T', '82', '100', '0')
(6838, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'None', '0', '0', '0', '0')
(6839, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'R N S Institute of Technology', 'Computer Science', '74', '100', '0')
(6840, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '780', '450', '1230', 'None', '98', 'Anna University', 'Mechanical', '7.36', '10', '0')
(6841, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '166', '152', '318', '4', '105', 'BITS Pilani', 'Mechanical Eng', '8.98', '10', '0')
(6842, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44')
(6843, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '156', '325', '3.5', '102', 'VTU', 'ECE', '70', '100', '0')
(6844, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0')
(6845, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '157', '323', '3', '102', 'VNR VJIET', 'Computer Science', '75.3', '100', '0')
(6846, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '660', '1420', '4', '108', 'The Technological institute of Textile and Sciences Bhiwani', 'Electronics & Communication Engineering', '68.3', '100', '0')
(6847, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54')
(6848, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12')
(6849, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '650', '440', '1090', '3', '91', 'Government College Of Engineering Aurangabad', 'Information Technology', '69', '100', '0')
(6850, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '101', 'CBIT', 'IT', '73.75', '100', '0')
(6851, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0')
(6852, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '109', 'Shivaji University', 'mechanical', '7.7', '10', '0')
(6853, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '154', '313', '3', 'None', 'Guru Gobind Singh Indraprashta University', 'Electrical and electronics', '75', '100', '0')
(6854, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0')
(6855, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '156', '316', '4', '103', 'Delhi College Of Engineeing', 'Electrical Engineering', '66', '100', '22')
(6856, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0')
(6857, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '86', 'Chilkur Balaji Institute of Tecnology (JNTUH)', 'C.S.E', '78', '100', '0')
(6858, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0')
(6859, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', 'None', '167', '148', '315', '4.5', '108', 'Osmania University', 'Electronics and Communication Engineering', '86.7', '100', '0')
(6860, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3', '109', 'MGIT (JNTU)', 'CSE', '74', '100', '0')
(6861, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '148', '312', '3', 'None', 'VIT University', 'Mechanical( ABET Accredited)', '9.1', '100', '0')
(6862, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6863, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '154', '312', '4', '113', 'Pune University', 'Electronics & Telecommunication', '60', '100', '8')
(6864, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(6865, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0')
(6866, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0')
(6867, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '159', '150', '309', '3.5', '96', 'Amrita School of Engineering', 'Civil', '8.19', '100', '0')
(6868, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0')
(6869, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0')
(6870, 'Clemson University', '9', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(6871, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '143', '301', '3.5', 'None', 'SNIST', 'Electronics and Computer Engineering', '82.98', '100', '15')
(6872, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '147', '305', '3.5', '104', 'VTU', 'Industrial engineering', '73', '100', '0')
(6873, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '730', '670', '1400', '4', '115', 'None', 'Mechanical Engineering', '76', '100', '0')
(6874, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0')
(6875, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0')
(6876, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0')
(6877, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0')
(6878, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '150', '306', '3', '105', 'BVBCET', 'mechanical', '8.98', '10', '0')
(6879, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '150', '310', '3', 'None', 'MU', 'CS', '61', '100', '0')
(6880, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0')
(6881, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0')
(6882, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '800', '630', '1430', '4.5', '113', 'University of Mumbai', 'Information Technology', '66', '100', '34')
(6883, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2016', '162', '155', '317', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'automobile', '6.67', '10', '0')
(6884, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24')
(6885, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0')
(6886, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '152', '312', '3.5', '95', 'University of Pune', 'E&TC;', '65.8', '100', '8')
(6887, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0')
(6888, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '470', '1220', '4', '109', 'The National Institute of Engineering', 'Mechanical Engineering', '65', '100', '0')
(6889, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '151', '319', '4', '117', 'BITS Hyderabad', 'ECE', '9.22', '10', '0')
(6890, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0')
(6891, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '155', '315', '3.5', '105', 'BITS Pilani', 'Mechanical', '7.39', '10', '0')
(6892, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '146', '304', '3.5', '7', 'Anna University', 'Mechanical engg', '7.98', '100', '0')
(6893, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0')
(6894, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '420', '1170', '3', '100', 'GGSIPU', 'mechanical n automation', '73', '100', '0')
(6895, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46')
(6896, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '110', 'GITAM', 'EEE', '6.6', '10', '0')
(6897, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0')
(6898, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '590', '1390', '3', '105', 'Anna University', 'Computer Science', '82', '100', '0')
(6899, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0')
(6900, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '740', '620', '1360', '4', '114', 'Mar Athanasius College of Engineering Kerala', 'Mechanical Engineering', '70', '100', '0')
(6901, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'Vasavi College of Engineering', 'mech', '70.7', '100', '0')
(6902, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0')
(6903, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '156', '320', '3', '107', 'COEP', 'Production engineering', '8.11', '10', '0')
(6904, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '107', 'Delhi College Of Engineeing', 'Electrical and Electronics', '74.19', '100', '24')
(6905, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '143', '306', '3.5', '107', 'K J Somaiya College of Engiineering', 'Mechanical Engg', '65', '100', '0')
(6906, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0')
(6907, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '161', '325', '4', '114', 'SPCE', 'Mech', '74.14', '100', '0')
(6908, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6909, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0')
(6910, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '141', '302', '3', '107', 'SRKNEC', 'Industrial Engineering', '70.89', '100', '0')
(6911, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '780', '440', '1220', '4.5', '103', 'Anna University', 'Computer Science and Engineering', '77', '100', '0')
(6912, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '154', '311', '4', '111', 'Swami Vivekananda Institute of Science and Technology', 'Mechanical Enginnering', '7.8', '10', '0')
(6913, 'Clemson University', '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '570', '1320', '4', '99', 'GITAM', 'ECE', '8.98', '10', '0')
(6914, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '150', '317', '4', '104', 'NIT Raipur', 'Mechanical Engineering', '8.89', '10', '0')
(6915, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0')
(6916, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42')
(6917, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0')
(6918, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '113', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '8.28', '10', '0')
(6919, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '440', '1240', '3.5', '98', 'NIT Bhopal', 'Computer Science & Engg.', '7', '10', '0')
(6920, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0')
(6921, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '150', '147', '297', '3.5', 'None', 'MSRIT', 'civil', '7.9', '10', '0')
(6922, 'Clemson University', '9', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0')
(6923, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0')
(6924, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '470', '1250', '3', '96', 'MITS', 'MECHANICAL', '78', '100', '0')
(6925, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0')
(6926, 'Clemson University', '9', 'Admit', 'MS', 'Bioresource/Biosystems Engg', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'Manipal Institue of Technology', 'Biotechnology', '8.83', '10', '0')
(6927, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '520', '1250', '3', '100', 'Pune University', 'Mechanical', '62', '100', '0')
(6928, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0')
(6929, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '750', '620', '1370', '4', 'None', 'PSG College of Technology', 'Biotechnology', '8.48', '10', '0')
(6930, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0')
(6931, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '100', 'MU', 'mechanical', '76', '100', '0')
(6932, 'Clemson University', '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6933, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0')
(6934, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '3', '98', 'Vignan Institute of Technology and Science', 'Mechanical Engineering', '78.1', '100', '0')
(6935, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '152', '321', '4', '103', 'IIT Indore', 'Mechanical', '8.43', '10', '12')
(6936, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '163', '160', '323', '3.5', '105', 'Telangana', 'Mechanical', '80', '100', '12')
(6937, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '137', '293', '2.5', '92', 'SRM', 'Mechanical Engineering', '8.391', '10', '0')
(6938, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '148', '304', '4', '109', 'JNTU', 'Mechatronics', '70.58', '100', '0')
(6939, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6940, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0')
(6941, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '360', '1090', '3', '92', 'Thiagarajar College of engineering', 'Computer Science Engineering', '7.56', '10', '0')
(6942, 'Clemson University', '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0')
(6943, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '740', '600', '1340', '4', '114', 'Modern College of Engineering', 'Mechanical Engineering', '76', '100', '0')
(6944, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'NIT Rourkela', 'Mechanical', '8.36', '10', '0')
(6945, 'Clemson University', '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '4.5', '108', 'University of Pune', 'Electronics & Telecommunications', '58', '100', '0')
(6946, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18')
(6947, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '4', '101', 'COEP', 'Electrical', '7.48', '10', '0')
(6948, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '167', '334', '5', '116', 'NITK Surathkal', 'Mechanical', '8.2', '10', '21')
(6949, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0')
(6950, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0')
(6951, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0')
(6952, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '570', '1300', '4', 'None', 'Manipal Institue of Technology', 'Mechanical Engineering', '8.46', '10', '0')
(6953, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '165', '325', '3.5', '110', 'NIT Bhopal', 'Mechanical Engg.', '7.53', '10', '0')
(6954, 'Clemson University', '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24')
(6955, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '785', '360', '1145', '4', '91', 'Anna University', 'Mechanical', '8.3', '10', '0')
(6956, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0')
(6957, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0')
(6958, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '155', '322', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.9', '10', '32')
(6959, 'Clemson University', '9', 'Admit', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0')
(6960, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0')
(6961, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '660', '550', '1210', '3', '92', 'RTM Nagpur University', 'Mechanical Engineering', '66', '100', '0')
(6962, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(6963, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '710', '330', '1040', '3', '83', 'JNTU', 'Mechnaical Engineering', '75', '100', '0')
(6964, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '790', '550', '1340', '3', '102', 'COEP', 'Civil', '7.16', '10', '0')
(6965, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0')
(6966, 'Clemson University', '9', 'Admit', 'MS', 'mba', 'Spring ', '2015', '46', '25', '71', '4.5', 'None', 'Anna University', 'Mechanical', '8.87', '10', '0')
(6967, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0')
(6968, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'YCCE', 'Mechanical Engineering', '72.2', '100', '0')
(6969, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '800', '620', '1420', '4', '283', 'NIT Calicut', 'Mechanical Engineering', '8.46', '10', '0')
(6970, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0')
(6971, 'Clemson University', '9', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0')
(6972, 'Clemson University', '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '710', '570', '1280', '3.5', '114', 'Goa University', 'E&TC;', '60.01', '100', '0')
(6973, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0')
(6974, 'Clemson University', '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '570', '1370', '4', '114', 'None', 'E.C.E', '70', '100', '0')
(6975, 'Clemson University', '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0')
(6976, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '740', '1480', '4.5', '116', 'SSN College of Engineering', 'IT', '7.96', '10', '0')
(6977, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0')
(6978, 'Clemson University', '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0')
(6979, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0')
(6980, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '102', 'UPTU', 'Mechanical Engineering', '65.48', '100', '0')
(6981, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '148', '314', '3', 'None', 'GITAM', 'Mechanical', '7.62', '10', '0')
(6982, 'Clemson University', '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '91', 'Jaypee Institute of Information Technology', 'Information Technology', '6.5', '10', '58')
(6983, 'Clemson University', '9', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', '164', '150', '314', '3', '104', 'BITS Goa', 'Mechanical Engineering', '7.17', '10', '0')
(6984, 'Clemson University', '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '740', '620', '1360', '4', '105', 'Amrita School of Engineering', 'Mechanical', '7.21', '10', '0')
(6985, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'PSG College of Technology', 'Mechanical Engineering', '8.28', '10', '48')
(6986, 'Clemson University', '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '3.5', '108', 'Amrita School of Engineering', 'Mech', '7.6', '10', '0')
(6987, 'Clemson University', '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '154', '308', 'None', '114', 'SRKNEC Nagpur University', 'Industrial', '66', '100', '0')
(6988, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '165', '157', '322', '3.5', '112', 'JNTU', 'Mechanical(Mechatronics)', '73', '100', '0')
(6989, 'Clemson University', '9', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0')
(6990, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0')
(6991, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6')
(6992, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0')
(6993, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '145', '306', '3', 'None', 'COEP', 'Production engineerimg', '7.26', '10', '0')
(6994, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', '106', 'Delhi College Of Engineeing', 'Mechanical', '56.3', '100', '0')
(6995, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0')
(6996, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0')
(6997, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '148', '314', '4', '106', 'PESIT', 'Telecommunication', '8.07', '10', '0')
(6998, 'Clemson University', '9', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0')
(6999, 'Clemson University', '9', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0')
(7000, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '152', '313', '3', '97', 'Pune University', 'electrical engineering', '57.06', '100', '0')
(7001, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0')
(7002, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '151', '150', '301', '3', '99', 'Anna University', 'Mechanical Engineering', '7.62', '10', '0')
(7003, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '101', 'VTU', 'Mechanical', '9.2', '10', '0')
(7004, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '151', '312', '3', '84', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation engg.', '56', '100', '0')
(7005, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16')
(7006, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '153', '310', '3.5', '110', 'VTU', 'Mechanical', '62', '100', '0')
(7007, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0')
(7008, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '148', '303', '3', '86', 'Shivaji University', 'civil engineering', '64', '100', '0')
(7009, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', '87', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '69', '100', '0')
(7010, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '158', '154', '312', '4', '104', 'Bannari Amman Institute Of Technology', 'Electrical and Electronics Engineering', '8.67', '10', '0')
(7011, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3.5', '106', 'RNSIT', 'Electronics & Communication', '71', '100', '0')
(7012, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0')
(7013, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0')
(7014, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0')
(7015, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0')
(7016, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '147', '158', '305', '3.5', '109', 'Anna University', 'Electrical and Electronics', '7.3', '10', '0')
(7017, 'Clemson University', '9', 'Reject', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0')
(7018, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0')
(7019, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '165', '162', '327', '3', '114', 'VIT University', 'Mechanical', '8.57', '10', '17')
(7020, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0')
(7021, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30')
(7022, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '710', '560', '1270', '4', '112', 'University of Pune', 'Mechanical Engineering', '59', '100', '0')
(7023, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0')
(7024, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(7025, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0')
(7026, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '163', '326', '4', '114', 'Anna University', 'Mechanical Engineering', '72', '100', '0')
(7027, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0')
(7028, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0')
(7029, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0')
(7030, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0')
(7031, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0')
(7032, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '144', '308', '3', 'None', 'GTU', 'mechanical', '8.76', '10', '0')
(7033, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0')
(7034, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0')
(7035, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '3', '107', 'MU', 'Computer Engineering', '58', '100', '0')
(7036, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '150', '319', '3', '99', 'Jadavpur University', 'Electrical Engineering', '7.33', '10', '0')
(7037, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '164', '151', '315', '3', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '9.01', '10', '25')
(7038, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0')
(7039, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0')
(7040, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0')
(7041, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', 'None', '93', 'MVSR', 'ECE', '77', '100', '0')
(7042, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6')
(7043, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(7044, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '147', '309', '3', '98', 'RTM Nagpur University', 'mechanical', '61', '100', '0')
(7045, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '143', '308', '3', '96', 'MVSR', 'ECE', '89', '100', '0')
(7046, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36')
(7047, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0')
(7048, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0')
(7049, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '300', '1040', '2.5', '84', 'Sathyabama University', 'electronics and instrumentation', '81', '100', '0')
(7050, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0')
(7051, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12')
(7052, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24')
(7053, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2013', '155', '150', '305', '3', '7', 'Pune University', 'Mechanical', '62', '100', '17')
(7054, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0')
(7055, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '4', '99', 'JNTU', 'CSE', '71.59', '100', '0')
(7056, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '143', '305', '3', '95', 'NIT-Raipur', 'Mechanical', '7.77', '10', '0')
(7057, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0')
(7058, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0')
(7059, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0')
(7060, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '7.28', '10', '0')
(7061, 'Clemson University', '9', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '157', '145', '302', '3', '103', 'PTU', 'cse', '80', '100', '0')
(7062, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12')
(7063, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0')
(7064, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0')
(7065, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '152', '305', '3', '100', 'None', 'cse', '65', '100', '0')
(7066, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0')
(7067, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0')
(7068, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '106', 'BNMIT', 'Electronics and Communication', '72', '100', '0')
(7069, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '142', '302', '3', '95', 'VITS', 'mechanical', '71', '100', '0')
(7070, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '98', 'VIT University', 'EEE', '8.75', '10', '0')
(7071, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0')
(7072, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '144', '306', '3', '96', 'Velammal Engineering College', 'production engineering', '8.35', '10', '0')
(7073, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0')
(7074, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '153', '319', '3', '103', 'ISM Dhanbad', 'Mechanical engineering', '7.01', '10', '51')
(7075, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0')
(7076, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0')
(7077, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'Rajiv Gandhi Technical University', 'Electronics and Communication Engineering', '69.41', '100', '0')
(7078, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '149', '302', '2.5', '94', 'RGPV', 'Mechanical', '6.29', '10', '0')
(7079, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(7080, 'Clemson University', '9', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '160', '148', '308', '3.5', '105', 'VTU', 'Telecommunication', '61', '100', '0')
(7081, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0')
(7082, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0')
(7083, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0')
(7084, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0')
(7085, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '162', '324', '4.5', '117', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '7.04', '10', '0')
(7086, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(7087, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '360', '1140', '3', '99', 'MU', 'Electronics', '70', '100', '0')
(7088, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0')
(7089, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7090, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '550', '1270', '2.5', '95', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '69', '100', '0')
(7091, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '390', '1120', '3', '101', 'Anna University', 'mechanical', '7.87', '10', '0')
(7092, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0')
(7093, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '150', '309', '3', '101', 'Sinhgad College of Engineering', 'Computer Engg', '63.93', '100', '0')
(7094, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '143', '310', '3', '80', 'SRM', 'Aerospace', '9.3', '10', '0')
(7095, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0')
(7096, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '146', '304', 'None', '103', 'Pune University', 'Mechanical', '73.33', '100', '0')
(7097, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2', '780', '460', '1240', '3.5', 'None', 'Sri Venkateswara College of Engineering', 'CSE', '7.88', '10', '0')
(7098, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '149', '307', '3.5', '7', 'JNTU', 'mechanical', '64', '100', '0')
(7099, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0')
(7100, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0')
(7101, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3.5', '106', 'CUSAT', 'ECE', '3.14', '4', '0')
(7102, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '145', '308', '3', '96', 'UPTU', 'Mechanical', '67.22', '100', '48')
(7103, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '139', '301', '3.5', '88', 'VTU', 'Info Science', '66.8', '100', '0')
(7104, 'Clemson University', '9', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0')
(7105, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', '3.5', '108', 'MU', 'Mechanical Engineering', '66', '100', '8')
(7106, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(7107, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '106', 'MU', 'electronics and telecommunications', '56', '100', '0')
(7108, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0')
(7109, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '720', '450', '1170', '3', '97', 'MU', 'Mechanical', '56', '100', '0')
(7110, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '480', '1180', '4.5', '103', 'VTU', 'Telecommunciation', '63', '100', '0')
(7111, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0')
(7112, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0')
(7113, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0')
(7114, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '85', 'MU', 'Electrical Engineering', '57', '100', '0')
(7115, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '146', '302', '3.5', '87', "The People\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'s University of Bangladesh", 'Electronics and Telecommunication engineering', '3.47', '4', '0')
(7116, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '145', '303', '2.5', 'None', 'RITS', 'CIVIL', '77.8', '100', '12')
(7117, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '162', '155', '317', '4', '113', 'M.G. University', 'ECE', '7.52', '10', '0')
(7118, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0')
(7119, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '4', '101', 'MU', 'Instrumentation', '62.5', '100', '0')
(7120, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0')
(7121, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0')
(7122, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0')
(7123, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '105', 'University of Pune', 'Electronics & Telecommunication', '68.8', '100', '0')
(7124, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0')
(7125, 'Clemson University', '9', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0')
(7126, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '4', '111', 'VIT Pune', 'Electronics', '6.62', '10', '0')
(7127, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '115', 'MU', 'Mechanical', '55', '100', '0')
(7128, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '102', 'CBIT', 'CSE', '80', '100', '0')
(7129, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0')
(7130, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2009', '780', '480', '1260', '4', '106', 'MIT Pune', 'Mechanical Engineering', '55', '100', '0')
(7131, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0')
(7132, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '99', 'SSN College of Engineering', 'ECE', '77', '100', '0')
(7133, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0')
(7134, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0')
(7135, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0')
(7136, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '309', '151', '460', '158', '108', 'MU', 'Mechanical', '74', '100', '0')
(7137, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0')
(7138, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0')
(7139, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0')
(7140, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33')
(7141, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0')
(7142, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '340', '1100', '3.5', 'None', 'BMSCE', 'Instrumentation Technology', '61.5', '100', '0')
(7143, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0')
(7144, 'Clemson University', '9', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '161', '144', '305', '3', '7', 'Pune University', 'Mech', '54', '100', '0')
(7145, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0')
(7146, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '520', '1320', '2.5', '90', 'DA-IICT', 'ICT', '7.5', '10', '0')
(7147, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '340', '1130', '3', '94', 'R V College of Engineering', 'Mechanical Engineering', '8.59', '10', '0')
(7148, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65')
(7149, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '89', 'University of Pune', 'Mechanical Engineering', '57', '100', '0')
(7150, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44')
(7151, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0')
(7152, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2013', '153', '144', '297', '2.5', '83', 'Walchand College Of Engineering', 'civil engineering', '67', '100', '0')
(7153, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0')
(7154, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '111', 'Thapar University', 'Mechanical Department', '8', '10', '0')
(7155, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '92', 'RUET', 'EEE', '3.87', '4', '0')
(7156, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0')
(7157, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2')
(7158, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '790', '400', '1190', '2.5', '94', 'Anna University', 'Electrical and Electronic enginnering', '9.01', '10', '0')
(7159, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '590', '1340', '3', '112', 'YCCE', 'Electronics', '67', '100', '0')
(7160, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '150', '311', '3', '104', 'University of Pune', 'electronics and telecommunication', '64', '100', '0')
(7161, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '156', '145', '301', '2.5', '86', 'None', 'electronics and communication', '76', '100', '0')
(7162, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0')
(7163, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '610', '1410', '4.5', '108', 'MU', 'Mechanical', '60', '100', '0')
(7164, 'Clemson University', '9', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29')
(7165, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3.5', '106', 'University of Pune', 'Mechanical Engineering (Sandwich Pattern) - involving 2 semesters industrial internship as part of the curriculum', '60.45', '100', '18')
(7166, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '147', '308', '3', '80', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '61.74', '100', '0')
(7167, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '162', '318', '3.5', '113', 'VJTI', 'Mechanical', '7.4', '10', '0')
(7168, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(7169, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0')
(7170, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43')
(7171, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0')
(7172, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0')
(7173, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0')
(7174, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0')
(7175, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0')
(7176, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '166', '152', '318', '3', '100', 'VESIT', 'Instrumentation', '65', '100', '0')
(7177, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '91', 'JNTU', 'computer science', '75', '100', '0')
(7178, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0')
(7179, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0')
(7180, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '110', 'NIT Karnataka', 'information Technology', '7.82', '10', '0')
(7181, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0')
(7182, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '155', '137', '292', '2.5', 'None', 'Khulna University of Engineering and Technology', 'Electrical & Electronic Engineering', '3', '4', '0')
(7183, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0')
(7184, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20')
(7185, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '149', '305', '3', 'None', 'Vasavi College of Engineering', 'Mechanical', '75.73', '100', '0')
(7186, 'Clemson University', '9', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '740', '480', '1220', '3', '92', 'Rajarambapu Institute of Technolog)y ( shivaji University', 'Electronics and Telecommunication', '70', '100', '0')
(7187, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0')
(7188, 'Clemson University', '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7189, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0')
(7190, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0')
(7191, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0')
(7192, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0')
(7193, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', 'None', 'JNTU', 'Mech Engg', '78', '100', '0')
(7194, 'Clemson University', '9', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0')
(7195, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0')
(7196, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '158', '151', '309', '3', '93', 'Pune University', 'E& TC', '67', '100', '24')
(7197, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '95', 'Sri Venkateswara College of Engineering', 'chemical engineering', '7.8', '10', '0')
(7198, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0')
(7199, 'Clemson University', '9', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2013', '163', '146', '309', '3', '98', 'Burdwan University', 'Mathematics', '61', '100', '0')
(7200, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '710', '490', '1200', '4', '111', 'Osmania University', '0', '73', '100', '0')
(7201, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '152', '308', '3', '105', 'DSCE', 'Automobile', '66', '100', '0')
(7202, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '790', '530', '1320', '3', '105', 'Pune University', 'Mech', '61.54', '100', '0')
(7203, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0')
(7204, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0')
(7205, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '4', '103', 'MU', 'Computer Engg Dept', '64', '100', '0')
(7206, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0')
(7207, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0')
(7208, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '147', '312', '4', '105', 'GITAM', 'Electrical & Electronics', '7.7', '10', '0')
(7209, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '450', '1250', '4.5', '277', 'J. B. Insititute of Engg & Tech./ aff. to JNTU', 'ECE', '70', '100', '0')
(7210, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0')
(7211, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3', '102', 'Gujarat Technological University', 'Mechatronics', '7.86', '10', '0')
(7212, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '146', '309', '3', '7', 'SASTRA', 'Mechanical', '8.95', '10', '0')
(7213, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50')
(7214, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '151', '312', '3', '7', 'NIT Hamirpur', 'Mechanical', '8.26', '10', '24')
(7215, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0')
(7216, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0')
(7217, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3.5', '93', 'Yeshwantrao Chavan College of Engineering', 'Mechanical Engineering', '64.8', '100', '0')
(7218, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '157', '315', '3', '107', 'RTM Nagpur University', 'MECHANICAL ENGG', '62', '100', '0')
(7219, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0')
(7220, 'Clemson University', '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33')
(7221, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '3', '98', 'NIT Warangal', 'Mechanical Engineering', '8.16', '10', '18')
(7222, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '142', '304', '3', 'None', 'Pune University', 'Mechanical', '62', '100', '0')
(7223, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0')
(7224, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0')
(7225, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(7226, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0')
(7227, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '690', '1490', '3', '111', 'MU', 'Mechanical Engineering', '52', '100', '0')
(7228, 'Clemson University', '9', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2014', '780', '530', '1310', '3.5', '100', 'VIT', 'ECE', '8.11', '10', '22')
(7229, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0')
(7230, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '13', '165', '144', '309', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Mechanical', '71', '100', '0')
(7231, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0')
(7232, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '141', '297', '2.5', '89', 'VTU', 'Mechanical Engineering', '63.5', '100', '0')
(7233, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '144', '310', '3.5', '95', 'Kurukshetra University', 'Mechanical Engineering', '71.18', '100', '0')
(7234, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '159', '318', '3.5', '106', 'Goa University', 'Information Technology', '64', '100', '36')
(7235, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '154', '314', '3.5', '107', 'MU', 'mechanical engineering', '57', '100', '0')
(7236, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '100', 'Bhilai Institute of Technology', 'Information Technology', '8.41', '10', '0')
(7237, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '153', '149', '302', '3.5', 'None', 'VTU', 'Mechanical Engineering', '8.9', '10', '0')
(7238, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '140', '291', '3', '87', 'RAIT', 'IT', '57', '100', '0')
(7239, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '161', '148', '309', '3', '101', 'VTU', 'Mechanical', '75.3', '100', '16')
(7240, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '650', '450', '1100', '3.5', '92', 'University of Calicut', 'ECE', '66', '100', '0')
(7241, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '450', '1140', '3', '102', 'Anna University', 'ece', '7.9', '10', '0')
(7242, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0')
(7243, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '790', '360', '1150', '3.5', '106', 'NIT Tirchy', 'Mechanical Engineering', '7.49', '10', '0')
(7244, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0')
(7245, 'Clemson University', '9', 'Reject', 'MS', 'Instrumentation and Control', 'Spring ', '2016', '157', '149', '306', '3', '88', "St Joseph's College of Engineering", 'Electronics and instrumentation engineering', '7.5', '10', '0')
(7246, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '97', 'BITS Goa', 'Mechanical', '7', '10', '0')
(7247, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0')
(7248, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '350', '1090', '3', '103', 'Sir MVIT', 'E&C;', '78', '100', '0')
(7249, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '143', '302', '3.5', '100', 'Dr. Pauls Engineering College (Anna University)', 'Mechanical Engineering', '7.2', '10', '0')
(7250, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0')
(7251, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0')
(7252, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0')
(7253, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '98', 'None', '0', '0', '0', '0')
(7254, 'Clemson University', '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '163', '153', '316', '3.5', 'None', 'PSG College of Technology', 'Automobile Engineering', '8.51', '10', '51')
(7255, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '4', '106', 'University Vishweriah College of Engineering', 'Electronics and Communication', '68.08', '100', '0')
(7256, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '160', '150', '310', '3', '96', 'SJBIT', 'ECE', '71', '100', '0')
(7257, 'Clemson University', '9', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24')
(7258, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '780', '480', '1260', '3.5', '105', 'MU', 'Mechanical', '60.8', '100', '0')
(7259, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0')
(7260, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0')
(7261, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '167', '147', '314', '2', '95', 'GITAM', 'Computer Science', '8.15', '10', '0')
(7262, 'Clemson University', '9', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '164', '155', '319', '4', '107', 'BITS Goa', 'Biological Sciences Electronics & Instrumentation', '7.14', '10', '0')
(7263, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '157', '313', '3.5', '104', "St Joseph's College of Engineering", 'ECE', '8.5', '10', '0')
(7264, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '145', '308', '3', '99', 'Anna University', 'Mechanical Engineering', '9.25', '10', '0')
(7265, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '146', '161', '307', '3', '86', 'JNTU', 'ECE', '81.5', '100', '0')
(7266, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3.5', '102', 'Dr D Y Patil School of Engineering', 'Mechanical Engineering', '60.4', '100', '0')
(7267, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '530', '1310', '4.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical', '56', '100', '0')
(7268, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '150', '308', '3', 'None', 'JNTU', 'ece', '80.5', '100', '0')
(7269, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0')
(7270, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0')
(7271, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '152', '144', '296', '3', '90', 'Institute of Engineering & Technology DAVV', 'Electronics & Instrumentation', '70.56', '100', '0')
(7272, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3.5', '106', 'VTU', 'Instrumentation Tech', '61', '100', '0')
(7273, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0')
(7274, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2009', '770', '330', '1100', '3', '96', 'S.P.University V.V.Nagar Gujarat', 'Mechanical', '6.7', '10', '0')
(7275, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3.5', '104', 'Osmania University', 'Mechanical', '83', '100', '0')
(7276, 'Clemson University', '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '157', '142', '299', '3', '92', 'PSG College of Technology', 'Metallurgical Engineering', '7', '10', '0')
(7277, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0')
(7278, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '3', '107', 'Pune University', 'Electronics & Telecomm', '79.4', '100', '0')
(7279, 'Clemson University', '9', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '159', '147', '306', '3', '92', 'None', 'Information Technology', '73', '100', '0')
(7280, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(7281, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '540', '1270', '3', '100', 'MVGR', 'ECE', '73', '100', '0')
(7282, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0')
(7283, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '166', '145', '311', '3', 'None', 'VIT University', 'ECE', '8.27', '10', '0')
(7284, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '630', '330', '960', '3', '89', 'Sri Krishna College Of Engineering And Technology', 'Mechatronics', '8.3', '10', '0')
(7285, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0')
(7286, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '149', '311', '3', '102', 'VJTI', 'Production Engineering', '7.6', '10', '0')
(7287, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0')
(7288, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '88', 'GITAM', 'Electronics(ECE)', '8.01', '10', '0')
(7289, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0')
(7290, 'Clemson University', '9', 'Reject', 'MS', 'Chemical Engineering', 'Spring ', '2012', '780', '550', '1330', '3', '98', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.24', '10', '0')
(7291, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0')
(7292, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical', '72', '100', '0')
(7293, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical Engineering', '72', '100', '0')
(7294, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0')
(7295, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0')
(7296, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '740', '410', '1150', '3.5', '94', 'MU', 'MECHANICAL', '56', '100', '0')
(7297, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'None', 'EEE', '8.3', '10', '0')
(7298, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '314', '152', '466', '3', '88', 'VIT Pune', 'Mech', '8.23', '10', '0')
(7299, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '510', '1280', '3.5', '98', 'PVG COET Pune', 'Mechanical Engineering', '58.35', '100', '0')
(7300, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0')
(7301, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '300', '1060', '3', '92', 'RNSIT', 'Electronics and Communication', '68', '100', '0')
(7302, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0')
(7303, 'Clemson University', '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '156', '150', '306', '3.5', '100', 'COEP', 'M.Tech Mechatronics', '7.71', '10', '0')
(7304, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0')
(7305, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '158', '156', '314', '3', 'None', 'Govt. Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '74.8', '100', '0')
(7306, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0')
(7307, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30')
(7308, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24')
(7309, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0')
(7310, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '148', '315', '3', '99', 'COEP', 'Instrumentation and Control', '8.2', '10', '0')
(7311, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '152', '319', 'None', '99', 'IIIT Allahabad', 'Information Technology', '7.08', '10', '0')
(7312, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0')
(7313, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '142', '304', '3', '91', 'Pune University', 'Mechanical', '68.7', '100', '32')
(7314, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '540', '1340', '3', '87', 'RAIT', 'Electronics and Telecom', '69.3', '100', '0')
(7315, 'Clemson University', '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0')
(7316, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0')
(7317, 'Clemson University', '9', 'Reject', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '680', '520', '1200', '3', '106', 'C.I.T.M. Faridabad affiliated to M.D. University Rohtak', 'Biotechnology', '73', '100', '0')
(7318, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0')
(7319, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '720', '400', '1120', '3', '97', 'Anna University', 'BE CSE', '80', '100', '0')
(7320, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '152', '310', '3', '114', 'MG University', 'mechanical engineering', '69', '100', '0')
(7321, 'Clemson University', '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0')
(7322, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '300', '1030', '3', '87', 'MVSR', 'Computer Science', '79', '100', '0')
(7323, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0')
(7324, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '146', '315', '3.5', '98', 'Nit surat', 'Production Engineering', '8.11', '10', '0')
(7325, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '93', 'Kurukshetra University', 'Mechanical', '67.3', '100', '0')
(7326, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44')
(7327, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3.5', '7', 'Pune University', 'Mechanical', '60', '100', '0')
(7328, 'Clemson University', '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0')
(7329, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0')
(7330, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0')
(7331, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0')
(7332, 'Clemson University', '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '96', 'UPTU', 'Mechanical Engineering', '62', '100', '0')
(7333, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '430', '1200', '3.5', '95', 'BVBCET', 'EE', '8.58', '10', '0')
(7334, 'Clemson University', '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0')
(7335, 'Clemson University', '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(7336, 'Clemson University', '9', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2017', '161', '144', '305', '3', '90', 'Sinhgad Institute Of Technology And Science, Narhe', 'Civil Engineering', '65', '100', '15')
(7337, 'Clemson University', '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring', '2019', '162', '140', '302', '3', '-1', 'KLS Gogte Institute Of Technology', 'ECE', '63.4', '100', '0')
(7338, 'Clemson University', '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall', '2016', '160', '151', '311', '3.5', '98', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '6.5', '10', '0')
(7339, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Spring', '2017', '154', '131', '285', '2', '-1', 'MLR Institute Of Technology', 'Computer Science', '73', '100', '0')
(7340, 'Cleveland State University', '10', 'Admit', 'MSc', 'Software Engineering', 'Fall', '2018', '153', '130', '283', '-1', '-1', 'Gujarat Technological University', 'Information Technology', '8.35', '10', '0')
(7341, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40')
(7342, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '500', '1230', '3.5', '99', 'NIT Silchar', 'Mechanical Engineering', '7.37', '10', '0')
(7343, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0')
(7344, 'Cornell University', '11', 'Admit', 'MS', 'EE / CS', 'Fall ', '2012', '800', '730', '1530', '4.5', '114', 'NIT Karnataka', 'ECE', '8.5', '10', '0')
(7345, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '550', '1340', '4', '113', 'MU', 'CS', '66.14', '100', '0')
(7346, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '166', '322', '3.5', '114', 'IIIT Allahabad', 'Electronics & Comm.', '8.98', '10', '0')
(7347, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '460', '1210', '4.5', '111', 'Pune University', 'Computer Engineering', '70', '100', '0')
(7348, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0')
(7349, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0')
(7350, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3', '107', 'IT BHU', 'Electronics Engg', '8.93', '10', '0')
(7351, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'Anna University', 'CS', '8.8', '10', '0')
(7352, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '158', '323', '4', '110', 'Punjabi University', 'cs', '82', '100', '0')
(7353, 'Cornell University', '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '149', '312', '3.5', '107', 'NIT Nagpur', 'CSE', '9.19', '10', '0')
(7354, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46')
(7355, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7356, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '710', '1510', 'None', '103', 'NIT Kurukshetra', 'Computer Engineering', '9', '10', '0')
(7357, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '163', '163', '326', '4.5', 'None', 'lafayette college', 'engineering', '0', '0', '0')
(7358, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '150', '318', '4', '104', 'NIT Rourkela', 'Computer Science', '9.26', '10', '0')
(7359, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '770', '490', '1260', '3.5', '105', 'VTU', 'Mechanical Engineering', '69', '100', '0')
(7360, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0')
(7361, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0')
(7362, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '161', '322', '3.5', '115', 'None', '0', '0', '0', '0')
(7363, 'Cornell University', '11', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0')
(7364, 'Cornell University', '11', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0')
(7365, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0')
(7366, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0')
(7367, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '115', 'MU', 'CS', '75', '100', '0')
(7368, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0')
(7369, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7370, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '158', '321', '4', '110', 'IT BHU', 'Mechanical Engg.', '8.53', '10', '0')
(7371, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '110', 'Nirma Institute of Technology', 'CS', '8.76', '10', '0')
(7372, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(7373, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '165', '155', '320', '3', '110', 'Thapar University', 'Mechanical', '7.83', '10', '0')
(7374, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '166', '163', '329', '4.5', '114', 'BITS Hyderabad', 'Civil Engineering', '8.95', '10', '0')
(7375, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0')
(7376, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '168', '151', '319', '4', '112', 'None', '0', '8.2', '10', '0')
(7377, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36')
(7378, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0')
(7379, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '117', 'NIT Warangal', 'CSE', '8.53', '10', '0')
(7380, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0')
(7381, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '166', '163', '329', '5', 'None', 'VTU', 'Electronics and Communication', '8.2', '10', '0')
(7382, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0')
(7383, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '164', '153', '317', '4', '108', 'SSN College of Engineering', 'CSE', '84.45', '100', '0')
(7384, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '150', '306', '4', '104', 'VIT', 'Information Technology', '9.1', '10', '0')
(7385, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0')
(7386, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0')
(7387, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0')
(7388, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '159', '319', '4', '114', 'NIT Allahabad', 'Electronics & Communication', '7.21', '10', '0')
(7389, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '158', '328', '4', '115', 'MSRIT', 'Computer Science', '8.94', '10', '0')
(7390, 'Cornell University', '11', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '770', '600', '1370', '4', 'None', 'University of California Berkeley', 'Electrical Engineering and Computer Science', '3.83', '4', '0')
(7391, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '109', 'University College of Engineering Osmania University', 'Mechanical Engineering', '9.14', '10', '0')
(7392, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VNIT Nagpur', 'EEE', '8.84', '10', '0')
(7393, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36')
(7394, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0')
(7395, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0')
(7396, 'Cornell University', '11', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0')
(7397, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0')
(7398, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'PESIT', 'Information Science', '78', '100', '0')
(7399, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(7400, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.3', '10', '0')
(7401, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '112', 'NITK Surathkal', 'Computer Science', '0', '0', '0')
(7402, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '159', '320', '4', '111', 'MU', 'Computer SCience', '81.29', '100', '12')
(7403, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '5', '111', 'R V College of Engineering', 'Computer Science', '9.32', '10', '0')
(7404, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0')
(7405, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '152', '320', '3.5', '101', 'D J Sanghvi', 'EXTC', '76.42', '100', '0')
(7406, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '152', '312', '4', '110', 'VTU', 'ECE', '74.6', '100', '0')
(7407, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0')
(7408, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '720', '1510', '5', '290', 'University of Mumbai', 'Information Technology', '69.4', '100', '0')
(7409, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '550', '1340', '4', '267', 'University of Madras', 'CS', '88', '100', '0')
(7410, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22')
(7411, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0')
(7412, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0')
(7413, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '97', 'None', 'ECE', '9.38', '100', '0')
(7414, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '620', '1390', '4', '111', 'Pune University', 'Mechanical', '66', '100', '0')
(7415, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0')
(7416, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '3.5', '97', 'R V College of Engineering', 'Telecommuniction Engineering', '83', '100', '0')
(7417, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24')
(7418, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '106', 'VIT', 'civil', '9.27', '10', '0')
(7419, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', 'None', 'VTU', 'Information Science', '83.07', '100', '25')
(7420, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '800', '720', '1520', '4', '116', 'SRM University', 'Biotech', '8.71', '10', '0')
(7421, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '510', '1300', '4', '103', 'None', '0', '0', '0', '0')
(7422, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0')
(7423, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0')
(7424, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '159', '327', '4', '100', 'IIIT Allahabad', 'IT', '8.54', '10', '0')
(7425, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(7426, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '590', '1360', '3.5', '104', 'BITS Pilani', 'EEE', '9.18', '10', '0')
(7427, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '3.5', '112', 'BMSCE', 'Infomation Science and Engineering', '76.2', '100', '0')
(7428, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0')
(7429, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '154', '323', '3', '105', 'Delhi College Of Engineeing', 'Information Technology', '71.06', '100', '0')
(7430, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0')
(7431, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0')
(7432, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0')
(7433, 'Cornell University', '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7434, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '5.5', '109', 'VTU', 'CSE', '9.8', '10', '0')
(7435, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0')
(7436, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0')
(7437, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0')
(7438, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0')
(7439, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(7440, 'Cornell University', '11', 'Admit', 'MS', 'Systems Engineering', 'Fall ', '2012', '160', '154', '314', '4.5', '117', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '64.23', '100', '0')
(7441, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '4', 'None', 'UMass Lowell', 'Electrical And Computer Engineering', '0', '0', '0')
(7442, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '167', '157', '324', '4.5', '109', 'NIT - Trichy', 'Mechanical Engineering', '8.8', '10', '0')
(7443, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3.5', '108', 'Nirma Institute of Technology', 'INFORMATION TECHNOLOGY', '8.1', '10', '0')
(7444, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'BITS Pilani', 'civil engg', '7.99', '10', '0')
(7445, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '153', '322', '4.5', '118', 'SSN College of Engineering', 'Chemical', '8.9', '10', '0')
(7446, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', 'None', 'U of Washington', 'Computer Science and Engineering', '3.78', '4', '0')
(7447, 'Cornell University', '11', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0')
(7448, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '155', '316', '4', '108', 'BITS Dubai', 'ECE', '9.06', '10', '0')
(7449, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0')
(7450, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '470', '1270', '3.5', '105', 'IIT Madras', 'civil engineering', '8.4', '10', '0')
(7451, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(7452, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2011', '790', '670', '1460', '4.5', '114', 'IIT Madras', 'Physics', '9.45', '10', '0')
(7453, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7454, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '690', '1470', '3.5', '115', 'Bharati Vidyapeeth', 'CSE', '80.5', '100', '0')
(7455, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3.5', '109', 'VTU', 'EC', '75', '100', '0')
(7456, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0')
(7457, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '600', '1370', '4', '113', 'SASTRA', 'Electronics and Communications Engineeing', '8.5', '10', '0')
(7458, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '113', 'R V College of Engineering', 'CSE', '9.42', '10', '0')
(7459, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0')
(7460, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0')
(7461, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0')
(7462, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0')
(7463, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0')
(7464, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '680', '590', '1270', '3.5', '106', 'MDU', 'UIET', '78', '100', '0')
(7465, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '152', '315', '3.5', 'None', 'Stony Brook University', 'Chemistry', '3.5', '4', '0')
(7466, 'Cornell University', '11', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2009', '750', '680', '1430', '4', '113', 'JNTU', 'Mechanical Engineering', '0', '0', '0')
(7467, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '160', '155', '315', '3', '107', 'MSRIT', 'Chemical Engineering', '8.5', '10', '0')
(7468, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0')
(7469, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7470, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '510', '1310', '3', '111', 'ITAM', 'Digital Systems', '7.83', '10', '0')
(7471, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '800', '690', '1490', '6', '117', 'VTU', 'Mechanical Engineering', '74', '100', '0')
(7472, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '570', '1370', '4.5', '119', 'Sri Ramakrishna Institute of Technology', 'Electrical Engineering', '80', '100', '0')
(7473, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0')
(7474, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0')
(7475, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '154', '313', '3', '107', 'Vidyalankar Institute of Technology', 'Electronics & Telecommunications', '66.58', '100', '0')
(7476, 'Cornell University', '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0')
(7477, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(7478, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0')
(7479, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '150', '311', '4', '99', 'MSRIT', 'CSE', '9.13', '10', '8')
(7480, 'Cornell University', '11', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0')
(7481, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '111', 'Jadavpur University', 'Electronics and Telecomm Engg.', '9.26', '10', '0')
(7482, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0')
(7483, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12')
(7484, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0')
(7485, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(7486, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33')
(7487, 'Cornell University', '11', 'Admit', 'MS', 'statistics', 'Fall ', '2011', '790', '610', '1400', '3.5', '111', 'BITS Pilani', 'Maths and Engg', '8.72', '10', '0')
(7488, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0')
(7489, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0')
(7490, 'Cornell University', '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '167', '153', '320', '4', '105', 'IIT (BHU) Varanasi', 'Ceramic Engineering', '7.02', '10', '24')
(7491, 'Cornell University', '11', 'Admit', 'MS', 'Master of engineering management', 'Fall ', '2013', '164', '152', '316', '4', 'None', "Queen's University", 'Civil', '3.3', '4', '0')
(7492, 'Cornell University', '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '740', '600', '1340', '3', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '7.8', '10', '0')
(7493, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0')
(7494, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '720', '410', '1130', '3.5', '101', 'SJCE', 'Information Science', '78', '100', '0')
(7495, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '118', 'SASTRA', 'Civil Engineering', '9.45', '10', '0')
(7496, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '610', '1400', '4', '105', 'VTU', 'EEE', '78', '100', '0')
(7497, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', 'None', 'None', 'VTU', 'Computer Science', '80', '100', '0')
(7498, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '170', '154', '324', 'None', '111', 'NIT Kurukshetra', 'Electrical Engineering', '9.72', '10', '0')
(7499, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'MU', 'Computer', '71.06', '100', '0')
(7500, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0')
(7501, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', '4', '110', 'MSRIT', 'Computer Science and Engineering', '9.1', '10', '0')
(7502, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0')
(7503, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0')
(7504, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '4', '109', 'PESIT', 'Information Science', '9.47', '10', '39')
(7505, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0')
(7506, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', '112', 'NIT Srinagar', 'chemical Engineering', '7.41', '10', '0')
(7507, 'Cornell University', '11', 'Admit', 'MS', 'biomedical sciences', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7508, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24')
(7509, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0')
(7510, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0')
(7511, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '640', '1440', '4.5', '112', 'NIT Warangal', 'Mechanical Engineering', '9.15', '10', '0')
(7512, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0')
(7513, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0')
(7514, 'Cornell University', '11', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0')
(7515, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '147', '309', '3', '104', 'Anna University', 'Computer Science', '9.41', '10', '0')
(7516, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0')
(7517, 'Cornell University', '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0')
(7518, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '163', '153', '316', '4', '116', 'BITS Pilani', 'EEE', '9.27', '10', '0')
(7519, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15')
(7520, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '560', '1360', '4', '113', 'JNTU', 'ECE', '3.62', '4', '0')
(7521, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0')
(7522, 'Cornell University', '11', 'Admit', 'MS', 'health administration', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7523, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0')
(7524, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '155', '318', '5.5', '118', 'None', '0', '0', '0', '0')
(7525, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '149', '314', '3', '102', 'Maulana Azad National Institute of Technology', 'Computer Science and Engineering', '8.43', '10', '0')
(7526, 'Cornell University', '11', 'Admit', 'MS', 'physics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'UCLA', 'Physics', '3.86', '4', '0')
(7527, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '111', 'BITS Pilani', 'Computer Science', '9.23', '10', '0')
(7528, 'Cornell University', '11', 'Admit', 'MS', 'food science', 'Fall ', '2011', '790', '540', '1330', '3', '100', 'University of Rajasthan', 'Biotechnology', '68.5', '100', '0')
(7529, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0')
(7530, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0')
(7531, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7532, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0')
(7533, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0')
(7534, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0')
(7535, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(7536, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0')
(7537, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '790', '710', '1500', '4', '108', 'SASTRA', 'ECE', '0', '0', '0')
(7538, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '157', '319', '4.5', '108', 'VIT University', 'CSE', '8.8', '10', '0')
(7539, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0')
(7540, 'Cornell University', '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'instrumentation and control', '0', '100', '0')
(7541, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0')
(7542, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '4', '102', 'National institue of technology jalandhar', 'Ec', '66', '100', '0')
(7543, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '570', '1370', '40', '112', 'MU', 'Mech ENgg', '3.62', '4', '0')
(7544, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '540', '1340', '4', '104', 'MIT Pune', 'Computer Science', '72', '100', '0')
(7545, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '3.5', '115', 'MNNIT', 'Computer Science and Engineering', '9.97', '10', '0')
(7546, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'IIT Allahabad', 'Information Technology', '9.17', '10', '0')
(7547, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '510', '1290', 'None', '106', 'R V College of Engineering', 'Computer science', '0', '0', '0')
(7548, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '490', '1290', '3', '102', 'Delhi College Of Engineeing', 'IT', '76.25', '100', '0')
(7549, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '720', '480', '1200', '4', '114', 'Pune University', 'COMPUTER ENGINEERING', '73', '100', '0')
(7550, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '105', 'NIT Jaipur', 'Computer Engineering', '8.85', '10', '0')
(7551, 'Cornell University', '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '780', '700', '1480', '3', '111', 'IIT Guwahati', 'Civil Engineering', '9.29', '10', '0')
(7552, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '117', 'R V College of Engineering', 'Mechanical Engg', '9.07', '10', '0')
(7553, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '162', '328', '4.5', '118', 'College of Engineering and Technology', 'Computer Science and Engineering', '9.09', '10', '90')
(7554, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0')
(7555, 'Cornell University', '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0')
(7556, 'Cornell University', '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0')
(7557, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(7558, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0')
(7559, 'Cornell University', '11', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0')
(7560, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3', '101', 'Anna University', 'EEE', '9.1', '10', '0')
(7561, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0')
(7562, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3.5', '104', 'NIT Silchar', 'cse', '8.14', '10', '0')
(7563, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '163', '162', '325', '4', 'None', 'Colgate University', 'Chemistry', '3.5', '4', '0')
(7564, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0')
(7565, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '790', '1580', '4.5', '113', 'Anna University', 'Information Technology', '81', '100', '0')
(7566, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '590', '1390', '3', '109', 'IIT Roorkee', 'ECE', '8.744', '10', '0')
(7567, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0')
(7568, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0')
(7569, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '570', '1370', '4', '111', 'NIT-Allahabad', 'CSE', '9.53', '10', '0')
(7570, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '318', '153', '471', '4.5', '106', 'VIT University', 'Electronics and Communication', '8.97', '10', '0')
(7571, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '159', '163', '322', 'None', 'None', 'NIT Allahabad', 'Production & Industrial Engg', '7.8', '10', '0')
(7572, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '169', '335', '4.5', '119', 'VJTI', 'Mechanical Engg.', '8.5', '10', '0')
(7573, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'NIT Tirchy', 'ECE', '7.45', '10', '0')
(7574, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0')
(7575, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(7576, 'Cornell University', '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '700', '1480', '5', '118', 'None', '0', '0', '0', '0')
(7577, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '570', '1350', '4', '106', 'VTU', 'Electronics and communication', '88', '100', '0')
(7578, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12')
(7579, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '540', '1310', '3', '96', 'CEG', 'ECE', '8.48', '10', '0')
(7580, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '163', '331', '3.5', '118', 'Thapar University', 'Mechanical', '9.06', '10', '0')
(7581, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '660', '1460', '4', '109', 'PESSE (VTU)', 'ECE', '86', '100', '0')
(7582, 'Cornell University', '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '100', 'CEG', 'Ece', '8.8', '10', '0')
(7583, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(7584, 'Cornell University', '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '110', 'Manipal Institue of Technology', 'Computer Science', '9.32', '10', '0')
(7585, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0')
(7586, 'Cornell University', '11', 'Admit', 'MS', 'Veterinary & Animal Science', 'Fall ', '2013', '159', '152', '311', '4', '113', 'Kerala Agricultural University', 'Veterinary medicine', '7.6', '10', '0')
(7587, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '680', '1480', '3', '109', 'VTU', 'IS', '79', '100', '0')
(7588, 'Cornell University', '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '620', '1400', '3.5', '108', 'BITS Pilani', 'Electronics and instrumentation and Biology', '7.58', '10', '0')
(7589, 'Cornell University', '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '159', '323', '3.5', '102', 'NIT Tirchy', 'Production Engg', '8.5', '10', '0')
(7590, 'Cornell University', '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0')
(7591, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '116', 'NITK Surathkal', 'CS', '9.13', '10', '0')
(7592, 'Cornell University', '11', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2011', '800', '650', '1450', '5.5', '120', 'NIT-C', 'architecture', '8.23', '10', '0')
(7593, 'Cornell University', '11', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0')
(7594, 'Cornell University', '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0')
(7595, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '158', '325', 'None', 'None', 'NIT', 'Computer Science', '9.07', '10', '12')
(7596, 'Cornell University', '11', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'NIT Karnataka', 'Electronics and Communcation Engineering', '8.56', '10', '0')
(7597, 'Cornell University', '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(7598, 'Cornell University', '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0')
(7599, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0')
(7600, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3', '98', 'Jaypee Institute of Information Technology', 'IT', '8.3', '10', '0')
(7601, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7')
(7602, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0')
(7603, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0')
(7604, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0')
(7605, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '168', '155', '323', '3.5', '108', 'MU', 'Electronics', '62', '100', '0')
(7606, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63')
(7607, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0')
(7608, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0')
(7609, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '156', '320', '4', '111', 'DA-IICT', 'ICT', '6.74', '10', '0')
(7610, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0')
(7611, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '730', '720', '1450', '4', '110', 'CEG', 'ECE', '7.1', '10', '0')
(7612, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '160', '326', '4.5', '120', 'BITS Pilani', 'Mechanical Engineering', '8.04', '10', '0')
(7613, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3', '87', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(7614, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0')
(7615, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '105', 'MNNIT', 'CSE', '8.3', '10', '0')
(7616, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '161', '322', '4', '110', 'BITS Goa', 'CS', '8', '10', '0')
(7617, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0')
(7618, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0')
(7619, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24')
(7620, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0')
(7621, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '15', '170', '159', '329', '4', '110', 'Delhi University', 'Electronics and Communication', '71.4', '100', '45')
(7622, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24')
(7623, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0')
(7624, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0')
(7625, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0')
(7626, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '690', '440', '1130', '3', '81', 'Anna University', 'Computer Science', '85', '100', '0')
(7627, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0')
(7628, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0')
(7629, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0')
(7630, 'Cornell University', '11', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48')
(7631, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0')
(7632, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(7633, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0')
(7634, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0')
(7635, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '3.5', '112', 'Bharati Vidyapeeth', 'Information Technology', '3.9', '4', '0')
(7636, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(7637, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'DA-IICT', 'Information and Communication Technology', '8.87', '10', '0')
(7638, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '4', '112', 'BITS Goa', 'Bilogical Science and Computer Science', '7.45', '10', '0')
(7639, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '760', '800', '1560', '5.5', '119', 'R V College of Engineering', 'ECE', '80.8', '100', '0')
(7640, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0')
(7641, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0')
(7642, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0')
(7643, 'Cornell University', '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall', 'None', '750', '740', '1490', '3', '117', 'UPTU', 'Electronics & Instrumentation', '70', '100', '0')
(7644, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0')
(7645, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0')
(7646, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'UIET Panjab University', 'Engineering', '76', '100', '0')
(7647, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0')
(7648, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0')
(7649, 'Cornell University', '11', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8')
(7650, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0')
(7651, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '630', '1420', '5', '293', 'MU', 'Electronics', '72.97', '100', '0')
(7652, 'Cornell University', '11', 'Reject', 'MS', 'Construction Management', 'Fall ', '2015', '160', '155', '315', '4', '112', 'Manipal Institue of Technology', 'Architecture', '0', '0', '0')
(7653, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '4', '100', 'MDU', 'ece', '60', '100', '0')
(7654, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '650', '1450', '3', '116', 'IIT BHU', 'Mechanical', '72.4', '100', '0')
(7655, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0')
(7656, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', '3.5', '117', 'University of Cape Town', 'Engineering', '69.9', '100', '0')
(7657, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '570', '1350', 'None', '101', 'UPTU', 'Information Technology', '71', '100', '0')
(7658, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0')
(7659, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4.5', '112', 'Manipal Institue of Technology', 'CS', '3.5', '4', '0')
(7660, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '155', '325', '4', '113', 'IIT Guwahati', 'Computer Science', '6.8', '10', '0')
(7661, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', 'None', 'VTU', 'CS', '77', '100', '0')
(7662, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0')
(7663, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '160', '162', '322', '4', '115', 'BITS Hyderabad', 'Chemical Engineering', '8.07', '10', '0')
(7664, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0')
(7665, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(7666, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0')
(7667, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0')
(7668, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58')
(7669, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0')
(7670, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '158', '328', '4.5', '114', 'NIT Kurukshetra', 'Mech', '9.74', '10', '0')
(7671, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0')
(7672, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0')
(7673, 'Cornell University', '11', 'Reject', 'MS', 'physics', 'Fall ', '2014', '167', '156', '323', '4', '105', 'NIT Calicut', 'Physics', '8.4', '10', '0')
(7674, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20')
(7675, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0')
(7676, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '143', '311', '3.5', '102', 'None', '0', '62.27', '100', '0')
(7677, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(7678, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22')
(7679, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0')
(7680, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0')
(7681, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36')
(7682, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0')
(7683, 'Cornell University', '11', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0')
(7684, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(7685, 'Cornell University', '11', 'Reject', 'MS', 'food science', 'Fall ', '2012', '740', '470', '1210', '4', '104', 'MU', 'Biotechnology', '70.83', '100', '0')
(7686, 'Cornell University', '11', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2013', '780', '610', '1390', 'None', '107', 'Amity University', 'Computer Science', '8.53', '10', '0')
(7687, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0')
(7688, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '110', 'IIT Kharagpur', 'CS', '8.5', '10', '0')
(7689, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0')
(7690, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '4', '105', 'Delhi College Of Engineeing', 'Computer Engineering', '62.5', '100', '0')
(7691, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0')
(7692, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0')
(7693, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12')
(7694, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0')
(7695, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0')
(7696, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57')
(7697, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0')
(7698, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84')
(7699, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0')
(7700, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0')
(7701, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0')
(7702, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '166', '325', '4', '114', 'MU', 'Computer Engg', '65', '100', '0')
(7703, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44')
(7704, 'Cornell University', '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0')
(7705, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0')
(7706, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0')
(7707, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0')
(7708, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0')
(7709, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(7710, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0')
(7711, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0')
(7712, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0')
(7713, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0')
(7714, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall', 'None', '162', '149', '311', '3.5', '107', 'Amrita School of Engineering', 'Mechanical', '7.66', '10', '0')
(7715, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55')
(7716, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0')
(7717, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0')
(7718, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0')
(7719, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42')
(7720, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '106', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '8.54', '10', '0')
(7721, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '109', 'BITS Pilani', 'computer science', '8.4', '10', '0')
(7722, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(7723, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(7724, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0')
(7725, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '108', 'R V College of Engineering', 'Computer Science', '78.5', '100', '0')
(7726, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(7727, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0')
(7728, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22')
(7729, 'Cornell University', '11', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0')
(7730, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(7731, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '790', '470', '1260', '3', '100', 'University of Mumbai', 'Computer Science & Engineering', '59.67', '100', '0')
(7732, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0')
(7733, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0')
(7734, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0')
(7735, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34')
(7736, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0')
(7737, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0')
(7738, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '780', '560', '1340', '3', '102', 'MU', 'Computer Engineering', '74', '100', '0')
(7739, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '610', '1390', '3.5', '112', 'BITS Pilani', 'Computer science', '8.44', '10', '0')
(7740, 'Cornell University', '11', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0')
(7741, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '163', '159', '322', '3.5', '98', 'IIT Madras', 'Aerospace', '8.9', '10', '0')
(7742, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '390', '1150', '3', '99', 'NMIMS', 'Electronics', '3.3', '4', '0')
(7743, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0')
(7744, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20')
(7745, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0')
(7746, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13')
(7747, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '108', 'NIT Jaipur', 'Electrical Engg.', '8.41', '10', '0')
(7748, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0')
(7749, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0')
(7750, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9')
(7751, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0')
(7752, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '510', '1260', '3', '98', 'MU', 'Chemical Engg', '66.7', '100', '0')
(7753, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0')
(7754, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0')
(7755, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0')
(7756, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36')
(7757, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4', '111', 'NIT', 'Computer Science', '9', '10', '0')
(7758, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '750', '1550', '5', '109', 'IIT Kharagpur', 'Aerospace Engg.', '6.71', '10', '0')
(7759, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20')
(7760, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0')
(7761, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '4', '110', 'R V College of Engineering', 'ECE', '73.9', '100', '0')
(7762, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '152', '311', '3', '103', 'VTU', 'Computer Science', '81', '100', '0')
(7763, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36')
(7764, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', 'None', 'SFIT mumbai', 'EXTC', '70', '100', '0')
(7765, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0')
(7766, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2011', '770', '530', '1300', '4', '113', 'SVCE', 'Biotechnology', '71.38', '100', '0')
(7767, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32')
(7768, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59')
(7769, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0')
(7770, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0')
(7771, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0')
(7772, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '170', '157', '327', '3', '99', 'Osmania University', 'Mechanical Engineering', '79.71', '100', '29')
(7773, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '111', 'NIT Nagpur', 'CSE', '7.9', '10', '0')
(7774, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0')
(7775, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18')
(7776, 'Cornell University', '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(7777, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '92', 'MIT Pune University', 'Mechanical', '68', '100', '0')
(7778, 'Cornell University', '11', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(7779, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0')
(7780, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(7781, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0')
(7782, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0')
(7783, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0')
(7784, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '155', '320', '3', '110', 'NIT Tirchy', 'Civil Engineering', '9.3', '10', '0')
(7785, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0')
(7786, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3.5', '111', 'GZSCET Punjab Technical University', 'Computer Science and Engineering', '78.78', '100', '0')
(7787, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '158', '155', '313', '4.5', '115', 'MSRIT', 'Mechanical Engineering', '8.53', '10', '41')
(7788, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24')
(7789, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0')
(7790, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '104', 'CEG', 'Computer Science', '8.96', '10', '0')
(7791, 'Cornell University', '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0')
(7792, 'Cornell University', '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0')
(7793, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7794, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '4', '107', 'NITK Surathkal', 'Computer Science', '7.93', '10', '0')
(7795, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0')
(7796, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2012', '166', '152', '318', 'None', '109', 'NIT-Trichy', 'Mechanical Engg.', '7.13', '10', '0')
(7797, 'Cornell University', '11', 'Reject', 'MS', 'CS', 'Fall ', '2012', '168', '156', '324', '4.5', '111', 'BITS Pilani', 'Computer Science', '8.19', '10', '0')
(7798, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0')
(7799, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(7800, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', 'None', 'CEG', 'B.Tech/ IT', '8.783', '10', '0')
(7801, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0')
(7802, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0')
(7803, 'Cornell University', '11', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7804, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0')
(7805, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(7806, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24')
(7807, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(7808, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0')
(7809, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0')
(7810, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0')
(7811, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2')
(7812, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0')
(7813, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '650', '1400', '3.5', '105', 'SSN College of Engineering', 'Electrical and Electronics', '80', '100', '0')
(7814, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '170', '153', '323', '3.5', '108', 'IIT Kanpur', 'Mechancial', '9', '10', '0')
(7815, 'Cornell University', '11', 'Reject', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66')
(7816, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0')
(7817, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0')
(7818, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(7819, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0')
(7820, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '4', '115', 'Dharamsinh Desai University', 'Computer Engineering', '75.25', '100', '0')
(7821, 'Cornell University', '11', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '142', '303', '3', '99', 'Goa University', 'etc', '58.47', '100', '0')
(7822, 'Cornell University', '11', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2012', '165', '151', '316', '4', '110', 'Pune University', 'Information Technology', '67.26', '100', '0')
(7823, 'Cornell University', '11', 'Reject', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0')
(7824, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0')
(7825, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0')
(7826, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16')
(7827, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '570', '1340', '4.5', '114', 'PESIT', 'Computer Science and Engg', '82', '100', '0')
(7828, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0')
(7829, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '670', '1420', '2.5', '105', 'DA-IICT', 'CSE', '2.53', '4', '0')
(7830, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0')
(7831, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0')
(7832, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0')
(7833, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '4.5', '106', 'NIT Tirchy', 'CS', '8.66', '10', '0')
(7834, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0')
(7835, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0')
(7836, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0')
(7837, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0')
(7838, 'Cornell University', '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0')
(7839, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '159', '143', '302', '3', '92', 'CBIT', 'Chem Engg', '65', '100', '0')
(7840, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43')
(7841, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0')
(7842, 'Cornell University', '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0')
(7843, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0')
(7844, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0')
(7845, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0')
(7846, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '155', '317', '4', '109', 'None', '0', '7.94', '10', '48')
(7847, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29')
(7848, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0')
(7849, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(7850, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36')
(7851, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(7852, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0')
(7853, 'Cornell University', '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '155', '312', '3.5', '102', 'B M S College of Engineering', 'Telecom', '8.33', '10', '30')
(7854, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38')
(7855, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0')
(7856, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0')
(7857, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall', 'None', '169', '157', '326', '3.5', '102', 'VIT University', 'Chemical Engineering', '8.81', '10', '0')
(7858, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0')
(7859, 'Cornell University', '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(7860, 'Cornell University', '11', 'Reject', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0')
(7861, 'Cornell University', '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2014', '168', '165', '333', '5.5', '118', 'BITS Pilani', 'Biological Sciences', '9.18', '10', '0')
(7862, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18')
(7863, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0')
(7864, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '670', '1460', '3.5', '104', 'Manipal Institue of Technology', 'Electrical & Electronics', '8.36', '10', '0')
(7865, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42')
(7866, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0')
(7867, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '710', '660', '1370', '4', '112', 'UPTU', 'Electrical', '74.26', '100', '0')
(7868, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(7869, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(7870, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(7871, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0')
(7872, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '158', '320', '3.5', '111', 'Manipal Institue of Technology', 'EEE', '8.2', '10', '0')
(7873, 'Cornell University', '11', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '800', '680', '1480', '5', '117', 'BITS Pilani', 'Biological Sci Computer Science', '8.5', '10', '0')
(7874, 'Cornell University', '11', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall', 'None', '162', '150', '312', '4', 'None', 'R V College of Engineering', 'Mechanical', '62.4', '100', '0')
(7875, 'Cornell University', '11', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '590', '1380', '3.5', '109', 'Lakshmi Niwas Mittal Institute of Information Technology Jaipur', 'Communication and Computer Engineering', '8.3', '10', '0')
(7876, 'Cornell University', '11', 'Reject', 'MS', 'nanotechnology', 'Fall ', '2013', '168', '160', '328', '3', '111', 'Jaypee Institute of Information Technology', 'Electronics & Communication', '6.5', '10', '0')
(7877, 'Cornell University', '11', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '73.4', '100', '0')
(7878, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(7879, 'Cornell University', '11', 'Reject', 'MS', 'MEM', 'Fall ', '2014', '168', '157', '325', '4.5', '116', 'GRIET', 'ECE', '78', '100', '0')
(7880, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '510', '1310', '3.5', '104', 'Yanbian University of Science & Technology', 'EE', '3.2', '4', '0')
(7881, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '148', '306', '3.5', '102', 'BIT Mesra', 'ECE', '7.6', '10', '0')
(7882, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0')
(7883, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '323', '159', '482', '4', '115', 'NIT Jalandhar', 'Instrumentation and Control', '8.68', '10', '24')
(7884, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0')
(7885, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40')
(7886, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0')
(7887, 'Cornell University', '11', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '780', '460', '1240', '3.5', '106', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.25', '10', '0')
(7888, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0')
(7889, 'Cornell University', '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0')
(7890, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0')
(7891, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4.5', '116', 'BIT Mesra', 'ECE', '8.24', '10', '0')
(7892, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '105', 'Jadavpur University', 'Mechanical Engineering', '8.12', '10', '0')
(7893, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0')
(7894, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0')
(7895, 'Cornell University', '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'NIT Karnataka', 'Mechanical Engineering', '9.47', '10', '0')
(7896, 'Cornell University', '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '163', '159', '322', '3', '98', 'NIT Silchar', 'Civil Engineering', '6.54', '10', '0')
(7897, 'Cornell University', '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0')
(7898, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19')
(7899, 'Cornell University', '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '164', '144', '308', '3', '98', 'G.H.Patel college of Engg. & Tech.', 'EC', '8.67', '10', '0')
(7900, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(7901, 'Cornell University', '11', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '770', '600', '1370', '4.5', '107', 'NIT Bhopal', 'Bioinformatics', '8.14', '10', '0')
(7902, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(7903, 'Cornell University', '11', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0')
(7904, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0')
(7905, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0')
(7906, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '163', '331', '4.5', '110', 'West Bengal University Of Technology', 'Electrical engg', '8.07', '10', '30')
(7907, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0')
(7908, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0')
(7909, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0')
(7910, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0')
(7911, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', '114', 'MU', 'Information Technology', '63.5', '100', '0')
(7912, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '113', 'Pune University', 'Computer Science', '67', '100', '0')
(7913, 'Cornell University', '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0')
(7914, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0')
(7915, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0')
(7916, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0')
(7917, 'Cornell University', '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0')
(7918, 'Cornell University', '11', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(7919, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0')
(7920, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24')
(7921, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0')
(7922, 'Cornell University', '11', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0')
(7923, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0')
(7924, 'Cornell University', '11', 'Reject', 'MS', 'Master of engineering management', 'Fall ', '2015', '163', '155', '318', '3.5', '112', 'Govt. College Of Engineering Pune (CoEP)', 'Production Engineering (Sandwich)', '7.1', '10', '18')
(7925, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0')
(7926, 'Cornell University', '11', 'Reject', 'MS', 'Human Resources', 'Fall ', '2014', '160', '156', '316', '4', '104', 'VTU', 'Eⅇ', '61', '100', '0')
(7927, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '690', '1460', 'None', '118', 'Anna University', 'Computer Engineering', '73', '100', '0')
(7928, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0')
(7929, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0')
(7930, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0')
(7931, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0')
(7932, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', '2.5', '101', 'NIT Calicut', 'Computer Science and Enginering', '8.28', '10', '0')
(7933, 'Cornell University', '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0')
(7934, 'Cornell University', '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0')
(7935, 'Cornell University', '11', 'Admit', 'M.Eng.', 'Engineering Management', 'Fall', '2019', '170', '150', '320', '3.5', '116', 'Motilal Nehru National Institute of Technology Allahabad', 'Mechanical Engineering', '8.83', '10', '0')
(7936, 'Dalhousie University', '13', 'Admit', 'MSc', 'Computer Science', 'Fall', '2019', '157', '147', '304', '4', '-1', 'SRM University', 'Computer Science', '80.6', '100', '0')
(7937, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '101', 'VTU', 'telecommunications', '86.19', '100', '0')
(7938, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '144', '302', '4', '107', 'MU', 'CS', '0', '0', '0')
(7939, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0')
(7940, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3', '89', 'Dr. M.G.R. University', 'ECE', '8.86', '10', '0')
(7941, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '106', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.71', '10', '0')
(7942, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0')
(7943, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0')
(7944, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0')
(7945, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0')
(7946, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '490', '1200', '3.5', '108', 'JNTU', 'EEE', '62', '100', '0')
(7947, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0')
(7948, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(7949, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0')
(7950, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '167', '150', '317', '4', '106', 'Anna University', 'ECE', '73.34', '100', '47')
(7951, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0')
(7952, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0')
(7953, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0')
(7954, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '630', '1370', '4.5', 'None', 'VTU', 'Electronics and Communication', '64', '100', '0')
(7955, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0')
(7956, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0')
(7957, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0')
(7958, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'MU', 'Computer', '67.4', '100', '0')
(7959, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0')
(7960, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0')
(7961, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '150', '311', '4.5', '104', 'University of Mumbai', 'Computer Engineering', '62.2', '100', '0')
(7962, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16')
(7963, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '470', '1270', '3', '100', 'ANU', 'ECE', '78.6', '100', '0')
(7964, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '3', '92', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '70', '100', '0')
(7965, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0')
(7966, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0')
(7967, 'George Mason University', '13', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0')
(7968, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0')
(7969, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12')
(7970, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0')
(7971, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0')
(7972, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '151', '308', '4', '104', 'Anna University', 'IT', '71', '100', '0')
(7973, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0')
(7974, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0')
(7975, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0')
(7976, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0')
(7977, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0')
(7978, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '112', 'WBUT', 'ECE', '8.16', '10', '0')
(7979, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '165', '150', '315', '4', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communication Engineering', '63', '100', '0')
(7980, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0')
(7981, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0')
(7982, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(7983, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0')
(7984, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0')
(7985, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '780', '530', '1310', '3', '92', 'klce', 'IT', '74', '100', '0')
(7986, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0')
(7987, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '320', '1020', '3.5', '8', 'VIIT', 'E&TC;', '67', '100', '0')
(7988, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '320', '1120', 'None', 'None', 'VIT University', 'BTECH-I.T', '8.9', '10', '0')
(7989, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0')
(7990, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '740', '470', '1210', '3', '106', 'MDU', 'EEE', '58', '100', '0')
(7991, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '154', '149', '303', '3.5', '97', 'None', '0', '0', '0', '0')
(7992, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0')
(7993, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(7994, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0')
(7995, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0')
(7996, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0')
(7997, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '144', '299', '3.5', '97', 'MU', 'Information Technology', '58', '100', '0')
(7998, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0')
(7999, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0')
(8000, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0')
(8001, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '152', '149', '301', '2.5', 'None', 'Acharya Nagarjuna University', 'electrical', '0', '0', '0')
(8002, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2012', '720', '580', '1300', '2.5', '84', 'Pune University', 'E&TC;', '58', '100', '0')
(8003, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'IT', '7.32', '10', '0')
(8004, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0')
(8005, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0')
(8006, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '109', 'JNTU', 'Computer Science', '70', '100', '0')
(8007, 'George Mason University', '13', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', '160', '149', '309', '3', '102', 'IIT Madras', 'Biotechnology', '7.23', '10', '54')
(8008, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0')
(8009, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0')
(8010, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2015', '154', '151', '305', '3.5', '107', 'University of Pune', 'Electronics & Telecommunication', '53', '100', '0')
(8011, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Spring ', '2014', '1050', '350', '1400', '3', 'None', 'None', '0', '0', '0', '0')
(8012, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0')
(8013, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0')
(8014, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '700', '400', '1100', '3', '102', 'JNTU', 'ECE', '75', '100', '0')
(8015, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33')
(8016, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '150', '149', '299', '2.5', '105', 'SNIST', 'CSE', '63.2', '100', '0')
(8017, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '320', '1050', '2.5', '86', 'MU', 'extc', '61.31', '100', '0')
(8018, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0')
(8019, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '380', '1130', '2.5', '88', 'SNIST', 'computer science', '76', '100', '0')
(8020, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0')
(8021, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0')
(8022, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0')
(8023, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'None', '0', '0', '0', '0')
(8024, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '4', '94', 'VTU', 'Computer Science', '64', '100', '50')
(8025, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0')
(8026, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(8027, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0')
(8028, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '149', '305', '3.5', '99', 'University of Mumbai', 'Electronics and Telecommunication', '60.2', '100', '0')
(8029, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '96', 'MU', 'computers', '64', '100', '0')
(8030, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '149', '151', '300', '3', '100', 'Sathyabama University', 'ECE', '65', '100', '0')
(8031, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0')
(8032, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0')
(8033, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '103', 'None', 'CSE', '3.75', '4', '0')
(8034, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '161', '320', '3', '108', 'Nitte institute of technology', 'Electronics and communication', '7.95', '10', '0')
(8035, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0')
(8036, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16')
(8037, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0')
(8038, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3.5', '98', 'GVPCOE Vizag', 'CSE', '68', '100', '0')
(8039, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0')
(8040, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '148', '305', '2.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(8041, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0')
(8042, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0')
(8043, 'George Mason University', '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '420', '1200', '3', '99', 'Iran', '0', '0', '0', '0')
(8044, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0')
(8045, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0')
(8046, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '750', 'None', '750', 'None', '100', 'NMIT', 'ECE', '0', '0', '0')
(8047, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '660', '1390', '5', '300', 'MU', 'Computers', '68.27', '100', '0')
(8048, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0')
(8049, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0')
(8050, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '710', '600', '1310', '2.5', '88', 'MU', 'EXTC', '56.4', '100', '0')
(8051, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '450', '1190', '4', '273', 'U.P.Technical University', 'Eleectronics and Communication', '66', '100', '0')
(8052, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'SIES Graduate School of Technology', 'Computer', '53.38', '100', '0')
(8053, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0')
(8054, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0')
(8055, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0')
(8056, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'Information Technology', '7.01', '10', '0')
(8057, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36')
(8058, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '3', '107', 'MU', 'Computer Engineering', '63', '100', '0')
(8059, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3.5', 'None', 'Velammal Engineering College', 'BE - computer science', '83', '100', '0')
(8060, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0')
(8061, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '145', '309', 'None', '82', 'Vignan Institute of Technology and Science', 'ECE', '8.7', '100', '0')
(8062, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '152', '315', '3', '95', 'UIET Punjab University', 'Information Technology', '62', '100', '0')
(8063, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0')
(8064, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '166', '159', '325', '4', '116', 'VIT', 'IT', '8.67', '10', '25')
(8065, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0')
(8066, 'George Mason University', '13', 'Admit', 'MS', 'CyberSecurity', 'Fall ', '2013', '160', '146', '306', '2.5', '90', 'Rajasthan Technical University', 'Computer Engineering', '74.4', '100', '0')
(8067, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3.5', '106', 'RD Nation', 'BSC IT', '68', '100', '24')
(8068, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0')
(8069, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0')
(8070, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0')
(8071, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0')
(8072, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0')
(8073, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0')
(8074, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2008', '790', '350', '1140', '3', '104', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0')
(8075, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '138', '290', '4', '95', 'K J Somaiya College of Engiineering', 'Electronics', '67', '100', '0')
(8076, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(8077, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0')
(8078, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0')
(8079, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20')
(8080, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0')
(8081, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '108', 'NIT Kurukshetra', 'Computers', '9.3376', '10', '0')
(8082, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0')
(8083, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8084, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BNMIT', 'ECE', '0', '0', '0')
(8085, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0')
(8086, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0')
(8087, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3', '98', 'GGSIPU', 'computer science', '80', '100', '0')
(8088, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '141', '308', '2.5', '86', 'JNTU', 'electronics and communication engineering', '67.8', '100', '0')
(8089, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0')
(8090, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0')
(8091, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '150', '309', '2.5', '95', 'MU', 'Electronics and telecommunication', '63.5', '100', '39')
(8092, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0')
(8093, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '3.5', '110', 'VTU', 'electronics', '73', '100', '0')
(8094, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '760', '330', '1090', '3', '95', 'JNTU', 'CSE', '67', '100', '0')
(8095, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0')
(8096, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '370', '1170', '3', '100', 'CVRCE', 'cse', '68', '100', '0')
(8097, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0')
(8098, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall', 'None', '156', '150', '306', 'None', '103', 'None', '0', '0', '0', '0')
(8099, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0')
(8100, 'George Mason University', '13', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0')
(8101, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '89', 'MU', 'ELECTRONICS AND TELECOMMUNICATION', '67.8', '100', '0')
(8102, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0')
(8103, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0')
(8104, 'George Mason University', '13', 'Admit', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0')
(8105, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0')
(8106, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '360', '1120', '3', '100', 'BMSCE', 'Computer science', '75', '100', '0')
(8107, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '760', '680', '1440', '4', '110', 'Dr. D. Y. Patil University', 'Dept. Of Biotechnology & Bioinformatics', '4', '4', '0')
(8108, 'George Mason University', '13', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0')
(8109, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0')
(8110, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0')
(8111, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0')
(8112, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0')
(8113, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '1130', '430', '1560', '710', '98', 'Bandodkar College of Science', 'IT', '67', '100', '0')
(8114, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '155', '311', '3.5', '110', 'NIT Durgapur', 'Information Technology', '7.94', '10', '0')
(8115, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0')
(8116, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0')
(8117, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0')
(8118, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0')
(8119, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '149', '307', '2.5', '80', 'gayathri engineering college', 'ece', '80', '100', '0')
(8120, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0')
(8121, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0')
(8122, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2011', '760', '300', '1060', '3', '101', 'Kakatiya University', 'EEE', '66', '100', '0')
(8123, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0')
(8124, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0')
(8125, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3', '100', 'JNTU', 'cse', '62', '100', '0')
(8126, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0')
(8127, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0')
(8128, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0')
(8129, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0')
(8130, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '760', '370', '1130', '4', '106', 'Atharva College', 'Electronics and Telecommunicatons', '57', '100', '0')
(8131, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0')
(8132, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '157', '145', '302', '3', '94', 'Cummins College of Engineering Pune', 'E&TC;', '0', '0', '0')
(8133, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '730', '300', '1030', '2.5', '86', 'SVCE', 'ECE', '0', '0', '0')
(8134, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '102', 'JNTU', 'CSE', '77.92', '100', '0')
(8135, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0')
(8136, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '139', '295', '3', '93', 'JNTU', 'eee', '67', '100', '0')
(8137, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0')
(8138, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58')
(8139, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0')
(8140, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0')
(8141, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', '98', 'Pune University', 'CS', '0', '0', '0')
(8142, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0')
(8143, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0')
(8144, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0')
(8145, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '320', '1110', 'None', '94', 'Pune University', 'Elex & Telecom', '68', '100', '0')
(8146, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0')
(8147, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0')
(8148, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0')
(8149, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0')
(8150, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0')
(8151, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '146', '305', '3', '89', 'VTU', 'EC', '65', '100', '24')
(8152, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0')
(8153, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '143', '300', '4', '100', 'University of Mumbai', 'Electronics Engineering', '63', '100', '0')
(8154, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0')
(8155, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '152', '150', '302', '3.5', '98', 'Canara Engineering College', 'Electronics & Communications', '60', '100', '0')
(8156, 'George Mason University', '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '157', '148', '305', '3', '102', 'Goa University', 'Computer Engineering', '61', '100', '0')
(8157, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0')
(8158, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0')
(8159, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0')
(8160, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0')
(8161, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0')
(8162, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2016', '162', '142', '304', '2', 'None', 'JNTU', 'Ece', '64', '100', '0')
(8163, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '150', '305', '3', '99', 'Panimalar Engineering College', 'Electronics and Comminications', '71', '100', '0')
(8164, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', 'University of Pune', 'Chemical Engineering', '63.13', '100', '0')
(8165, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '750', '410', '1160', '3', '97', 'WBUT', 'IT', '7.84', '10', '0')
(8166, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0')
(8167, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27')
(8168, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '470', '1220', '4', '106', 'VTU', 'Computer Science', '77.47', '100', '0')
(8169, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '157', '144', '301', 'None', 'None', 'CVRCE', 'ECE', '72', '100', '0')
(8170, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0')
(8171, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0')
(8172, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0')
(8173, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '420', '1170', '3', 'None', 'GITAM', 'Information Technology', '8.13', '10', '0')
(8174, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '3.5', '110', 'JNTU', 'csit', '82', '100', '0')
(8175, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '146', '307', '3', '95', 'JNTU', 'Electical & Electronics Engineering', '77', '100', '0')
(8176, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '460', '1150', '3', '106', 'Datta Meghe College of Engineering', 'information technology', '70', '100', '0')
(8177, 'George Mason University', '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0')
(8178, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0')
(8179, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0')
(8180, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0')
(8181, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0')
(8182, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0')
(8183, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0')
(8184, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1130', '400', '1530', '3', '93', 'BMIT Jaipur', 'computer science', '75', '100', '0')
(8185, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0')
(8186, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0')
(8187, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3.5', '95', 'JNTU', 'CSE', '76.5', '100', '0')
(8188, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '530', '1280', '3', '108', 'LNMIIT', 'CCE', '8.32', '10', '0')
(8189, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '295', '137', '432', '158', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATIONS ENGINEERING', '76.88', '100', '0')
(8190, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '150', '312', '3.5', '101', 'Pune University', 'Comp Engg', '62', '100', '0')
(8191, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '620', '1380', '3', '102', 'VNR VJIET', 'EEE', '69.9', '100', '0')
(8192, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33')
(8193, 'George Mason University', '13', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0')
(8194, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8195, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0')
(8196, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '780', '580', '1360', '3', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATION', '78', '100', '0')
(8197, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '144', '304', '3', '107', 'Bhoj Reddy Engineering College JNTU', 'electronics and computer engineering', '77', '100', '0')
(8198, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '460', '1180', '3', '97', 'Kurukshetra University', 'computer science', '6.7', '10', '0')
(8199, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0')
(8200, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0')
(8201, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0')
(8202, 'George Mason University', '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24')
(8203, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0')
(8204, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0')
(8205, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(8206, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29')
(8207, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0')
(8208, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '760', '470', '1230', '2.5', '93', 'GIET', 'EEE', '78', '100', '0')
(8209, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0')
(8210, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '710', '380', '1090', '2.5', '103', 'JNTU', 'ECE(2010 passout)', '61.27', '100', '0')
(8211, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '410', '1140', '3', '103', 'DVR College of Engineering', 'EEE', '63', '100', '0')
(8212, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0')
(8213, 'George Mason University', '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '0', '0', '0')
(8214, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0')
(8215, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0')
(8216, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0')
(8217, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0')
(8218, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '108', 'GITAM', 'CSE', '7.9', '10', '0')
(8219, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '150', '316', '4', '100', 'University of Engineering & Technology Taxila', 'Electrical Engineering', '79.05', '100', '0')
(8220, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '107', 'Amrita School of Engineering', 'ECE', '7.8', '10', '0')
(8221, 'George Mason University', '13', 'Admit', 'MS', 'Electrical and Electronics', 'Spring ', '2013', '162', '148', '310', '2.5', '99', 'Pondicherry Engineering College', 'EIE', '7.73', '10', '0')
(8222, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0')
(8223, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0')
(8224, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0')
(8225, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0')
(8226, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0')
(8227, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '550', '1280', '3', '97', 'Pune University', 'entc', '0', '0', '0')
(8228, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '360', '1130', '3', '100', 'Ambala College of Engineering And Applied Research', 'Electronics and communication', '63', '100', '0')
(8229, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0')
(8230, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12')
(8231, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0')
(8232, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0')
(8233, 'George Mason University', '13', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '163', '150', '313', '3', 'None', 'University of Pune', 'Electronics and Telecommunication', '7.95', '10', '20')
(8234, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0')
(8235, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '440', '1210', '4', '108', 'None', 'IT', '70', '100', '0')
(8236, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0')
(8237, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0')
(8238, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '450', '1190', '4', '97', 'VTU', 'Computer Science', '59', '100', '0')
(8239, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '430', '1220', '2.5', '107', 'GITAM', 'Electronics', '7.32', '10', '0')
(8240, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '580', '1310', '3.5', '105', 'University of Mumbai', 'Information Technology', '70', '100', '0')
(8241, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '146', '304', '3', 'None', 'None', '0', '0', '0', '0')
(8242, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0')
(8243, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '115', 'Heritage Institute of Technology', 'Electronics and Communication Engineering', '8.32', '10', '0')
(8244, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '1090', '390', '1480', '700', '93', 'teegala krishna reddy engineering college', 'ece', '0', '0', '0')
(8245, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0')
(8246, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3.5', '102', 'None', '0', '0', '0', '0')
(8247, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0')
(8248, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '540', '1300', '3.5', '98', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.4', '10', '0')
(8249, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '153', '153', '306', '3', 'None', 'VTU', 'CS', '64', '100', '0')
(8250, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '440', '1180', '3', '99', 'Anna University', 'EE', '8.61', '10', '0')
(8251, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0')
(8252, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0')
(8253, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '160', '152', '312', '3.5', '110', 'JNTU', 'Metallurgical Engineering', '68.9', '100', '19')
(8254, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0')
(8255, 'George Mason University', '13', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0')
(8256, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '146', '308', '3', '107', 'St.Martin Engg College affiliated with JNTU', 'ECE', '68', '100', '0')
(8257, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0')
(8258, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0')
(8259, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', 'None', '730', '3.5', '96', 'None', 'Information science', '80', '100', '0')
(8260, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0')
(8261, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0')
(8262, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2006', '740', '410', '1150', '4', '287', 'SSN College of Engineering', 'Information Technology', '71', '100', '0')
(8263, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3', '114', 'None', 'Computer Science', '7.95', '10', '0')
(8264, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0')
(8265, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0')
(8266, 'George Mason University', '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0')
(8267, 'George Mason University', '13', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0')
(8268, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0')
(8269, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0')
(8270, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0')
(8271, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0')
(8272, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0')
(8273, 'George Mason University', '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '750', '530', '1280', 'None', '103', 'Rajasthan Technical University', 'Information Technology', '70', '100', '0')
(8274, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', '730', '570', '1300', '3', '102', 'SASTRA', 'Bioinformatics', '7.6', '10', '0')
(8275, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0')
(8276, 'George Mason University', '13', 'Admit', 'MS', 'Geographic and Cartographic Sciences', 'Fall ', '2011', '710', '490', '1200', '4', '107', 'None', 'Electronics & Telecomm', '68', '100', '0')
(8277, 'George Mason University', '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8278, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '99', 'Sree Vidyanikethan Engineering College', 'Information Technology', '76', '100', '0')
(8279, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '380', '1170', '3.5', '107', 'JNTU', 'ECE', '64', '100', '0')
(8280, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0')
(8281, 'George Mason University', '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0')
(8282, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0')
(8283, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '770', '370', '1140', '3', '102', 'Koneru Lakshmaiah College of Engineering', 'Information Science and Technology', '8.44', '10', '0')
(8284, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '740', '370', '1110', '3', '96', 'None', '0', '0', '0', '0')
(8285, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0')
(8286, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '420', '1150', 'None', '103', 'MDU', 'ECE', '0', '0', '0')
(8287, 'George Mason University', '13', 'Admit', 'MS', 'Biotechnology', 'Spring ', '2014', '151', '150', '301', '3.5', '100', 'SASTRA', 'Biotechnology', '8.1', '100', '0')
(8288, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0')
(8289, 'George Mason University', '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '148', '318', '3', '98', 'UCEK JNTUK', 'EEE', '77', '100', '12')
(8290, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0')
(8291, 'George Mason University', '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0')
(8292, 'George Mason University', '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '145', '143', '288', 'None', '87', 'None', '0', '0', '0', '0')
(8293, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '141', '137', '278', '2', 'None', 'Rajasthan Technical University', 'Electronics & Communication', '3', '100', '0')
(8294, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0')
(8295, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0')
(8296, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0')
(8297, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0')
(8298, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0')
(8299, 'George Mason University', '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0')
(8300, 'George Mason University', '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0')
(8301, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '410', '1150', '2.5', '110', 'BITS Pilani', 'Computer Science', '7.91', '10', '0')
(8302, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0')
(8303, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '3', '91', 'Vrsiddhartha Engineering College', 'CSE', '88.35', '100', '0')
(8304, 'George Mason University', '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '160', '318', 'None', '112', 'Saboo Siddik', 'Computers', '62', '100', '0')
(8305, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '450', '1240', '3', '100', 'MU', 'Information Technology', '67', '100', '0')
(8306, 'George Mason University', '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0')
(8307, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0')
(8308, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '470', '1190', '3', '87', 'D Y Patil College of Engineering', 'Bioinformatics', '62.3', '100', '0')
(8309, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3', '92', 'Pune University', 'Mechanical Engineering', '62.5', '100', '53')
(8310, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56')
(8311, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3.5', '105', 'Pune University', 'information technology', '56', '100', '0')
(8312, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0')
(8313, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0')
(8314, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0')
(8315, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0')
(8316, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0')
(8317, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0')
(8318, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0')
(8319, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0')
(8320, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3.5', '105', 'None', '0', '0', '0', '0')
(8321, 'George Mason University', '13', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '89', 'MU', 'EXTC', '5.5', '10', '0')
(8322, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0')
(8323, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17')
(8324, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0')
(8325, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '97', 'Vasavi College of Engineering', 'IT', '82', '100', '0')
(8326, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26')
(8327, 'George Mason University', '13', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '147', '306', '3', 'None', 'JNTU', 'Electronics and Communication Engineering', '75.55', '100', '26')
(8328, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0')
(8329, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '108', 'MU', 'Information Technology', '68', '100', '0')
(8330, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0')
(8331, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(8332, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '690', '580', '1270', 'None', '98', 'JNTUK/REC', 'CSE', '58.6', '100', '0')
(8333, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0')
(8334, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '143', '294', '3', '98', 'Sinhgad College of Engineering', 'Computer', '66.66', '100', '0')
(8335, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0')
(8336, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '151', '143', '294', '3', '83', 'Padre Conceicao College Of Engineering', 'Information Technology', '0', '0', '0')
(8337, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '330', '1050', '3', '95', 'Anna University', 'I.T.', '68', '100', '0')
(8338, 'George Mason University', '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0')
(8339, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '310', '1050', '2.5', '87', 'KL University', 'Information Technology', '7.83', '10', '0')
(8340, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0')
(8341, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48')
(8342, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '3', '96', 'PESIT', 'Computer Science', '73.4', '100', '0')
(8343, 'George Mason University', '13', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '158', '145', '303', '3', '94', 'PESIT', 'Computer Science and Engineering', '6.71', '10', '42')
(8344, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0')
(8345, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0')
(8346, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '143', '297', '2.5', 'None', 'Vivekananda Institute Of Technology', 'Information Science', '67.8', '100', '58')
(8347, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0')
(8348, 'George Mason University', '13', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '153', '149', '302', '3.5', '101', 'MU', 'Instrumentation', '55', '100', '8')
(8349, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0')
(8350, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '93', 'Pune University', 'Computer Engg.', '58.9', '100', '0')
(8351, 'George Mason University', '13', 'Reject', 'MS', 'Computer Forensics', 'Fall ', '2012', '156', '153', '309', '4', '110', 'Anna University', 'Information Technology', '65', '100', '0')
(8352, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0')
(8353, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16')
(8354, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0')
(8355, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0')
(8356, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0')
(8357, 'George Mason University', '13', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22')
(8358, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0')
(8359, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0')
(8360, 'George Mason University', '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2007', '770', '420', '1190', '3.5', '103', 'Bharathidasan University', 'Biotechnology', '75', '100', '0')
(8361, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '151', '144', '295', '3.5', '90', 'VTU', 'CSE', '78', '100', '0')
(8362, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0')
(8363, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '670', '450', '1120', '3', '82', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '6.14', '10', '0')
(8364, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0')
(8365, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '100', 'JNTU', 'ECE', '73', '100', '0')
(8366, 'George Mason University', '13', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0')
(8367, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', 'None', 'VGEC GTU', 'Computer Engineering', '7.2', '10', '0')
(8368, 'George Mason University', '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0')
(8369, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0')
(8370, 'George Mason University', '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0')
(8371, 'George Mason University', '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2011', '157', '148', '305', '3.5', '105', 'College of engineering and technology', 'Electronics and Telecommunication', '-1', '-1', '0')
(8372, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40')
(8373, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0')
(8374, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '159', '329', '4', '113', 'IIT Indore', 'Mechanical Engineering', '7.7', '10', '24')
(8375, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '154', '319', '4', '115', 'MU', 'Electronics', '75.7', '100', '0')
(8376, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0')
(8377, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0')
(8378, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '800', '550', '1350', '3', '104', 'BIT Mesra', 'Biotechnology', '7.02', '10', '0')
(8379, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0')
(8380, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '159', '325', '4', '115', 'NIT', 'Production Engineering', '92.4', '100', '0')
(8381, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0')
(8382, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0')
(8383, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '110', 'University of Mumbai', 'Electronics & Telecommunications', '80.57', '100', '0')
(8384, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '730', '1530', '4', '118', 'NSIT', 'Instrumentation and Control Engineering', '79.27', '100', '0')
(8385, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '166', '330', '4.5', '117', 'University of Mumbai', 'Engineering Electronics and Telecommunication', '60.38', '100', '0')
(8386, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '800', '570', '1370', '4', '112', 'VESIT', 'Electronics and Telecommunication', '87.37', '100', '0')
(8387, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0')
(8388, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2008', '750', '520', '1270', 'None', '250', 'None', '0', '0', '0', '0')
(8389, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'D J Sanghvi', 'Electronics', '73.68', '100', '0')
(8390, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0')
(8391, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '161', '160', '321', '3', '103', 'TU', 'CS', '69.7', '100', '36')
(8392, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '158', '328', '4', '116', 'IIT Kharagpur', 'Electrical Engineering', '8.52', '10', '0')
(8393, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '680', '1480', '3', '102', 'Zhejiang University', 'Dpt. of Mechanical Engineering', '3.68', '4', '0')
(8394, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '120', 'PSG College of Technology', 'Mechanical', '8.9', '10', '0')
(8395, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '111', 'VESIT', 'Electronics', '78', '100', '0')
(8396, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '5', '117', 'NIT Karnataka', 'ECE', '9.36', '10', '0')
(8397, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4', '109', 'University of Mumbai', 'Electronics', '3.25', '4', '0')
(8398, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '155', '323', '5', '108', 'MSRIT', 'Electronics and Communication', '9.33', '10', '0')
(8399, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '750', '1550', '4.5', '117', 'SRM', 'CSE', '8.4', '10', '0')
(8400, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '160', '328', '4', '118', 'Amrita School of Engineering', 'ECE', '9.49', '10', '0')
(8401, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', '110', 'NIT Bhopal', 'IT', '7.9', '10', '0')
(8402, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '166', '157', '323', '4', '112', 'BITS Pilani', 'Manufacturing', '7', '100', '24')
(8403, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '700', '1500', '3.5', '110', 'IIT Kharagpur', 'Industrial Engineering', '8.37', '10', '0')
(8404, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0')
(8405, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '105', 'IIIT Delhi', 'Computer Science', '3.8', '10', '0')
(8406, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0')
(8407, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '4', '110', 'Maharashtra Institute of Technology', 'EnTc', '76', '100', '0')
(8408, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0')
(8409, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '650', '1440', '3.5', '111', 'BITS Pilani', 'MSc (Hons) Biological Science & BE (Hons) Computer Science', '9.18', '10', '0')
(8410, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0')
(8411, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '114', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control', '71.4', '100', '0')
(8412, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0')
(8413, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '540', '1340', '4', '114', 'R V College of Engineering', 'Chemical engineering', '9.14', '10', '0')
(8414, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '550', '1340', '3', '111', 'SSN College of Engineering', 'Computer Science', '87.74', '100', '0')
(8415, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0')
(8416, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '110', 'MU', 'Computer Engineering', '75', '100', '0')
(8417, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2014', '163', '159', '322', '5', '115', 'MU', 'Information Technology', '0', '0', '18')
(8418, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '800', '1600', '5.5', '117', 'MIT College of Engineering University of Pune', 'Computer Science and Engineering', '58.51', '100', '0')
(8419, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0')
(8420, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '160', '322', '4', '117', 'None', 'Electronics & communication', '9.1', '10', '0')
(8421, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0')
(8422, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0')
(8423, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0')
(8424, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0')
(8425, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0')
(8426, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0')
(8427, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '157', '322', '4', 'None', 'Punjab Engineering College', 'Electronics and Electrical Communication', '9.65', '10', '0')
(8428, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8429, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '780', '680', '1460', '4', '109', 'NIT Surat', 'Civil', '8.75', '10', '0')
(8430, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24')
(8431, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '163', '329', '4', '114', 'IET DAVV', 'Computer Science', '72', '100', '0')
(8432, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '164', '333', '4', '118', 'NIT Tirchy', 'production engineering', '9.03', '10', '0')
(8433, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '118', 'Galgotias college of engineering & technology', 'Information Technology', '73.5', '100', '0')
(8434, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0')
(8435, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '620', '1420', '3.5', '109', 'IIT Delhi', 'Mechanical Engineering', '8.48', '10', '0')
(8436, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '112', 'University of Manchester', 'Aerospace Engineering', '3.74', '4', '12')
(8437, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0')
(8438, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0')
(8439, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'NIT Surat', 'Computer Engineering', '7.2', '10', '0')
(8440, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0')
(8441, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '560', '1320', '4', '107', 'PSG College of Technology', 'Computer Science', '8.91', '10', '0')
(8442, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '770', '580', '1350', '3', '106', 'Madras Institute of Technology', 'Production Engineering', '9.45', '10', '24')
(8443, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '162', '323', '3.5', '116', 'SVCE', 'ECE', '7.98', '10', '0')
(8444, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', '164', '159', '323', '4', '108', 'NIT Tirchy', 'Architecture', '9.43', '10', '0')
(8445, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0')
(8446, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0')
(8447, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '530', '1330', '4', '105', 'Sathyabama University', 'Aeronautical enggineering', '83', '100', '0')
(8448, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '167', '159', '326', '5', '117', 'IIT Jodhpur', 'CSE', '10', '10', '0')
(8449, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '410', '1180', 'None', 'None', 'Fr Agnel', 'Computer', '0', '0', '0')
(8450, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '800', '680', '1480', '3.5', '114', 'NIT Calicut', 'Electrical and Electronics', '8.66', '10', '0')
(8451, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '560', '1350', '3.5', '108', 'R V College of Engineering', 'Computer Science', '75', '100', '0')
(8452, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0')
(8453, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '160', '329', '3.5', 'None', 'NIT Calicut', 'ECE', '9.62', '10', '0')
(8454, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '117', 'Anna University', 'IT', '83', '100', '0')
(8455, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0')
(8456, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0')
(8457, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '168', '158', '326', '5', '112', 'CEG', 'Mechanical Engineering', '9', '10', '0')
(8458, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0')
(8459, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'Fall ', '2014', '165', '158', '323', '4', '112', 'MDU', 'ECE', '62', '100', '0')
(8460, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '108', 'COEP', 'Information Technology', '8.67', '10', '0')
(8461, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '800', '620', '1420', '4', '118', 'Manipal Institue of Technology', 'ECE', '9.15', '10', '0')
(8462, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '113', 'Gujarat Technological University', 'Computer Enigneering', '64.8', '100', '0')
(8463, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '560', '1360', '4.5', '117', 'Anna University', 'EEE', '72', '100', '0')
(8464, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '600', '1400', '5.5', '118', 'R V College of Engineering', 'Mechanical Engineering', '3.95', '4', '0')
(8465, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0')
(8466, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '710', '1510', '4', '111', 'MU', 'Information Technology', '66.17', '100', '0')
(8467, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '720', '1490', '3.5', '106', 'Watumull Institute University of Mumbai', 'Electronics and Telecommunication', '0', '0', '0')
(8468, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '560', '1320', '3.5', '104', 'BITS Goa', 'Computer Science', '8.95', '10', '0')
(8469, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '149', '315', '3.5', '101', 'CoE Trivandrum', 'Industrial Engineering', '7.3', '10', '0')
(8470, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '170', '154', '324', 'None', '112', 'None', '0', '72', '100', '0')
(8471, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Networking', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'CEG', 'Computer science & Engg', '8.3', '10', '0')
(8472, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '650', '1440', '5', 'None', 'National Technical University of Athens', 'ECE', '9.4', '4', '0')
(8473, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '108', 'R V College of Engineering', 'Electrical and Electronics', '9.38', '10', '0')
(8474, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '159', '321', '3', '111', 'SJCE', 'CS', '9.45', '10', '0')
(8475, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0')
(8476, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4', '111', 'GGSIPU', 'Computer Science', '79', '100', '0')
(8477, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4.5', '113', 'VTU', 'Electronics and Communication', '73', '100', '0')
(8478, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '154', '318', '4', '118', 'kvw', 'ece', '69.9', '100', '0')
(8479, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0')
(8480, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0')
(8481, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0')
(8482, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', 'None', '106', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '9.01', '10', '0')
(8483, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'shu', 'physics', '4', '4', '0')
(8484, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0')
(8485, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '158', '325', '4.5', '112', 'Delhi University', 'ECE', '69.93', '100', '0')
(8486, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '160', '319', '4', 'None', 'Amity University', 'Computer Science', '8.31', '10', '0')
(8487, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '620', '1400', '3.5', '110', 'Delhi College Of Engineeing', 'ECE', '79.7', '100', '0')
(8488, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '170', '336', '4.5', '119', 'BITS Goa', 'Computer Science', '8.8', '10', '0')
(8489, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '163', '331', '4.5', '112', 'NMIMS', 'Electronics engineering', '3.58', '4', '0')
(8490, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0')
(8491, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '160', '322', '4.5', '112', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.1', '10', '0')
(8492, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0')
(8493, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '99', 'Shanghai Jiao Tong University', 'ECE', '3.2', '4', '0')
(8494, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'PICT', 'Computer Engg.', '0', '0', '0')
(8495, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19')
(8496, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0')
(8497, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4', '106', 'SSN College of Engineering', 'ECE', '89', '100', '0')
(8498, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '169', '164', '333', '4', '109', 'BMSCE', 'EEE', '9.23', '10', '0')
(8499, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '163', '161', '324', '4.5', '116', 'SASTRA', 'Electronics and Communication Engg', '8.13', '10', '0')
(8500, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '630', '1410', '4', '96', 'Anna University', 'Mechanical Engineering', '8.93', '10', '0')
(8501, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', '4.5', '118', 'Pune University', '0', '75', '100', '0')
(8502, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0')
(8503, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0')
(8504, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '550', '1280', '4', '100', 'MU', 'Electronics', '61', '100', '0')
(8505, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '690', '1490', '4', '113', 'NSIT', 'COE', '75', '100', '0')
(8506, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0')
(8507, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '163', '332', '4.5', '115', 'BITS Pilani', 'Electronics', '8.65', '10', '0')
(8508, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0')
(8509, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0')
(8510, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '4.5', '114', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '9', '10', '0')
(8511, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', 'None', 'NIT Surathkal', 'Computer Engineering', '8.64', '10', '0')
(8512, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0')
(8513, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '530', '1260', '3', 'None', 'MU', 'Electronics', '67', '100', '0')
(8514, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '3.5', '109', 'Sardar Patel College of Engineering', '0', '8', '10', '0')
(8515, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0')
(8516, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '580', '1370', '4', '109', 'Gujarat Technological University', 'Electronics and Communications', '72.5', '100', '0')
(8517, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '164', '152', '316', '4', '108', 'VIT University', 'Bioinformatics', '8.74', '10', '0')
(8518, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '159', '328', '4.5', '118', 'Netaji Subhas Institute of Technology', 'Electronics and Communicartion', '74.95', '100', '0')
(8519, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '4.5', '117', 'VTU', 'Computer Science', '8.81', '10', '12')
(8520, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0')
(8521, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0')
(8522, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0')
(8523, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '169', '337', '5', 'None', 'SVCE', 'Computer Science & Engineering', '74', '100', '32')
(8524, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0')
(8525, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '114', 'MANIT BHOPAL', 'Computer Science', '8.59', '10', '0')
(8526, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0')
(8527, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '162', '328', '4', '117', 'NITK Surathkal', 'Computer Science and Engineering', '8.23', '10', '26')
(8528, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'MU', 'Computer Science', '73', '100', '0')
(8529, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4.5', '108', 'MU', 'Electronics Engg.', '0', '0', '0')
(8530, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3', '112', 'JNTU', 'Computer Science', '77.38', '100', '0')
(8531, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '790', '660', '1450', '4', '115', 'Cochin University of Science and Technology', 'Electronics & Communication', '66.6', '100', '0')
(8532, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '115', 'BITS Pilani', 'EEE', '0', '0', '0')
(8533, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '152', '322', '3.5', '108', 'NSIT', 'ECE', '74.64', '100', '36')
(8534, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '118', 'BITS Pilani', 'Information Systems', '8.81', '10', '0')
(8535, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2015', '154', '149', '303', '3.5', '100', 'MSRIT', 'Electronics and Communication', '9.35', '10', '0')
(8536, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '157', '321', '5', '113', 'NIT Rourkela', 'Civil Engineering', '8.23', '10', '0')
(8537, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0')
(8538, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '162', '153', '315', '4', '101', 'NIT', 'Electronics and Telecommunication Engineering', '9.59', '10', '22')
(8539, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0')
(8540, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '110', 'University of Pune', 'Mechanical Engineering', '102', '100', '0')
(8541, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '164', '328', '4', '119', 'BITS Pilani', 'CS and Physics', '7.97', '10', '0')
(8542, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2009', '720', '540', '1260', '3.5', '113', 'VTU', 'Computer Science', '68', '100', '0')
(8543, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '4', '114', 'None', 'Computer Science', '9.57', '10', '0')
(8544, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3.5', '116', 'Supelec (France)', 'Electrical Engineering', '3.5', '4', '0')
(8545, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '165', '148', '313', '4.5', '112', 'None', 'Computer Science', '8.3', '10', '0')
(8546, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '164', '329', '4', '111', 'Anna University', 'Computer Science and Engineering', '9.3', '10', '0')
(8547, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '570', '1340', '3', '105', 'None', '0', '0', '0', '0')
(8548, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '660', '1420', '4', '102', 'JNTU', 'Computer Science and Engineering', '71', '100', '0')
(8549, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '690', '1490', '4', '115', 'R V College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0')
(8550, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0')
(8551, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0')
(8552, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0')
(8553, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0')
(8554, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '630', '1430', '5', '112', 'NITC', 'ME', '0', '0', '0')
(8555, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0')
(8556, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '157', '322', '4', '322', 'MU', 'it', '81', '100', '33')
(8557, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2016', '160', '160', '320', '3.5', '115', 'University of Pune', 'Electronics and Telecommunication', '72', '100', '24')
(8558, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '780', '720', '1500', '4', '116', 'IGIT', 'Mechanical', '70', '100', '0')
(8559, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '720', '1520', '5.5', 'None', 'Anna University', 'Mech', '9.5', '10', '0')
(8560, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0')
(8561, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '162', '151', '313', '4', '108', 'Naval Polytechnical Academy', 'Weapons Systems Engineering and Operations', '91.5', '100', '0')
(8562, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '590', '1380', '3', '107', 'Anna University', 'INFORMATION TECHNOLOGY', '82', '100', '0')
(8563, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '610', '1370', '4', '107', 'PSG College of Technology', 'Information Technology', '8.76', '10', '0')
(8564, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '169', '155', '324', '4', '119', 'VIT', 'Computer Engineering', '82', '100', '0')
(8565, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '4.5', '105', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '9.1', '10', '0')
(8566, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '167', '156', '323', '4', '114', 'VJTI', 'Civil Engineering', '7.7', '10', '0')
(8567, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0')
(8568, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Spring ', '2011', '800', '540', '1340', '4', '105', 'None', '0', '74', '100', '0')
(8569, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0')
(8570, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0')
(8571, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0')
(8572, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0')
(8573, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3.5', '103', 'Maharishi Dayanand University', 'Computer Science & Engineering', '63.4', '100', '0')
(8574, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '490', '1280', '4', '106', 'College of Engineering and Technology', 'Biotechnology', '77', '100', '0')
(8575, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0')
(8576, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '700', '1470', '3.5', '116', 'SASTRA', 'Information and Communication Technology', '8.4', '10', '0')
(8577, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0')
(8578, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0')
(8579, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0')
(8580, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '168', '334', '4', '117', 'None', '0', '9.3', '10', '0')
(8581, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '3.5', 'None', 'SVCE', 'CS', '75', '100', '0')
(8582, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '620', '1420', '4', '115', 'PICT', 'Information Technology', '62', '100', '0')
(8583, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '164', '167', '331', '5', 'None', 'Georgia Tech', 'Computer Science', '2', '4', '138')
(8584, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '168', '157', '325', '4', '107', 'BITS Goa', 'CS', '8.39', '10', '42')
(8585, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0')
(8586, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0')
(8587, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2014', '163', '163', '326', '4.5', '114', 'R V College of Engineering', 'Chem Engineering', '9.12', '10', '0')
(8588, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '610', '1410', '4.5', '109', 'NIT Tirchy', 'Electronics & Comm. (ECE)', '9.1', '10', '0')
(8589, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '610', '1390', '5', '107', 'None', 'E&TC;', '3.92', '4', '0')
(8590, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '162', '331', '5', '112', 'IIT Bombay', 'Chemical Engineering', '9.22', '10', '0')
(8591, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '1430', '640', '2070', '3.5', '114', 'D J Sanghvi', 'EXTC', '81.4', '100', '0')
(8592, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4.5', '112', 'CEG', 'Computer Science', '9.21', '10', '0')
(8593, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0')
(8594, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '5', '112', 'NITK Surathkal', 'Civil Engineering', '9.22', '10', '0')
(8595, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '100', 'D J Sanghvi', 'EXTC', '79', '100', '0')
(8596, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0')
(8597, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '162', '326', '4', '116', 'R V College of Engineering', 'Information Science', '9.35', '10', '0')
(8598, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '163', '157', '320', '3.5', '116', 'IIT Roorkee', 'Architecture & Planning', '7.714', '10', '0')
(8599, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '107', 'Thapar University', 'Computer Science', '9', '10', '0')
(8600, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0')
(8601, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '160', '322', '4', '110', 'University of Pune', 'Civil', '73.73', '100', '6')
(8602, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4', 'None', 'IT BHU', 'Metallurgical Engineering', '7.74', '10', '0')
(8603, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IT BHU', 'CSE', '8.17', '10', '0')
(8604, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0')
(8605, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0')
(8606, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '163', '330', '4.5', '118', 'R V College of Engineering', 'Information Science Engineering', '9.09', '10', '0')
(8607, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8608, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.8', '10', '0')
(8609, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '730', '1530', '4.5', '116', 'CEG', 'ECE', '9.7', '10', '0')
(8610, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '170', '158', '328', '3.5', '111', 'YMCA', 'Electronics & Communication Engg', '9.225', '10', '7')
(8611, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '154', '322', '4', '112', 'Manipal Institue of Technology', 'Mechanical & Manufacturing', '9.2', '10', '0')
(8612, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '151', '321', '3.5', '100', 'IIT Roorkee', 'Mech and Industrial Engg', '7.4', '10', '10')
(8613, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '111', 'VIT Pune', 'Computer Engineering', '72', '100', '0')
(8614, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CEG', 'ECE', '8.81', '10', '0')
(8615, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0')
(8616, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84')
(8617, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '3.5', '101', 'D J Sanghvi', 'Computer Engineering', '70', '100', '0')
(8618, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0')
(8619, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '163', '158', '321', '4', '111', 'None', '0', '0', '0', '0')
(8620, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '113', 'CEG', 'ECE', '9.27', '10', '0')
(8621, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0')
(8622, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0')
(8623, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '158', '328', '4', '110', 'Sir MVIT', 'Computer Science and Engg', '83.5', '100', '0')
(8624, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0')
(8625, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '630', '1390', '3.5', 'None', 'UPTU', '0', '69', '100', '0')
(8626, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0')
(8627, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '108', 'VESIT', 'Electronics and Telecommunication', '70.53', '100', '0')
(8628, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '5', '117', 'CEG', 'ECE', '9.3', '10', '0')
(8629, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'SSN College of Engineering', 'Computer Science', '68.8', '100', '0')
(8630, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'BITS Goa', 'B.E(Hons) Computer Science & M.Sc(Hons) Economics', '8.47', '10', '0')
(8631, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '640', '1440', '4.5', '116', 'M.U.', 'Infotech', '64.5', '100', '0')
(8632, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '163', '333', '4', '109', 'BITS Pilani', 'Electrical and Electronics', '8.9', '10', '0')
(8633, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '104', 'SSN College of Engineering', 'CSE', '87.5', '100', '0')
(8634, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '168', '337', '4', '111', 'None', '0', '0', '0', '0')
(8635, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0')
(8636, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'R V College of Engineering', 'Computer Science', '77.7', '100', '0')
(8637, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '102', 'SSN College of Engineering', 'Computer Science and Enginnering', '86.6', '100', '0')
(8638, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '118', 'Anna University', 'IT', '80', '100', '0')
(8639, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '440', '1240', '3', '105', 'Sri Jayachamarajendra College of Engineering', 'ELECTRONICS AND COMMUNICATION', '9.82', '10', '0')
(8640, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4', '113', 'BITS Pilani', 'Computer Science', '9.36', '10', '0')
(8641, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '3.5', '103', 'CEG', 'Computer Science', '9.01', '10', '0')
(8642, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0')
(8643, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2007', '800', '390', '1190', '4', '263', 'Nirma Institute of Technology', 'Civil Engineering', '8.65', '10', '0')
(8644, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '163', '151', '314', '4', '108', 'VIT', 'EEE', '8.53', '10', '0')
(8645, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'PICT', 'IT', '60', '100', '0')
(8646, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0')
(8647, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '630', '1420', '4', '108', 'B N M Institute of Technology', 'ECE', '87.65', '100', '0')
(8648, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '156', '162', '318', 'None', '115', 'Universidad Simon Bolivar', 'Computer Science', '4.6', '5', '0')
(8649, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '15', '168', '158', '326', '4', '109', 'IIT Guwahati', 'ECE', '9.47', '10', '8')
(8650, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0')
(8651, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '550', '1260', '4.5', '108', 'ITESM', 'CS', '86', '100', '0')
(8652, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'University of madras/ Vellammal Engineering College', 'Computer science and Engineering', '73', '100', '0')
(8653, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4.5', '106', 'Manipal Institue of Technology', 'Computer science engineering', '8.8', '10', '0')
(8654, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '600', '1340', '3.5', '117', 'Netaji Subhas Institute of Technology', 'Information Technology', '76.7', '100', '0')
(8655, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '149', '315', '4', '107', 'VESIT', 'Electronics', '78.25', '100', '0')
(8656, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '155', '325', '4', '112', 'BITS Pilani', 'Electrical and Electronics', '9.13', '10', '0')
(8657, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0')
(8658, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0')
(8659, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '162', '328', '4', '117', 'BITS Pilani', 'Computer Science', '8.52', '10', '0')
(8660, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '570', '1350', '4', '113', 'National University of Singapore', 'ECE', '4.42', '5', '0')
(8661, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '164', '162', '326', '4', '113', 'Manipal Institue of Technology', 'IT', '7.24', '10', '0')
(8662, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12')
(8663, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '113', 'NIT Karnataka', 'Computer Science', '7.75', '10', '0')
(8664, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0')
(8665, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4.5', '115', 'BITS Hyderabad', 'Computer Science', '8.55', '10', '30')
(8666, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics Engineering', '66.82', '100', '0')
(8667, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3.5', '116', 'Mahatma Gandhi University Kerala', 'Electronics & Communication Engineering', '68', '100', '0')
(8668, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4.5', '117', 'VTU', 'Information Science', '79', '100', '0')
(8669, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0')
(8670, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0')
(8671, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0')
(8672, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '158', '326', '4', '112', 'VIT University', 'EEE', '8.9', '10', '0')
(8673, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0')
(8674, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0')
(8675, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1334', '530', '1864', '4', '113', 'JSS Noida', 'Computer Science and Engineering', '73.2', '100', '0')
(8676, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '168', '160', '328', '4.5', '119', 'None', 'ECE', '9.8', '100', '24')
(8677, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '115', 'MU', 'electronics engineering', '70', '100', '0')
(8678, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '161', '320', '4', '116', 'R V College of Engineering', 'Information Science', '76', '100', '0')
(8679, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4.5', 'None', 'MU', 'Computer Engineering', '71', '100', '0')
(8680, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12')
(8681, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'VTU', 'E&C;', '82.6', '100', '0')
(8682, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0')
(8683, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0')
(8684, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0')
(8685, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '3', '116', 'VTU', 'electronics & communication', '82', '100', '0')
(8686, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '3', '113', 'NIT Nagpur', 'Computer Science', '9.49', '10', '0')
(8687, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0')
(8688, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '162', '329', '5', 'None', 'Madras Institute of Technology', 'Computer Science', '8.8', '100', '36')
(8689, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0')
(8690, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2014', '170', '159', '329', '3.5', '103', 'PEC University of Technology', 'Electronics Engineering', '7.1', '10', '0')
(8691, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0')
(8692, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0')
(8693, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '152', '321', '4', '115', 'IIT Roorkee', 'Industrial Engineering-B.Tech', '0', '0', '0')
(8694, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '167', '336', '4', '116', 'IIITDM Kancheepuram', 'Computer Engineering', '8.96', '10', '0')
(8695, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '600', '1380', '4.5', '116', 'SSN College of Engineering', 'Computer Science and Engineering', '8.41', '10', '0')
(8696, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18')
(8697, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Design', 'Fall ', '2014', '168', '158', '326', '4.5', '105', 'IIT Roorkee', 'Mechanical Engineering', '6.8', '10', '0')
(8698, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0')
(8699, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '650', '1450', '4', 'None', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control Engg', '78.27', '100', '0')
(8700, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0')
(8701, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '117', 'SSN College of Engineering', 'CSE', '81', '100', '0')
(8702, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0')
(8703, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'Manipal Institue of Technology', 'Electronics', '8.7', '10', '0')
(8704, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'SSN College of Engineering', 'CSE', '80.2', '100', '0')
(8705, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '610', '1410', '4', '115', 'SSN College of Engineering', 'ECE', '80.2', '100', '0')
(8706, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0')
(8707, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '112', 'Model Engineering College', 'Computer Science and Engineering', '76.3', '100', '0')
(8708, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '5', '116', 'BITS Pilani', 'Computer Science', '7.9', '10', '0')
(8709, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '4', '113', 'RGPV', 'Computer Science', '75.7', '100', '0')
(8710, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '155', '146', '301', '2.5', '105', 'R V College of Engineering', 'Biotechnology', '8.57', '10', '0')
(8711, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '4.5', '105', 'Delhi College Of Engineeing', 'Electronics and Communication', '67.5', '100', '0')
(8712, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '113', 'Sardar Patel College of Engineering', 'Electronics Engineering 2009 Batch (old syllabus)', '73.7', '100', '0')
(8713, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '114', 'IIT Kharagpur', 'Elctronics and Communication', '9.35', '10', '0')
(8714, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20')
(8715, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '112', 'BITS Goa', 'Electronics and Instrumentation', '9.313', '10', '0')
(8716, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2')
(8717, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36')
(8718, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0')
(8719, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0')
(8720, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '155', '320', '3.5', '118', 'NITK Surathkal', 'Electronics and communication', '9.01', '10', '0')
(8721, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Institute of Engineering and Technology Lucknow', 'Computer science', '74.4', '100', '0')
(8722, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0')
(8723, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '750', '570', '1320', '3', '102', 'Jaypee Institute of Information Technology', 'CSE/IT', '6.62', '10', '0')
(8724, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '167', '157', '324', '5', '113', 'VIT', 'Electrical and Electronics Engineering', '8.65', '10', '1')
(8725, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '107', 'R V College of Engineering', 'Electronics and communication', '84', '100', '0')
(8726, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0')
(8727, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '155', '316', '4', '106', 'NIT Surat', 'Civil Engineering', '8.31', '10', '0')
(8728, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0')
(8729, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'IIT Madras', 'Electrical Engineering', '9.13', '10', '0')
(8730, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0')
(8731, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '72.9', '100', '0')
(8732, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '161', '321', '4', '113', 'KSRCT Anna university', 'Biotechnology', '86', '100', '0')
(8733, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '710', '420', '1130', '3.5', '106', 'Padmashree Dr D Y Patil University', 'Dept. of Biotechnology and Bioinformatics', '68.1', '100', '0')
(8734, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '710', '660', '1370', '4.5', '111', 'VIT University', 'Bioinformatics', '8.83', '10', '0')
(8735, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '4', '110', 'BITS Pilani', 'Electrical and Electronics', '8.86', '10', '0')
(8736, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0')
(8737, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(8738, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '3', '108', 'MIT', 'CSE', '9', '10', '0')
(8739, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '117', 'SSN College of Engineering', 'Electronics & Communications', '82', '100', '0')
(8740, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '107', 'Thapar University', 'Computer Engineering', '8.15', '10', '0')
(8741, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '158', '322', '3.5', '111', 'GGSIPU', 'ECE', '79.22', '100', '0')
(8742, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'IIT Bombay', 'EE', '9.69', '10', '0')
(8743, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0')
(8744, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '600', '1400', '4', '110', 'COEP', 'Mechanical', '6.97', '10', '0')
(8745, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '115', 'VTU', 'ECE', '77', '100', '0')
(8746, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '167', '158', '325', '4', '115', 'Pune University', 'Electronics', '9.7', '10', '0')
(8747, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '560', '1360', '3.5', '108', 'R V College of Engineering', 'Electronics and Communication', '9.54', '10', '0')
(8748, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'NITK Surathkal', 'Computer Science', '8.82', '10', '0')
(8749, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0')
(8750, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0')
(8751, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Spring ', '2012', '790', '430', '1220', '4', '107', 'Anna University', 'ECE', '88', '100', '0')
(8752, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '165', '332', '4.5', '113', 'University of Pune', 'Electronics and Telecommunication', '63.33', '100', '0')
(8753, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0')
(8754, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '156', '322', '4', '106', 'IIT', 'EE', '9.1', '10', '48')
(8755, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0')
(8756, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0')
(8757, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '690', '1440', '4.5', '113', 'VTU', 'ECE', '8.77', '10', '0')
(8758, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0')
(8759, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.6', '10', '0')
(8760, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '106', 'None', '0', '8.7', '10', '0')
(8761, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0')
(8762, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '162', '332', '3.5', '109', 'Delhi College Of Engineeing', 'Mechanical', '79.02', '100', '0')
(8763, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'DCE', 'EC', '80', '100', '0')
(8764, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '160', '168', '328', '4', '110', 'VIT', 'CS', '8.1', '10', '0')
(8765, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '560', '1360', '4', '108', 'MU', 'Computer', '58.7', '100', '0')
(8766, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '500', '1290', '3', '105', 'VJTI', 'IT', '8.4', '10', '0')
(8767, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '4', '111', 'NIT Surathkal', 'ECE', '8.15', '10', '0')
(8768, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '160', '323', '4', '109', 'Amity School of Engineering and Technology', 'Computer Science and Engineering', '7.56', '10', '0')
(8769, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '168', '159', '327', '4', '114', 'RAIT', 'INSTRUMENTATION', '77', '100', '0')
(8770, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '4', '109', 'TSEC', 'Chem Engg', '72', '100', '0')
(8771, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '157', '326', '4.5', '118', 'VIT University', 'ECE', '9.28', '10', '2')
(8772, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2012', '800', '630', '1430', '4', '110', 'University of Pune', 'E&TC;', '3.95', '4', '0')
(8773, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'VIT', 'Computer Science and Engineering', '8.61', '10', '0')
(8774, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '4', 'CEG', 'Manufacturing', '8.61', '10', '0')
(8775, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '166', '161', '327', '4', '111', 'D J Sanghvi', 'Chemical Engineering', '6', '10', '0')
(8776, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24')
(8777, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall', 'None', '166', '160', '326', '4', '114', 'BMSCE', 'Electronics and Communication Engineering', '9.24', '10', '0')
(8778, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25')
(8779, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4.5', '117', 'IIT Bombay', 'Computer Science', '7.84', '10', '0')
(8780, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8781, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', 'None', 'University of Texas at Austin', 'ECE', '3.64', '4', '0')
(8782, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3.5', 'None', 'VIT', 'Information Technology', '9.25', '10', '0')
(8783, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0')
(8784, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '169', '335', '4', '113', 'IIT Guwahati', 'ECE', '8.37', '100', '0')
(8785, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0')
(8786, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '630', '1380', 'None', '114', 'PESIT', 'Information Science', '8.1', '10', '0')
(8787, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0')
(8788, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '660', '1460', '4.5', '118', 'MU', 'Electronics and Telecommunication', '80.66', '100', '0')
(8789, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '108', 'VIT University', 'EE', '8.7', '10', '0')
(8790, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '155', '318', '4', '116', 'MSRIT', 'Electronics and Communication', '9.22', '10', '0')
(8791, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'IIT Roorkee', 'Architecture', '8.2', '10', '0')
(8792, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0')
(8793, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '770', '670', '1440', '3', '113', 'SGSITS', 'Information Technology', '75.6', '100', '0')
(8794, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0')
(8795, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4', '110', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73', '100', '0')
(8796, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '160', '325', '4', '117', 'SJCE', 'E&C;', '9.5', '10', '0')
(8797, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '170', '162', '332', '4', '110', 'BITS Pilani', 'Electronics and Communication', '9.43', '10', '3')
(8798, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '170', '154', '324', '4', '110', 'IIT Bombay', 'Mechanical Engineering', '7.32', '10', '22')
(8799, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'SRM', 'Civil Engineering', '9.66', '10', '0')
(8800, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '111', 'Thadomal Shahani Engineering College', 'Computer Engineering', '67', '100', '0')
(8801, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '610', '1390', '4', '108', 'PESIT', 'Computer Science', '69.56', '100', '0')
(8802, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '106', 'COEP', 'Computer Engineering & Information Technology', '8.27', '10', '0')
(8803, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '166', '158', '324', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.8', '10', '0')
(8804, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '1420', '116', 'IIT Roorkee', 'ECE', '8.026', '10', '0')
(8805, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '98', 'D j Sanghvi', 'EXTC', '71', '100', '0')
(8806, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '690', '1490', '4.5', '115', 'DA-IICT', 'Information and Communication Technology', '8.29', '10', '0')
(8807, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '163', '333', '3.5', '113', 'NITK Surathkal', 'ECE', '8.17', '100', '0')
(8808, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '151', '309', '4.5', '110', 'Nagpur University', 'Electronics and Communication', '76', '100', '0')
(8809, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall', 'None', '169', '165', '334', '4.5', '114', 'IIT Bombay', 'Chemical Engineering', '7.43', '10', '0')
(8810, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '590', '1390', '4', '112', 'University of Mumbai', 'Chemical Engineering', '0', '0', '0')
(8811, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '157', '326', '4', '116', 'BITS Pilani', 'EEE', '8.83', '10', '0')
(8812, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '112', 'NIT Tirchy', 'CS', '8.81', '10', '0')
(8813, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '5', '113', 'Delhi College Of Engineeing', 'Computer Engineerring', '63', '100', '0')
(8814, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8815, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '470', '1260', '4.5', '110', 'VTU', 'biotechnology', '7.9', '10', '0')
(8816, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '157', '150', '307', '3', '106', 'DY Patil University Navi Mumbai', 'Bioinformatics', '71', '100', '0')
(8817, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '155', '320', '4.5', '110', 'SASTRA', 'ECE', '9.1', '10', '0')
(8818, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '165', '160', '325', '5', '114', 'SPCE', 'IT', '61', '100', '0')
(8819, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '640', '1430', '4', '109', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '60', '100', '0')
(8820, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall', 'None', '780', '530', '1310', '3.5', '103', 'NIT Rourkela', 'Biotechnology', '8.8', '10', '0')
(8821, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0')
(8822, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2008', '800', '600', '1400', '4', '112', 'University of Kerala', 'Mechanical', '73', '100', '0')
(8823, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '153', '148', '301', '3.5', '101', 'VTU', 'Computer science and engineering', '72.07', '100', '0')
(8824, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1300', 'None', '1300', 'None', '100', 'BITS Pilani', 'Electrical and electronics', '7.5', '10', '0')
(8825, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '166', '335', '3.5', '113', 'NIT', 'Civil Engineering', '9.22', '10', '0')
(8826, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0')
(8827, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '620', '1420', '1420', '105', 'RAIT', 'ECE', '72', '100', '0')
(8828, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '107', 'SSN College of Engineering', 'Electronics and Communication Engineering', '86', '100', '0')
(8829, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '162', '322', '4', '114', 'R V College of Engineering', 'Computer Science and Engineering', '9.18', '10', '0')
(8830, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0')
(8831, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0')
(8832, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0')
(8833, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '600', '1370', '5', 'None', 'Toronto', 'EE', '3.6', '4', '0')
(8834, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '480', '1280', '4', '115', 'IIT Madras', 'Electrical Engineering', '7.3', '10', '0')
(8835, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8836, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0')
(8837, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8838, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0')
(8839, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0')
(8840, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '760', '350', '1110', '3.5', '96', 'VTU', 'Mechanical', '67', '100', '0')
(8841, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '161', '327', '4.5', '107', 'MSRIT', 'Electronics and Communication Engineering', '9.22', '10', '0')
(8842, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '690', '1490', '4', '113', 'Sri Jayachamarajendra College of Engineering', 'Electronics & Communication', '81.92', '100', '0')
(8843, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '770', '650', '1420', '4', '115', 'Anna University', 'computer science', '80', '100', '0')
(8844, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '109', 'Velammal Engineering College', 'Computer Science and Engineering', '8.8', '10', '0')
(8845, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0')
(8846, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '108', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '75.26', '100', '0')
(8847, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0')
(8848, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '104', 'DCE', '0', '74', '100', '0')
(8849, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(8850, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0')
(8851, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '159', '154', '313', '3.5', '107', 'KIIT', 'Civil Engineering', '7.85', '10', '1')
(8852, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '620', '1420', '4', '110', 'IIT Guwahati', 'Design', '8.04', '10', '0')
(8853, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0')
(8854, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0')
(8855, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '162', '327', '4', '111', 'NIT Calicut', 'ECE', '9.04', '10', '17')
(8856, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '165', '333', '4', '117', 'BITS Pilani', 'Computer Science', '9.12', '10', '14')
(8857, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '710', '1490', '4.5', '111', 'VJTI', 'Electronics', '9.1', '10', '0')
(8858, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0')
(8859, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '163', '163', '326', '4.5', '118', 'VTU', 'Telecommunication', '8.38', '10', '0')
(8860, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0')
(8861, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Urban Design', 'Fall ', '2015', '156', '155', '311', '4.5', '110', 'University of Mumbai', 'Sir J J College of Architecture', '74', '100', '36')
(8862, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '5', '111', 'SSN College of Engineering', 'Electronics and Communication Engineering', '87', '100', '0')
(8863, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '155', '321', '3.5', '113', 'YMCA', 'EIC', '8.17', '10', '0')
(8864, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '510', '1310', '4', '112', 'BITS Pilani', '0', '9.91', '10', '0')
(8865, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', '116', 'Jadavpur University', 'Electrical Engineering', '8.82', '10', '0')
(8866, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0')
(8867, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '166', '161', '327', '4', '117', 'University of Mumbai', 'Electronics and Telecom', '72', '100', '0')
(8868, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2014', '168', '149', '317', '3', 'None', 'IIIT Hyderabad', 'Computer Science', '7.87', '10', '0')
(8869, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'civil', 'Fall ', '2012', '163', '155', '318', '3.5', '107', 'Jadavpur University', 'construction engg', '8.56', '10', '0')
(8870, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0')
(8871, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '165', '328', '4.5', '115', 'Anna University', 'CSE', '96.4', '100', '0')
(8872, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0')
(8873, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0')
(8874, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2010', '770', '560', '1330', '4.4', '116', 'UIIT HPU', '0', '67', '100', '0')
(8875, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0')
(8876, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '169', '160', '329', '3.5', '114', 'Pune University', 'E&TC;', '64.47', '100', '0')
(8877, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'statistics', 'Fall ', '2015', '166', '165', '331', '3.5', '110', 'IIT Roorkee', 'Chemistry', '7.4', '10', '0')
(8878, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0')
(8879, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25')
(8880, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '530', '1330', '3.5', '108', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.87', '10', '0')
(8881, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0')
(8882, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '114', 'Sardar Patel College of Engineering', 'Computer Science', '70', '100', '0')
(8883, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '152', '320', '4', 'None', 'Thiagarajar College of engineering', 'electrical and electronics', '9.53', '10', '0')
(8884, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0')
(8885, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8886, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0')
(8887, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '730', '490', '1220', '4', '110', 'Jaypee Institute of Information Technology', 'CSE', '8.7', '10', '0')
(8888, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '164', '330', '5', '119', 'CoE Trivandrum', 'Electronics and Communication Engg', '8.5', '10', '0')
(8889, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '430', '1130', '3', '91', 'Andal Alagar College of Engineering', 'EEE', '79.3', '100', '0')
(8890, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '780', '570', '1350', '3.5', '114', 'BITS Dubai', 'Mechanical Engineering', '9.64', '10', '0')
(8891, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '720', '1520', '4', '118', 'Sardar Patel College of Engineering', 'Electrical Engineering', '68', '100', '0')
(8892, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0')
(8893, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '114', 'NITK Surathkal', 'IT', '8.8', '10', '0')
(8894, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '151', '321', '3', '104', 'BITS Goa', 'Mechanical', '8.32', '10', '0')
(8895, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', '167', '155', '322', '4', '116', 'MU', 'EXTC', '77', '100', '0')
(8896, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0')
(8897, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '3.5', '113', 'NITK Surathkal', 'ECE', '8.4', '10', '0')
(8898, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '158', '152', '310', '4', '106', 'Sri Venkateswara College of Engineering', 'ECE', '79', '100', '0')
(8899, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '800', '660', '1460', '3.5', '110', 'University of Mumbai', 'Information Technology', '78.48', '100', '0')
(8900, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '106', 'NIT Jalandhar', 'Computer Science', '74', '100', '0')
(8901, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0')
(8902, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0')
(8903, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '710', '1510', '4.5', '111', 'Coimbatore Insitute of Technology', 'Computer Science', '8.8', '10', '0')
(8904, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3', '103', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '8.36', '10', '0')
(8905, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0')
(8906, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '740', '1540', '5', '114', 'R V College of Engineering', 'EEE', '82', '100', '0')
(8907, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0')
(8908, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0')
(8909, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '161', '325', '5', '118', 'NIT Calicut', 'Electronics and Communication Engineering', '5.9', '10', '0')
(8910, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Finance', 'Fall ', '2011', '50', '34', '84', '4.5', '103', 'IIT Madras', 'Biotechnology', '7.37', '10', '0')
(8911, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39')
(8912, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '120', 'PICT', 'Information Technology', '4.92', '5', '24')
(8913, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0')
(8914, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '680', '1440', '4', '114', 'VESIT', 'Electronics and Telecom', '76', '100', '0')
(8915, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0')
(8916, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0')
(8917, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0')
(8918, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '108', 'Model Engineering College', 'Computer science', '75', '100', '0')
(8919, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Structural', 'Fall ', '2013', '164', '154', '318', '4', '104', 'NIT Srinagar', 'Civil Engineering', '9.603', '10', '0')
(8920, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '115', 'CEG', 'Computer Science', '8.3', '10', '0')
(8921, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '164', '334', '4', '113', 'NIT Warangal', 'ECE', '8.64', '10', '0')
(8922, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '790', '700', '1490', '4.5', 'None', 'None', '0', '80', '100', '0')
(8923, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0')
(8924, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '650', '1420', '4', '111', 'VESIT', 'Electronics and Tele communications', '70', '100', '0')
(8925, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0')
(8926, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0')
(8927, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '170', '157', '327', '4', '102', 'BITS Pilani', 'EEE', '9.94', '10', '0')
(8928, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'University of Mumbai', 'Electronics and Telecommunication', '70.57', '100', '0')
(8929, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '152', '322', 'None', '110', 'SASTRA', 'ECE', '8.1', '10', '24')
(8930, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0')
(8931, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '790', '660', '1450', '4', '111', 'University of Pune', 'Mechanical Engineering', '63', '100', '0')
(8932, 'Georgia Institute of Technology', '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '670', '1470', '4.5', '113', 'Delhi College Of Engineeing', 'Environmental Engineering', '74.54', '100', '0')
(8933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26')
(8934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0')
(8935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3.5', '106', 'BMSCE', 'Telecommunication', '70', '100', '0')
(8936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2015', '168', '164', '332', '4', '119', 'University of Mumbai', 'Electronics and Telecommunication', '83', '100', '0')
(8937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0')
(8938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0')
(8939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48')
(8940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '158', '324', '3.5', '105', 'Manipal Institue of Technology', 'Mechatronics', '7.1', '10', '0')
(8941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '99', '91', '190', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.6', '10', '0')
(8942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7')
(8943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '4', '117', 'None', 'EEE', '8.9', '10', '0')
(8944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '156', '319', '4', '113', 'MU', 'Computer Engineering', '67', '100', '0')
(8945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(8946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0')
(8947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0')
(8948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0')
(8949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0')
(8950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63')
(8951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '156', '314', '3', '109', 'MSRIT', 'Telecommunication', '8.52', '10', '0')
(8952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', 'None', 'Anna University', 'Production', '8.57', '10', '0')
(8953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '450', '1250', '4.5', '112', 'Dr. Ambedkar Institute of Technology', 'Computer Science', '75', '100', '0')
(8954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0')
(8955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.99', '10', '0')
(8956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'VTU', 'Computer Science', '76', '100', '0')
(8957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0')
(8958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '154', '315', '4', '109', 'SRM', 'Civil Engineering', '8.95', '10', '0')
(8959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '113', 'Galgotias College Of Engineering & Technology', 'CSE', '68.7', '100', '0')
(8960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0')
(8961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '169', '152', '321', '3.5', '97', 'VIT', 'ECE', '89.3', '100', '0')
(8962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '105', 'University of Pune', 'Computer Engineering', '65', '100', '0')
(8963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0')
(8964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0')
(8965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0')
(8966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0')
(8967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0')
(8968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', 'None', '107', 'Thapar University', 'Computer Science', '7.44', '10', '0')
(8969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0')
(8970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0')
(8971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0')
(8972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0')
(8973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '111', 'Siddaganga Institue of Technology', 'Telecommunication Engineering', '9.17', '10', '0')
(8974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0')
(8975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0')
(8976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0')
(8977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24')
(8978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0')
(8979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0')
(8980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '108', 'PESIT', 'Electronics and Communication', '69.6', '100', '14')
(8981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '104', 'D J Sanghvi', 'Information Technology', '74', '100', '0')
(8982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '170', '153', '323', '4', '110', 'IIT', '0', '8.4', '10', '0')
(8983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0')
(8984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32')
(8985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34')
(8986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '3.5', '114', 'GITAM', 'CSE', '8.04', '100', '0')
(8987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0')
(8988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0')
(8989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0')
(8990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '450', '1230', '3.5', 'None', 'Walchand College Of Engineering', 'Electronics', '76', '100', '0')
(8991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '104', 'COEP', 'Civil Engineering', '7.52', '10', '0')
(8992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0')
(8993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18')
(8994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'ECE', '76.59', '100', '0')
(8995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(8996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '166', '334', '5', '116', 'IIT BHU', '0', '8.4', '10', '0')
(8997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4', '100', 'DTU', 'IT', '71', '100', '0')
(8998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0')
(8999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '111', 'Osmania University', 'Mechanical Engineering', '83', '100', '0')
(9000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0')
(9001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0')
(9002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0')
(9003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3')
(9004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '4', '110', 'D J Sanghvi', 'Computer Engg', '69', '100', '21')
(9005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '157', '320', '4.5', '117', 'Shiv Nadar University', 'Computer Science', '9.15', '10', '0')
(9006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0')
(9007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0')
(9008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0')
(9009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0')
(9010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12')
(9011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '162', '331', '4', '113', 'Visvesvaraya NIT Nagpur', 'Mechanical Engineeing', '7.94', '10', '0')
(9012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '99', 'BIT Mesra', 'Electronics and Communication', '80.8', '100', '0')
(9013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0')
(9014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '156', '319', '3.5', '104', 'MU', 'Computers', '67.72', '100', '0')
(9015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0')
(9016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0')
(9017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'University school of chemical technology GGS Indraprastha University Delhi', '0', '79', '100', '0')
(9018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '107', 'Veermata Jijabai Technological Institute', 'Electronics Engineering', '8.7', '10', '14')
(9019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '4.5', '111', 'GITAM', 'CSE', '9.25', '10', '0')
(9020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '159', '323', '5', '116', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.6', '10', '0')
(9021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24')
(9022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24')
(9023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4', '114', 'CoE Trivandrum', 'Computer Science', '7.64', '10', '0')
(9024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0')
(9025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42')
(9026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46')
(9027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '156', '317', '3.5', '105', 'Vishwakarma Institute of Technology', 'Computer Engineering', '75', '100', '0')
(9028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0')
(9029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18')
(9030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0')
(9031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0')
(9032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24')
(9033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '108', 'Delhi College Of Engineeing', 'Department of Computer Science', '71.4', '100', '0')
(9034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '154', '317', '3.5', '103', 'VTU', 'Computer science', '75.8', '100', '0')
(9035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '170', '155', '325', '4', '101', 'NIT Goa', 'CSE', '8.1', '10', '14')
(9036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '161', '327', '3.5', 'None', 'CoE Trivandrum', 'ELECTRONICS AND COMMUNICATION', '6.95', '10', '0')
(9037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '420', '1200', '3.5', '105', 'SRM', 'Computer Science and Engineering', '9.28', '10', '0')
(9038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0')
(9039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '106', 'BIT Mesra', 'Information Technology', '7.34', '10', '0')
(9040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '154', '150', '304', '4', '97', 'CEG', 'Media Sciences', '8.235', '10', '0')
(9041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '164', '327', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication engineering', '81.94', '100', '0')
(9042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0')
(9043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0')
(9044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '530', '1270', '3', '105', 'Pune University', 'IT', '68', '100', '0')
(9045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '107', 'VJTI', 'IT', '7.8', '10', '0')
(9046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0')
(9047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0')
(9048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0')
(9049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0')
(9050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0')
(9051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '94', 'Amravati University', 'Mechanical Engineering', '72.35', '100', '0')
(9052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0')
(9053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '156', '326', '3', 'None', 'Thapar University', 'Mechanical', '7.65', '10', '23')
(9054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', 'None', '108', 'MU', 'Electronics Engineering', '63', '100', '0')
(9055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0')
(9056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0')
(9057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '111', 'Maharaja Surajmal Institute of Technology', 'Computer Science', '0', '0', '30')
(9058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '157', '322', '3', '104', 'NIT Calicut', 'Production Engineering', '8.5', '10', '0')
(9059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '153', '316', '3', '112', 'VIT', 'electronics', '8.86', '10', '0')
(9060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '163', '330', '4', 'None', 'NITK Surathkal', 'Mechanical Engineering', '8.92', '10', '29')
(9061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '164', '327', '4.5', '106', 'Nationl Institute of Technology Jamshedpur', 'Electronics and Communication Engineering', '9.42', '10', '0')
(9062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0')
(9063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '4', '112', 'IIITD', 'Computer Science', '8.67', '10', '0')
(9064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '780', '690', '1470', 'None', 'None', 'SSN College of Engineering', 'ECE', '83', '100', '0')
(9065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0')
(9066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0')
(9067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0')
(9068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0')
(9069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '107', 'K J Somaiya College of Engiineering', 'Computer Engineering', '68.6', '100', '0')
(9070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '109', 'NIT Calicut', 'ECE', '8.1', '10', '0')
(9071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '147', '310', '3.5', '106', 'SJCE', 'Electronics and Communication', '9.01', '10', '0')
(9072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '106', 'IIIT Jabalpur', 'Computer Science', '8.4', '10', '0')
(9073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18')
(9074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0')
(9075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '100', 'IIT', 'Information Technology', '8.28', '10', '48')
(9076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '680', '1450', '3', '99', 'BMSCE', 'EC', '85', '100', '0')
(9077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '4', '115', 'IIT Kharagpur', 'ECE', '9.28', '10', '0')
(9078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0')
(9079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(9080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '104', 'VTU', 'Computer Science', '81.3', '100', '0')
(9081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0')
(9082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0')
(9083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0')
(9084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '152', '320', '3.5', '103', 'KIIT', 'Computer Science', '9', '10', '0')
(9085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '3', '104', 'MU', 'Electronics and telecommunication', '78', '100', '0')
(9086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0')
(9087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0')
(9088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'HCI / CS', 'Fall ', '2014', '169', '149', '318', '3.5', '108', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '8', '10', '0')
(9089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '107', 'Jaypee Institute of Information Technology', 'ECE', '7.6', '10', '0')
(9090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6')
(9091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '106', 'Jaypee Institute of Information Technology', 'Computer Science and Engineering', '7.5', '10', '0')
(9092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0')
(9093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0')
(9094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0')
(9095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0')
(9096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54')
(9097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '160', '326', '4', '108', 'Bhilai Institute of Technology', 'Computer Science', '7.81', '10', '0')
(9098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '167', '328', '3.5', '109', 'RNSIT', '0', '78.23', '100', '0')
(9099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0')
(9100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '149', '308', '3.5', '100', 'VIT Pune', 'I. T', '8.5', '10', '0')
(9101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12')
(9102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '151', '317', '3.5', '95', 'VJTI', 'CS', '7.6', '10', '0')
(9103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16')
(9104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '153', '316', '3.5', '114', 'Jabalpur Engg College', 'EE', '8.21', '10', '0')
(9105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0')
(9106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '760', '440', '1200', '3.5', '110', 'Pune University', 'Computer Science', '70.66', '100', '0')
(9107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0')
(9108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0')
(9109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0')
(9110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '660', '1380', '4', '107', 'Anna University', 'Information Technology', '7.5', '10', '0')
(9111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0')
(9112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0')
(9113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '165', '333', '4.5', 'None', 'Delhi College Of Engineeing', 'ECE', '78.48', '100', '0')
(9114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0')
(9115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '113', 'NIT-Trichy', 'EEE', '8.61', '10', '0')
(9116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4', '117', 'Thadomal Shahani Engineering College', 'Computer Engineering', '64.96', '100', '0')
(9117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '153', '311', '3', '97', "St Joseph's College of Engineering", 'Mechanical engineering', '74', '100', '0')
(9118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '152', '314', '4', '105', 'L D College Of Engineering', 'Civil Engineering', '7.9', '10', '0')
(9119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0')
(9120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0')
(9121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0')
(9122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0')
(9123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0')
(9124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3.5', '113', 'NIT Calicut', 'ECE', '7.27', '10', '24')
(9125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'NIT Hamirpur', 'Computer Science and Engineering', '8.64', '10', '0')
(9126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0')
(9127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', 'None', 'DA-IICT', 'Information and Communication Technology', '9.26', '10', '15')
(9128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0')
(9129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'VTU', 'Mechanical Engineering', '81', '100', '0')
(9130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0')
(9131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '156', '319', '4', '115', 'BITS Pilani', 'Chemical Engineering', '8.4', '10', '0')
(9132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '161', '154', '315', '3.5', '111', 'SASTRA', 'CSE', '8.75', '10', '0')
(9133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '550', '1350', '3', '107', 'University of Mumbai', 'ELECTRONICS AND TELECOMMUNICATIONS', '67', '100', '0')
(9134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0')
(9135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '161', '325', '5', '111', 'Sir MVIT', 'Information Science and Engineering', '74.34', '100', '24')
(9136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '110', 'Thadomal Shahani Engineering College', 'Computers', '75.2', '100', '0')
(9137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '161', '329', '3', '105', 'IIT BHU', 'Electronics and communication', '7.86', '10', '0')
(9138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24')
(9139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0')
(9140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '117', 'Don Bosco Institute of Technology', 'Computer Science', '75.5', '100', '14')
(9141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3', '105', 'Uttarakhand Technical University', 'Computer Science and Engineering', '72', '100', '0')
(9142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0')
(9143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0')
(9144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0')
(9145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '580', '1300', 'None', 'None', 'IIT Guwahati', 'CSE', '6.55', '10', '0')
(9146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41')
(9147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(9148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '800', '500', '1300', '3.5', '110', 'SRM', 'Computer Science', '8.47', '10', '0')
(9149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '680', '1450', '3.5', '101', 'Anna University', 'Production Engg', '8.6', '10', '0')
(9150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0')
(9151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0')
(9152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0')
(9153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '3', '102', 'BITS Pilani', 'Electronics & Communication', '9.73', '10', '0')
(9154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0')
(9155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '110', 'Pune University', 'Computer Science', '65', '100', '0')
(9156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0')
(9157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '157', '327', '3.5', '109', 'IIT Roorkee', 'Mechanical Engineering', '8.06', '10', '0')
(9158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'Madras Institute of Technology', 'Aerospace engineering', '9.46', '10', '0')
(9159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0')
(9160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '163', '324', '4', '116', 'D J Sanghvi', 'Computers', '75.8', '100', '24')
(9161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0')
(9162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '107', 'Jadavpur University', 'Electrical Engineering', '8.56', '10', '0')
(9163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3', '106', 'NSIT', 'Computer Engineering', '78.88', '100', '32')
(9164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '114', 'NIT Calicut', 'Computer Science and Engineering', '9.48', '10', '0')
(9165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0')
(9166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0')
(9167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0')
(9168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16')
(9169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0')
(9170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0')
(9171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0')
(9172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '107', 'BITS Pilani', 'CS', '8.5', '10', '44')
(9173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '490', '1240', '4', '114', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.2', '10', '0')
(9174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0')
(9175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0')
(9176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '89', 'Coimbatore Insitute of Technology', 'Mechanical', '8.34', '10', '0')
(9177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0')
(9178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '114', 'BITS Pilani', 'Computer Science and Information systems', '7.23', '10', '0')
(9179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Electrical engineering', '7.64', '10', '0')
(9180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0')
(9181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0')
(9182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '152', '321', '4', '109', 'MU', 'Information Technology', '62.47', '100', '28')
(9183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0')
(9184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '167', '160', '327', '4', '115', 'BITS Goa', 'Physics + Electronics and Electrical', '8.05', '10', '3')
(9185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0')
(9186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '800', '590', '1390', '3', '109', 'Biju Patnaik University of Technology', 'Electronics and Instrumentation', '8.85', '10', '0')
(9187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0')
(9188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0')
(9189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '4', '111', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '79', '100', '30')
(9190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24')
(9191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0')
(9192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0')
(9193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4', '112', 'University of Pune', 'Electronics & Telecommunications', '61', '100', '0')
(9194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0')
(9195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0')
(9196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '115', 'BITS Pilani', 'Computer Science', '8.13', '10', '0')
(9197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '151', '315', '3', '94', 'SSN College of Engineering', 'CSE', '76.4', '100', '0')
(9198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '161', '158', '319', '5', '112', 'VJTI', 'Electronics', '82', '100', '0')
(9199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '113', 'SSN College of Engineering', 'ECE', '8.8', '10', '0')
(9200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0')
(9201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '157', '323', '4', '119', 'BITS Goa', 'Computer Science', '8.48', '10', '0')
(9202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', '3.5', '111', 'GGSIPU', 'IT', '72', '100', '0')
(9203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '530', '1280', '4.5', '110', 'VTU', 'Computer Science', '82', '100', '0')
(9204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0')
(9205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '155', '324', '4', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engineering', '69', '100', '0')
(9206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0')
(9207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '790', '760', '1550', '4', '116', 'University College of Engineering Osmania University', 'ECE', '3.2', '4', '0')
(9208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '170', '156', '326', '5', 'None', 'Jadavpur University', 'Instrumentation and Electronics Engineering', '8.948', '10', '0')
(9209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '116', 'MU', 'Electronics', '66.7', '100', '0')
(9210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4.5', '113', 'JNTU', 'Computer Science and Information Technology', '77', '100', '0')
(9211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0')
(9212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '105', 'IIT Kharagpur', 'Aerospace', '8.66', '10', '0')
(9213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '3.5', '107', 'MSRIT', 'ELEC & COMM', '8.74', '10', '0')
(9214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '109', 'Anna University', 'Mech', '7.41', '10', '0')
(9215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '560', '1340', '4', '112', 'B M S College of Engineering', 'Telecommunication', '9.1', '10', '0')
(9216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0')
(9217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0')
(9218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0')
(9219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0')
(9220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '104', 'Sir MVIT', 'E&CE;', '8.305', '10', '0')
(9221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0')
(9222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '560', '1340', '3', '89', 'Jadavpur University', 'Chemical Engineering', '74', '100', '0')
(9223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0')
(9224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0')
(9225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0')
(9226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0')
(9227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0')
(9228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0')
(9229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0')
(9230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0')
(9231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4', '99', 'Sardar Patel College of Engineering', 'Electronics', '69', '100', '0')
(9232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0')
(9233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Systems and Control', 'Fall ', '2014', '165', 'None', '165', '3.5', '104', 'NIT Surat', 'Electrical Engineering', '8.18', '10', '0')
(9234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '600', '1400', '4', '103', 'MU', 'Information Technology', '72', '100', '0')
(9235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '780', '680', '1460', '4', '110', 'U.P. Technical University', 'CS', '67', '100', '0')
(9236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0')
(9237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0')
(9238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '112', 'None', '0', '8.36', '10', '0')
(9239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '530', '1300', '3', '106', 'MU', 'CS', '72.48', '100', '0')
(9240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '104', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '76.56', '100', '0')
(9241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'COEP', 'Computer and Information Tehnology', '8.39', '10', '0')
(9242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0')
(9243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2010', '800', '570', '1370', '3.5', '116', 'NITK Surathkal', 'ECE', '8.56', '10', '0')
(9244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '166', '157', '323', '4', '109', 'BITS Pilani', 'EEE', '8.64', '10', '0')
(9245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '4.5', '111', 'NIT Tirchy', 'Mechanical Engg', '8.59', '10', '0')
(9246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0')
(9247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0')
(9248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0')
(9249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '800', '1600', '4', '110', 'Thapar University', 'Mechanical Engineering', '9.35', '10', '0')
(9250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0')
(9251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0')
(9252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22')
(9253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4', '112', 'NIT Calicut', 'ECE', '7.84', '10', '0')
(9254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21')
(9255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0')
(9256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT (Information and Communication Technology)', '6.4', '10', '23')
(9257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '400', '1200', '4', '105', 'CEG', '0', '9.2', '10', '0')
(9258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '157', '316', '4', '111', 'NITK Surathkal', 'Computer Engineering', '7.7', '10', '0')
(9259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0')
(9260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0')
(9261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0')
(9262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0')
(9263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0')
(9264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0')
(9265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36')
(9266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '108', 'VTU', 'Electronics', '8.84', '10', '0')
(9267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '326', '156', '482', '4', '113', 'VTU', 'CSE', '82.64', '100', '12')
(9268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '155', '321', '3', '107', 'NIT- Surat', 'Civil Engineering', '9.38', '10', '0')
(9269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0')
(9270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0')
(9271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0')
(9272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'BITS Goa', 'Chemical Engineering', '7.34', '10', '0')
(9273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '151', '316', '4', '103', 'J.N.T. University Hyderabad', 'Electronics and Communication Engineering', '81.85', '100', '0')
(9274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0')
(9275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0')
(9276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '162', '148', '310', '3', '104', 'VESIT', 'CompEngg', '66', '100', '15')
(9277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17')
(9278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '168', '336', '5', '118', 'Madras Institute of Technology', 'Computer Science', '8.65', '10', '24')
(9279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'K J Somaiya College of Engiineering', 'Computer', '69', '100', '0')
(9280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0')
(9281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(9282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4', '115', 'None', '0', '8.74', '10', '0')
(9283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', '100', 'Pune University', 'Mechanical Engineering', '72.4', '100', '0')
(9284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0')
(9285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0')
(9286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0')
(9287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0')
(9288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0')
(9289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '154', '315', '4', '108', 'VIT', 'ECE', '8.78', '10', '0')
(9290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0')
(9291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '3.5', '109', 'MU', 'Information Technology', '69.82', '100', '30')
(9292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0')
(9293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0')
(9294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30')
(9295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4')
(9296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0')
(9297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '470', '790', '1260', '3.5', '112', 'Madras Institute of Technology', 'Electronics and Communication engineering', '8', '10', '0')
(9298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '760', '540', '1300', '3', '102', 'Coimbatore Insitute of Technology', 'Computer Science & Engineering', '9.06', '10', '0')
(9299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '162', '324', '3', '109', 'VTU', 'Civil Engineering', '8.12', '10', '12')
(9300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0')
(9301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0')
(9302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '4.5', '115', 'SRM', 'Electrical & electronics engineering', '8.881', '10', '0')
(9303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0')
(9304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '109', 'Osmania University', 'CSE', '86.2', '100', '0')
(9305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '165', '161', '326', '3', '105', 'VTU', 'ECE', '87', '100', '0')
(9306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36')
(9307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16')
(9308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '163', '164', '327', '4', '115', 'Anna University', 'Aeronautical Engg.', '8.73', '10', '0')
(9309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '670', '1450', '3.5', '108', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0')
(9310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0')
(9311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '165', '333', '4', '117', 'PESIT', 'ECE', '9.7', '10', '0')
(9312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '157', '326', '3.5', '110', 'TU', 'Computer Science', '9.9', '10', '0')
(9313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0')
(9314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0')
(9315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0')
(9316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24')
(9317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '150', '310', '4', '105', 'Sri Jayachamarajendra College of Engineering', 'ECE', '9.06', '10', '0')
(9318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34')
(9319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0')
(9320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0')
(9321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '580', '1350', '3', '107', 'PSG College of Technology', 'Production Engineering', '9.32', '10', '0')
(9322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12')
(9323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18')
(9324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0')
(9325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52')
(9326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '116', 'D J Sanghvi', 'Comps', '67', '100', '0')
(9327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '105', 'GGSIPU', 'CSE', '69', '100', '0')
(9328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '154', '324', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication', '9.53', '10', '0')
(9329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0')
(9330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '98', 'D J Sanghvi', 'Electronics', '70', '100', '0')
(9331, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0')
(9332, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0')
(9333, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0')
(9334, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '600', '1350', '4', '106', 'Anna University', 'ECE', '84', '100', '0')
(9335, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0')
(9336, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0')
(9337, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0')
(9338, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0')
(9339, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0')
(9340, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3.5', '105', 'BVCOE', 'IT', '75', '100', '0')
(9341, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication Engineering', '80', '100', '0')
(9342, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '102', 'C.I.T.M M.D.U Rohtak', 'Mechanical Engineering', '70', '100', '0')
(9343, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '161', '320', '3', '106', 'Anna University', 'Information Technology', '74', '100', '0')
(9344, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0')
(9345, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '103', 'IIT Bhubaneswar', 'Electrical Engineering', '9.47', '10', '0')
(9346, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0')
(9347, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0')
(9348, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '116', 'MU', 'Computer Engineering', '72.95', '100', '0')
(9349, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4')
(9350, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '590', '1380', '3', '104', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.6', '10', '0')
(9351, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36')
(9352, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0')
(9353, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0')
(9354, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0')
(9355, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0')
(9356, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '162', '158', '320', '3', '113', 'RAIT', 'Electronics', '61', '100', '0')
(9357, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '163', '331', '4', '118', 'Government Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '78.4', '100', '81')
(9358, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '107', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '77', '100', '0')
(9359, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '161', '157', '318', '4', '109', 'Manipal Institue of Technology', 'Electronics and Communication', '8.78', '10', '0')
(9360, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '640', '1430', '3', '105', 'JNNCE / VTU', 'Computer Science', '78', '100', '0')
(9361, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0')
(9362, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0')
(9363, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '166', '331', '4', '113', 'Madras Institute of Technology', 'ECE', '9.1', '10', '0')
(9364, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0')
(9365, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0')
(9366, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0')
(9367, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '107', 'BITS Dubai', 'Ece', '9.68', '10', '0')
(9368, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2006', '800', '600', '1400', '4', '267', 'Andhra University', 'Chemical Engg', '83.2', '100', '0')
(9369, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '520', '1310', '3.5', '99', 'MU', 'Electronics and Telecommunication', '75.34', '100', '0')
(9370, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '540', '1280', '4', '111', 'MU', 'Computer Engineering', '69', '100', '0')
(9371, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0')
(9372, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0')
(9373, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '151', '318', '3.5', '95', 'NIT Calicut', 'ECE', '7.88', '10', '24')
(9374, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '163', '155', '318', '3', '112', 'BITS Dubai', 'ECE', '9.45', '10', '0')
(9375, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0')
(9376, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0')
(9377, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0')
(9378, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0')
(9379, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '162', '314', '3', '107', 'Amrita School of Engineering', 'Computer Science', '8.68', '10', '0')
(9380, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0')
(9381, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(9382, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0')
(9383, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '560', '1340', '3.5', '108', 'NIT', 'ECE', '9.02', '10', '0')
(9384, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0')
(9385, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '155', '318', '4', '104', 'IIIT Jabalpur', 'ECE', '8', '100', '0')
(9386, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0')
(9387, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0')
(9388, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '164', '334', '4', '112', 'Delhi College Of Engineeing', 'Electronics And Communication', '64.09', '100', '0')
(9389, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '103', 'NIT Warangal', 'Computer science', '7.2', '10', '0')
(9390, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0')
(9391, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0')
(9392, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '4', '106', 'SASTRA', 'CSE', '9.37', '10', '12')
(9393, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9')
(9394, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0')
(9395, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0')
(9396, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '93', 'PICT', 'IT', '3.55', '4', '0')
(9397, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0')
(9398, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0')
(9399, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '580', '1360', '4', '106', 'Anna University', 'Electronics and Communication', '74', '100', '0')
(9400, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0')
(9401, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55')
(9402, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0')
(9403, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '157', '322', '4.5', '116', 'Nanyang Technological University', 'EEE', '4.48', '5', '0')
(9404, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0')
(9405, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0')
(9406, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', '0', 'None', '152', '3', '155', '0', '101', 'BITS Pilani', 'EEE', '8', '10', '0')
(9407, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0')
(9408, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0')
(9409, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0')
(9410, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0')
(9411, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '110', 'Nirma Institute of Technology', 'Information Technology', '7.87', '10', '0')
(9412, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '3.5', '108', 'D J Sanghvi', 'Chemical Engineering', '67', '100', '0')
(9413, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0')
(9414, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0')
(9415, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0')
(9416, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(9417, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '154', '144', '298', '3', '98', 'Anna University', 'CSE', '75', '100', '0')
(9418, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3.5', '101', 'D j Sanghvi', 'computer engineering', '69', '100', '0')
(9419, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0')
(9420, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0')
(9421, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0')
(9422, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '165', '334', '3.5', '120', 'None', 'Electronics and Comm', '8.19', '10', '0')
(9423, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0')
(9424, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '166', '336', '3.5', '114', 'IIT Madras', 'Electrical Engineering', '6.7', '10', '7')
(9425, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '760', '590', '1350', '3.5', '110', 'VTU', 'Computer Science and Engineering', '80', '100', '0')
(9426, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0')
(9427, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0')
(9428, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '164', '153', '317', '4', '112', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.87', '10', '0')
(9429, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0')
(9430, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0')
(9431, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46')
(9432, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Science', '70', '100', '0')
(9433, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0')
(9434, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '110', 'VTU', 'Computer Science', '72', '100', '0')
(9435, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', '105', 'MSRIT', 'Computer Science', '75', '100', '0')
(9436, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '110', 'IIT Guwahati', 'Computer Science', '7.1', '10', '0')
(9437, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '5', '112', 'RNSIT', 'Information Science', '75', '100', '0')
(9438, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0')
(9439, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3.5', 'None', 'NIT Warangal', 'ECE', '7.83', '10', '0')
(9440, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '144', '313', '4', '102', 'Chulalongkorn', 'Mechanical Engineering', '3.34', '4', '0')
(9441, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0')
(9442, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22')
(9443, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15')
(9444, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '108', 'The Maharaja Sayajirao University', 'Electronics', '3.7', '4', '0')
(9445, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '155', '321', '2.5', '98', 'BITS Goa', 'Mechanical', '8.36', '10', '0')
(9446, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'Thapar University', 'Chemical Engineering Department', '7.1', '10', '0')
(9447, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0')
(9448, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '157', '324', '4', '105', 'Shah And anchor Kutchhi Engineering College', 'IT', '72.71', '100', '0')
(9449, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0')
(9450, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0')
(9451, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '158', '325', '5', '117', 'GGSIPU', 'Computer Science', '82', '100', '41')
(9452, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '170', '159', '329', '3', '112', 'MU', 'Electronics', '74', '100', '0')
(9453, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0')
(9454, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '660', '1440', '4', '117', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '78', '100', '0')
(9455, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0')
(9456, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0')
(9457, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0')
(9458, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0')
(9459, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '103', 'Khon Kaen University', 'Computer Engineering', '3.86', '4', '0')
(9460, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '167', '154', '321', '3.5', '112', 'Motilal Nehru National Institute of Technology', 'Electronics and Communication Engineering', '9.17', '10', '49')
(9461, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '3', 'None', 'IIT Guwahati', 'Mathematics and Computing', '7.56', '10', '0')
(9462, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0')
(9463, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0')
(9464, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0')
(9465, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0')
(9466, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3.5', '108', 'Sikkim Manipal Institute of Technology', 'CSE', '8.38', '10', '0')
(9467, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34')
(9468, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '160', '330', '4.5', '115', 'NIT Calicut', 'Computer Science and Engineering', '8.29', '10', '15')
(9469, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '540', '1320', '3', '93', 'NIT Jalandhar', 'Chemical Engineering', '7.3', '10', '0')
(9470, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0')
(9471, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '152', '314', '3.5', '115', 'PSG College of Technology', 'Mechanical', '8.34', '100', '0')
(9472, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '148', '318', '4', '108', 'SJCE', 'Electronics and Communication', '9.63', '10', '32')
(9473, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '159', '325', '3', '107', 'IIT Indore', 'Electrical Engineering', '8.64', '10', '0')
(9474, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '800', '530', '1330', '3.5', '110', 'NITK Surathkal', 'Mechanical Engineering', '8.34', '10', '0')
(9475, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0')
(9476, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '4.5', '114', 'KIIT', 'ECE', '9.13', '10', '0')
(9477, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '145', '315', '3', '108', 'Thapar University', 'Electronics and Communication', '8.52', '10', '0')
(9478, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '490', '1250', '3', '103', 'WBUT', 'MCA', '8', '10', '0')
(9479, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19')
(9480, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28')
(9481, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0')
(9482, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0')
(9483, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '165', '331', '5.5', '112', 'Manipal Institue of Technology', 'Information Technology', '7.99', '10', '0')
(9484, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '112', 'MU', 'Electronics', '70', '100', '0')
(9485, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0')
(9486, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '158', '324', '4.5', '113', 'NIT Calicut', 'Mechanical Engineering', '8.03', '10', '0')
(9487, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3', '98', 'KLUniversity', 'Computer science and engineering', '8.67', '10', '0')
(9488, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0')
(9489, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '103', 'NIT', 'Electrical Engineering', '65.2', '100', '0')
(9490, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Nuclear Engineering', 'Fall ', '2011', '760', '660', '1420', '4.5', '114', 'NIT Bhopal', 'Electrical Engineering', '7.3', '10', '0')
(9491, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0')
(9492, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30')
(9493, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0')
(9494, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '4', '110', 'PEC University of Technology', 'ECE', '9.2', '10', '0')
(9495, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12')
(9496, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30')
(9497, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0')
(9498, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0')
(9499, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '660', '1450', '4', '115', 'RNSIT', 'Electronics/communication', '77', '100', '0')
(9500, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0')
(9501, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0')
(9502, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(9503, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '102', 'CEG', 'Computer Science', '8.8', '10', '0')
(9504, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '104', 'Madras Institute of Technology', 'Production engg', '8.4', '10', '0')
(9505, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '152', '317', '4', '98', 'R V College of Engineering', 'ECE', '9.11', '10', '0')
(9506, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0')
(9507, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '159', '325', '3.5', '116', 'BITS Pilani', 'Electrical & Electronics Engineering', '7.58', '10', '0')
(9508, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0')
(9509, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0')
(9510, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0')
(9511, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '104', 'VIT University', 'Electronics & Instrumentation', '9.01', '10', '0')
(9512, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0')
(9513, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0')
(9514, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15')
(9515, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '112', 'Pune University', 'IT', '67.63', '100', '0')
(9516, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0')
(9517, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0')
(9518, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0')
(9519, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54')
(9520, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0')
(9521, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0')
(9522, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9')
(9523, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '111', 'BITS Pilani', 'Computer Science', '8.7', '10', '0')
(9524, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23')
(9525, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0')
(9526, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0')
(9527, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0')
(9528, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48')
(9529, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0')
(9530, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0')
(9531, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '630', '1380', '3.5', '110', 'SRM', 'ECE', '7.03', '10', '0')
(9532, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '98', 'S.V Engineering College', 'Electrical & Electronics Engg', '7.2', '10', '0')
(9533, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'IIT (BHU) Varanasi', 'Electrical', '7.91', '10', '0')
(9534, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '109', 'Thadomal Shahani Engineering College', 'Information Technology', '64', '100', '0')
(9535, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0')
(9536, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4', '119', 'NIT Karnataka', 'Electronics & Communication', '8.9', '10', '21')
(9537, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0')
(9538, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36')
(9539, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0')
(9540, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0')
(9541, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'VIT University', 'B.Tech Electronics and Communication', '8.99', '10', '0')
(9542, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0')
(9543, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0')
(9544, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'BESU Shibpur', 'Information Technology', '89', '100', '0')
(9545, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '157', '321', '3.5', '104', 'IIT Guwahati', 'Mechanical', '6.23', '10', '0')
(9546, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0')
(9547, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '155', '325', '3.5', '110', 'BITS Hyderabad', 'Electronics & Communication', '9.26', '10', '0')
(9548, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3', '110', 'Mukesh Patel School of Technology Management and Engineering', 'Information Technology', '3.22', '4', '0')
(9549, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0')
(9550, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '800', '670', '1470', '4', '114', 'University of Pune', 'Computer', '59', '100', '0')
(9551, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '156', '324', '4.5', '114', 'University of Pune', 'Mechanical Engg.', '77.35', '100', '12')
(9552, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0')
(9553, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36')
(9554, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0')
(9555, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0')
(9556, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0')
(9557, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0')
(9558, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24')
(9559, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0')
(9560, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '163', '330', '4', '111', 'BITS Pilani', 'BE EEE', '8.3', '100', '24')
(9561, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '153', '322', '3.5', '100', 'Thiagarajar College of engineering', 'ECE', '8.78', '10', '0')
(9562, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '170', '158', '328', '3.5', '113', 'NIT Warangal', 'Electronics and Communication Engg', '8.3', '10', '30')
(9563, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '5.5', '116', 'VIT University', 'ECE', '8.81', '10', '0')
(9564, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '610', '1400', '3', '108', 'JNTU', 'Information Technology', '79', '100', '0')
(9565, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '150', '315', '3.5', '104', 'BITS Hyderabad', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(9566, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0')
(9567, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0')
(9568, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '151', '315', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer Engineering', '76.2', '100', '0')
(9569, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Management', 'Fall ', '2015', '166', '159', '325', '4', '114', 'EEC', 'IT', '8.34', '10', '12')
(9570, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '163', '157', '320', '3.5', '100', 'VSS Univ of Technology', 'Mechanical Engineering', '7.68', '10', '77')
(9571, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'R V College of Engineering', 'Computer Science', '78', '100', '0')
(9572, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'VTU', 'Computer Science', '79.33', '100', '0')
(9573, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0')
(9574, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0')
(9575, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '152', '161', '313', '3', '105', 'PSG College of Technology', 'Computer Science & Engineering', '8.9', '10', '60')
(9576, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0')
(9577, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '166', '165', '331', '4', '112', 'NIT Calicut', 'Mechanical Engineering', '8.12', '10', '0')
(9578, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0')
(9579, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0')
(9580, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36')
(9581, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', 'None', '112', 'Coimbatore Insitute of Technology', 'Computer technology and Applications', '80', '100', '0')
(9582, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0')
(9583, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '102', 'Madras Institute of Technology', 'Computer Science', '8.9', '10', '0')
(9584, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '114', 'SIES Graduate School of Technology', 'Computer engineering', '70.68', '100', '0')
(9585, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0')
(9586, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0')
(9587, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0')
(9588, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0')
(9589, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '163', '142', '305', '3.5', '102', 'G. H. Patel College of Engineering and Technology', 'Mechatronics', '8.06', '10', '0')
(9590, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24')
(9591, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '150', '315', 'None', 'None', 'Punjabi University', 'B.tech', '7.55', '10', '0')
(9592, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '3', '105', 'ISM Dhanbad', 'Computer Science & Engineering', '7.83', '10', '0')
(9593, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '168', '154', '322', '4', '112', 'L D College Of Engineering', 'Electronics & Communication', '8.75', '10', '0')
(9594, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '160', '321', '4', '113', 'BITS Dubai', 'Computer Science', '9.07', '10', '0')
(9595, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '101', 'VRSEC', 'CSE', '86', '100', '0')
(9596, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0')
(9597, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '102', 'Pune University', 'Computer Science and engineering', '69.2', '100', '0')
(9598, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0')
(9599, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0')
(9600, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '4', '103', 'Thadomal Shahani Engineering College', 'EXTC', '0', '0', '0')
(9601, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'VTU', 'Computer Science', '82', '100', '0')
(9602, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', 'None', 'NIT Tirchy', 'Production Engineering', '8.96', '10', '0')
(9603, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0')
(9604, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0')
(9605, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '159', '321', '4', '115', 'VTU', 'Comp Science', '79', '100', '0')
(9606, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4.5', '109', 'MSRIT', 'CSE', '9.07', '10', '0')
(9607, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '114', 'Vidyalankar Institute of Technology', 'computer science', '67', '100', '36')
(9608, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '107', 'PSG College of Technology', 'B.E (CSE)', '8.8', '10', '0')
(9609, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '660', '1440', '3', '114', 'MU', 'electronics and telecomm', '71', '100', '0')
(9610, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0')
(9611, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '550', '1350', '3', '108', 'NITK Surathkal', 'ECE', '8.2', '10', '0')
(9612, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36')
(9613, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '153', '321', '3.5', '106', 'Manipal Institue of Technology', 'ECE', '8.62', '10', '0')
(9614, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0')
(9615, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0')
(9616, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '153', '322', '3.5', '108', 'NSIT', 'Maufacturing and Automation', '73', '100', '0')
(9617, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0')
(9618, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12')
(9619, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0')
(9620, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0')
(9621, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28')
(9622, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0')
(9623, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0')
(9624, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '113', 'GGSIPU', 'Electronics and Communication', '76', '100', '0')
(9625, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0')
(9626, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(9627, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '3.5', '104', 'Pune University', 'Computer', '66', '100', '0')
(9628, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0')
(9629, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0')
(9630, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0')
(9631, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '630', '1430', '4', '104', 'Anna University', 'ECE', '9.02', '10', '0')
(9632, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '580', '1370', '4.5', '114', 'VIT University', 'School Of Electrical Engineers', '8.85', '10', '0')
(9633, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '650', '1430', '3', '110', 'MU', 'IT', '74', '100', '0')
(9634, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0')
(9635, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32')
(9636, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0')
(9637, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0')
(9638, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '168', '156', '324', '5', '115', 'VTU', 'Information Science & Engineering', '8.66', '10', '0')
(9639, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '710', '1510', '4', '115', 'None', 'Electronics & Communication', '70', '100', '0')
(9640, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '155', '314', '4', '110', 'None', 'E&Tc;', '64', '100', '0')
(9641, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0')
(9642, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31')
(9643, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0')
(9644, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0')
(9645, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0')
(9646, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '166', '327', '4', '114', 'SSN College of Engineering', 'Computer Science Engineering', '8.06', '10', '0')
(9647, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0')
(9648, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '153', '317', 'None', '101', 'BITS Goa', 'Electrical & Electronics', '6.6', '10', '0')
(9649, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0')
(9650, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '410', '1190', 'None', '90', 'R V College of Engineering', 'Information Science & Engg', '78', '100', '0')
(9651, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0')
(9652, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0')
(9653, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0')
(9654, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0')
(9655, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0')
(9656, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0')
(9657, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '150', '319', '3.5', '110', 'NITK Surathkal', 'Information Technology', '8.92', '10', '0')
(9658, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'PESIT', 'ISE', '8.55', '10', '0')
(9659, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'IIT Roorkee', 'Mechanical & Industrial', '8', '10', '0')
(9660, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0')
(9661, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0')
(9662, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '4', '106', 'Pune University', 'computer', '67', '100', '0')
(9663, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'BVBCET', 'Computer science', '75.55', '100', '0')
(9664, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'IIT BHU', 'Electrical Engineering', '8.23', '10', '0')
(9665, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0')
(9666, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0')
(9667, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3.5', '101', 'Mepco Schlenk Engineering College', 'Electronics and Communication', '9', '10', '0')
(9668, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0')
(9669, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18')
(9670, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0')
(9671, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0')
(9672, 'Georgia Institute of Technology', '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.4', '10', '24')
(9673, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '4', '113', 'University of Mumbai', 'Computer', '68', '100', '0')
(9674, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3', '104', 'VIT', 'Informatin Technology', '9.72', '10', '0')
(9675, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24')
(9676, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(9677, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0')
(9678, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0')
(9679, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0')
(9680, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0')
(9681, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '3.5', '111', 'NIT Tirchy', 'E.C.E', '9.67', '10', '0')
(9682, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0')
(9683, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0')
(9684, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '560', '1300', '3', '103', 'The National Institute of Engineering', 'Information Science(same as Computer science differing in terms of electives towards the last 3 semesters of engineering)', '76.55', '100', '0')
(9685, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40')
(9686, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0')
(9687, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0')
(9688, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '170', '157', '327', '3.5', '112', 'IIT Madras', 'Electrical Engineering', '8.4', '10', '14')
(9689, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0')
(9690, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '98', 'Manipal Institue of Technology', 'Industrial and production', '9.01', '10', '0')
(9691, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24')
(9692, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '3.5', '109', 'BITS Pilani', 'Computer Science', '7.6', '10', '0')
(9693, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '107', 'PEC University of Technology', 'Electronics', '9.6', '10', '0')
(9694, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0')
(9695, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0')
(9696, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', '115', 'VIT', 'Computer Science', '8.8', '10', '0')
(9697, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '167', '333', '4.5', '113', 'Punjab Engineering College', 'Mechanical Engineering', '7.74', '10', '0')
(9698, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0')
(9699, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0')
(9700, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0')
(9701, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0')
(9702, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'COEP', 'Electronics and Telecommunication', '8.52', '10', '0')
(9703, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '116', 'COEP', 'Computer Engineering', '9.16', '10', '0')
(9704, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0')
(9705, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0')
(9706, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '610', '1410', '3', '112', 'IIT Kanpur', 'Civil Engineering', '8.4', '10', '0')
(9707, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42')
(9708, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '116', 'Anna University', 'IT', '8.97', '10', '0')
(9709, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30')
(9710, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0')
(9711, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '149', '305', '4', '108', 'MSRIT', 'Computer Science', '9.67', '10', '0')
(9712, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '113', 'MANIT Bhopal', 'Computer Science and Engineering', '8.89', '10', '0')
(9713, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '104', 'BIT Mesra', 'COMPUTER SCIENCE', '8.7', '10', '0')
(9714, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24')
(9715, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0')
(9716, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0')
(9717, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '158', '319', '4', '119', 'MU', 'Information Technology', '60', '100', '0')
(9718, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS/ EE', 'Fall ', '2015', '158', '169', '327', '4', '113', 'IIT Roorkee', 'Electrical', '7.66', '10', '32')
(9719, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '113', 'VIT', 'Computer Science', '8.92', '10', '0')
(9720, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0')
(9721, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0')
(9722, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0')
(9723, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '4', '103', 'MU', 'Computer', '66', '100', '0')
(9724, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '108', 'BITS Pilani', 'Computer Science', '6.8', '10', '0')
(9725, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17')
(9726, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29')
(9727, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '150', '164', '314', '3', '102', 'Shah And anchor Kutchhi Engineering College', 'Computers', '59.27', '100', '0')
(9728, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0')
(9729, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12')
(9730, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0')
(9731, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(9732, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '107', 'NIT Karnataka', 'IT', '8.98', '10', '0')
(9733, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4.5', '110', 'Sinhgad College of Engineering', 'Mechanical Engineering', '66', '100', '0')
(9734, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0')
(9735, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19')
(9736, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0')
(9737, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '160', '326', '4.5', '110', 'NIT Karnataka', 'Electronics and Communication Engineering', '7.75', '10', '0')
(9738, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0')
(9739, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '165', '159', '324', '4', '109', 'BITS Goa', 'Mechanical', '7.28', '10', '55')
(9740, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3.5', '103', 'NIT Rourkela', 'Computer Science and Engineering', '8.54', '10', '0')
(9741, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0')
(9742, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '4', '112', 'LNMIIT', 'CSE', '7.49', '10', '0')
(9743, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Data Science', 'Fall ', '2015', '167', '154', '321', '4', '117', 'VTU', 'ISE', '69', '100', '0')
(9744, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '150', '312', '4', '102', 'Sardar Patel College of Engineering', 'Electronics', '80.58', '100', '0')
(9745, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0')
(9746, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '3.5', 'None', 'University of Kerala', 'Computer Science and Engineering', '8.1', '10', '0')
(9747, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '168', '336', '4', '111', 'Sardar Patel College of Engineering', 'Electronics', '75.87', '100', '0')
(9748, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '162', '326', '4', '114', 'MU', 'IT', '76', '100', '24')
(9749, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '162', '330', '4', '113', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes & Automation', '72', '100', '46')
(9750, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0')
(9751, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22')
(9752, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '760', '600', '1360', '4', '113', 'Anna University', 'ECE', '9.1', '10', '0')
(9753, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '150', '307', '3.5', '101', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engineering', '9.2', '10', '0')
(9754, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0')
(9755, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44')
(9756, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24')
(9757, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '4', 'None', 'JNTU', 'Computer Science', '73.6', '100', '0')
(9758, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0')
(9759, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0')
(9760, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0')
(9761, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '450', '1170', '3.5', '107', 'VTU', 'Computer Science', '71', '100', '0')
(9762, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0')
(9763, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4.5', '114', 'COEP', 'Computer Engineering', '9.31', '10', '0')
(9764, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0')
(9765, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '570', '1350', '3.5', '95', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0')
(9766, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '3.5', '108', 'Pune University', 'Computer engg', '8.54', '10', '0')
(9767, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0')
(9768, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '160', '325', '4.5', '108', 'VTU', 'CSE', '8.46', '10', '0')
(9769, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0')
(9770, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0')
(9771, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mech and Elec', 'Fall ', '2012', '800', '570', '1370', '4', 'None', 'None', '0', '8.07', '10', '0')
(9772, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0')
(9773, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0')
(9774, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0')
(9775, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '4', '113', 'NIT Bhopal', 'Information Technology', '8.58', '10', '0')
(9776, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0')
(9777, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0')
(9778, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics & Communication', 'Spring ', '2014', '170', '144', '314', '3.5', '94', 'GCET V.V.Nagar', 'Electronics & Communication', '7.6', '10', '0')
(9779, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '760', '520', '1280', '4', '107', 'Anna University', 'EEE', '87.3', '100', '0')
(9780, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31')
(9781, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0')
(9782, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0')
(9783, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '161', '164', '325', '3.5', '111', 'Sathyabama University', 'Biotechnology', '81', '100', '0')
(9784, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '153', '322', '4', '118', 'NITK Surathkal', 'ECE', '8.84', '10', '0')
(9785, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '162', '330', '4', 'None', 'GGSIPU', 'ECE', '68', '100', '42')
(9786, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '3.5', '113', 'University of Alberta', 'Computing Science', '3.8', '4', '0')
(9787, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0')
(9788, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24')
(9789, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0')
(9790, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4.5', '105', 'BITS Pilani', 'Electrical & Electronics', '7.81', '10', '0')
(9791, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3.5', '96', 'Gautam Buddh Technical University', 'Information Technology', '73.52', '100', '0')
(9792, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'Thapar University', 'ECE', '8.77', '10', '0')
(9793, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0')
(9794, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '157', '159', '316', '3.5', '108', 'MU', 'I.T.', '72', '100', '0')
(9795, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3.5', '116', 'None', 'IT', '9.47', '10', '0')
(9796, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '3.5', '91', 'MU', 'Electronics and Telecommunication', '3.97', '4', '0')
(9797, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18')
(9798, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '105', 'SSN College of Engineering', 'Information technology', '8.73', '10', '0')
(9799, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0')
(9800, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2011', '780', '660', '1440', '3', '98', 'CEG', 'ECE', '9.13', '10', '0')
(9801, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0')
(9802, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '480', '1260', '3.5', '105', 'JNTU', 'EIE', '82.75', '100', '0')
(9803, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0')
(9804, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0')
(9805, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '148', '314', '4', '104', 'SJCE', 'CS', '8.73', '10', '0')
(9806, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0')
(9807, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2013', '160', '154', '314', '3.5', '103', 'SASTRA', 'Mechatronics', '8.79', '10', '0')
(9808, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '160', '328', '3.5', '106', 'Institute of Technology Nirma University', 'Instrumentation & Control', '7.81', '10', '0')
(9809, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0')
(9810, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0')
(9811, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0')
(9812, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0')
(9813, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3.5', '105', 'CEG', 'I.T', '8.45', '10', '0')
(9814, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'statistics', 'Fall ', '2014', '169', '153', '322', '3', '107', 'Bangalore Institute of Technology', 'ECE', '73', '100', '0')
(9815, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0')
(9816, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0')
(9817, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '720', '610', '1330', '4', '104', 'SASTRA', 'Mechanical Engineering', '9.04', '10', '0')
(9818, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0')
(9819, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '4', '103', 'PSG College of Technology', 'IT', '8.71', '10', '0')
(9820, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0')
(9821, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '152', '318', '4', '110', 'MU', 'Electronics and telecommunication', '67', '100', '0')
(9822, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '153', '318', '4', '119', 'CEG', 'Electronics and Communication Engineering', '9.26', '10', '0')
(9823, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0')
(9824, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0')
(9825, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3', '106', 'BMSCE', 'Electronics and Communication Engineering', '9.83', '10', '9')
(9826, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0')
(9827, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '164', '331', '4.5', '112', 'Jadavpur University', 'Mechanical Engineering', '8.56', '10', '24')
(9828, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '102', 'CEG', 'IT', '8.95', '10', '0')
(9829, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0')
(9830, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0')
(9831, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '149', '319', '3.5', '114', 'NIT Warangal', 'Computer Science and Engineering', '8.5', '10', '0')
(9832, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '163', '328', '5', '118', 'VTU', 'Electrical and Electronics Engineering', '73.7', '100', '0')
(9833, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0')
(9834, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '164', '334', '4', 'None', 'University of Mumbai', 'Electronics and Telecommunication', '68', '100', '12')
(9835, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '167', '159', '326', '3.5', '103', 'Anna University', 'AERONAUTICAL', '7.9', '10', '1')
(9836, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0')
(9837, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '167', '145', '312', '3', '99', 'Keshav memorial Institute of Technology Hyderabad', 'ECE', '79', '100', '0')
(9838, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24')
(9839, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0')
(9840, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0')
(9841, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0')
(9842, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '520', '1320', '3.5', '97', 'IET DAVV', 'Information Technology', '80', '100', '0')
(9843, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0')
(9844, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0')
(9845, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '600', '1390', '3', '101', 'SASTRA', 'Computer Science', '7.98', '10', '0')
(9846, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '161', '330', '3', '108', 'VNIT Nagpur', 'ECE', '9.36', '100', '24')
(9847, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0')
(9848, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0')
(9849, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24')
(9850, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0')
(9851, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0')
(9852, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0')
(9853, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0')
(9854, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '167', '155', '322', '4', '108', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.33', '10', '2')
(9855, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0')
(9856, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '3', '111', 'MU', 'Electronics and Telecommunication Engineering', '80', '100', '0')
(9857, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0')
(9858, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '520', '1270', '3.5', '116', 'Pune University', 'Computer Science', '59.9', '100', '0')
(9859, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '4', '111', 'BITS Pilani', 'Computer Science', '8.3', '10', '0')
(9860, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0')
(9861, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0')
(9862, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0')
(9863, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0')
(9864, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0')
(9865, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '520', '1320', '3.5', '109', 'SSN College of Engineering', 'Electronics and Communication', '80.02', '100', '0')
(9866, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '159', '327', '3', '105', 'CEG', 'ECE', '9.32', '10', '24')
(9867, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0')
(9868, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0')
(9869, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3.5', '111', 'R V College of Engineering', 'Electronics & Communication', '9.26', '10', '0')
(9870, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0')
(9871, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0')
(9872, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '4.5', '114', 'NSIT', 'Computer Engineering', '82.97', '100', '0')
(9873, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0')
(9874, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '750', '570', '1320', '3.5', '93', 'MU', 'Electronics and Telecommunication', '70.08', '100', '0')
(9875, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '145', '310', '3', '98', 'Anna University', 'Information Technology', '7.8', '10', '0')
(9876, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '690', '1490', '4', '116', 'MU', 'Mechanical Engineering', '64.42', '100', '0')
(9877, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '101', 'BITS Pilani', 'E.E.E', '8.3', '10', '0')
(9878, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '150', '313', '3', '102', 'Sri Jayachamarajendra College of Engineering', 'Electronics and communications', '9.17', '10', '0')
(9879, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '155', '322', 'None', 'None', 'NIT Warangal', 'Civil', '8.14', '10', '0')
(9880, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0')
(9881, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0')
(9882, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43')
(9883, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0')
(9884, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0')
(9885, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0')
(9886, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0')
(9887, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44')
(9888, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '169', '152', '321', '4.5', '100', 'BITS Pilani', 'BE (Civil)', '6.31', '10', '0')
(9889, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0')
(9890, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0')
(9891, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0')
(9892, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '5', '116', 'BITS Pilani', 'EEE', '8.44', '10', '0')
(9893, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '560', '1330', '3.5', '108', 'NIT Bhopal', 'Electrical Engineering', '8.61', '10', '0')
(9894, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '161', '324', '4.5', '107', 'MU', 'Electrical Engineering', '73.4', '100', '0')
(9895, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '4', '112', 'MSRIT', 'Computer Science and Engineering', '9.31', '10', '0')
(9896, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0')
(9897, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0')
(9898, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '550', '1320', '3', '110', 'Anna University', 'IT', '74', '100', '0')
(9899, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0')
(9900, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '148', '318', '3', '100', 'NIT Warangal', 'CSE', '7.96', '10', '24')
(9901, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '167', '149', '316', '4', '106', 'IIT Madras', 'Civil Engineering', '7.3', '10', '24')
(9902, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6')
(9903, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '4.5', '118', 'IIT X', 'CSE', '8.44', '10', '0')
(9904, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0')
(9905, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '166', '152', '318', '4', '103', 'NIT Rourkela', 'B.tech in Biomedical Engineering', '9.1', '10', '0')
(9906, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29')
(9907, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Manipal Institue of Technology', 'ECE', '8.51', '10', '0')
(9908, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '114', 'University of Mumbai', 'Electronics Engineering', '74.76', '100', '0')
(9909, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(9910, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0')
(9911, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '780', '550', '1330', '3.5', '106', 'NIT Karnataka', 'Computer Engineering', '8.05', '10', '0')
(9912, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0')
(9913, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '162', '326', '4', '109', 'PESIT', 'ECE', '8.45', '10', '24')
(9914, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '110', 'Sri Venkateswara College of Engineering', 'EEE', '83', '100', '36')
(9915, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2013', '163', '150', '313', '3', '91', 'UPTU', '0', '64', '100', '0')
(9916, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', 'None', '105', 'JNTU', 'IT', '70', '100', '0')
(9917, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '3.5', '112', 'VJTI', 'Computer', '8.6', '10', '0')
(9918, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0')
(9919, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'Jaypee Institute of Information Technology', 'CS', '8', '10', '0')
(9920, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '166', '159', '325', '3.5', '111', 'International Institute of Information Technology Hyderabad', 'Computer Science Dual Degree', '8.02', '10', '36')
(9921, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0')
(9922, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '155', '324', '3', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science & Engineering', '71.7', '100', '19')
(9923, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0')
(9924, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '146', '316', '4.5', '111', 'IIT Guwahati', 'ECE', '8.59', '10', '0')
(9925, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(9926, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0')
(9927, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0')
(9928, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0')
(9929, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '165', '332', '5.5', '114', 'Amrita School of Engineering', 'Computer Science', '9.41', '10', '0')
(9930, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '159', '329', '4', '114', 'None', 'mechanical', '9.71', '10', '0')
(9931, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0')
(9932, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0')
(9933, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(9934, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0')
(9935, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4.5', '117', 'VJTI', 'Computer Science', '8.7', '10', '0')
(9936, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '151', '316', '3.5', '101', 'IIT Roorkee', 'Electrical Engineering (Dual Degree)', '8.174', '10', '0')
(9937, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0')
(9938, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0')
(9939, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '470', '1220', '3', '108', 'NIT Hamirpur', 'CSE', '8.36', '10', '0')
(9940, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '154', '146', '300', 'None', 'None', 'Portland State University', 'ECE', '3.33', '4', '0')
(9941, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0')
(9942, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3.5', '117', 'Vishwakarma Institute of Technology', 'Computer Science', '9.65', '10', '0')
(9943, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2014', '166', '152', '318', '3.5', '105', 'Bangalore Institute of Technology', 'Electrical and Electronics', '79', '100', '0')
(9944, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '105', 'PSG College of Technology', 'Theoretical Computer Science (Department of Mathematics and Computer Applications)', '9.05', '10', '0')
(9945, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0')
(9946, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0')
(9947, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0')
(9948, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0')
(9949, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0')
(9950, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0')
(9951, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44')
(9952, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0')
(9953, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0')
(9954, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0')
(9955, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0')
(9956, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0')
(9957, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0')
(9958, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0')
(9959, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '153', '316', '4', '117', 'BITS Pilani', 'Electronics', '7.59', '10', '16')
(9960, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '164', '152', '316', '3', '100', 'Amrita School of Engineering', 'MECHANICAL ENGG', '8.4', '10', '0')
(9961, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4.5', '119', 'University of Mumbai', 'Computer Engg', '65', '100', '0')
(9962, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '163', '331', '5', '118', 'University of Pune', 'Mechanical Engineering', '73', '100', '0')
(9963, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '154', '320', '3', '106', 'M.V.S.R Engineering College', 'Information Technology', '90.8', '100', '0')
(9964, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0')
(9965, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0')
(9966, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0')
(9967, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0')
(9968, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '152', '319', '4', '107', 'Sardar Patel College of Engineering', 'Electronics Engineering', '73.5', '100', '0')
(9969, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26')
(9970, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '159', '158', '317', '4', '116', 'MU', 'Production Engineering', '74', '100', '0')
(9971, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0')
(9972, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '700', '1480', '4.5', '108', 'VIT', 'Electronics and Communication Engineering', '8.74', '10', '0')
(9973, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '670', '1470', '3.5', '102', 'None', '0', '72.5', '100', '0')
(9974, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0')
(9975, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0')
(9976, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '750', '1540', '4', '111', 'K J Somaiya College of Engiineering', 'Electronics', '66', '100', '0')
(9977, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '150', '317', '3', '99', 'International Institute of Information Technology Hyderabad', 'Computer Science', '8.7', '10', '0')
(9978, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '146', '299', '3', '84', 'PTU', 'ECE', '71.1', '10', '0')
(9979, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '150', '311', '3.5', '102', 'Manipal Institue of Technology', 'EEE', '8.6', '10', '0')
(9980, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'BITS Pilani', 'Electronics and Instrumentation', '0', '0', '0')
(9981, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0')
(9982, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '590', '1380', '3', '107', 'University of Pune', 'Computer Science', '70', '100', '0')
(9983, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5', '117', 'JNTU', 'Electronics and Communication Engineering', '85.9', '100', '0')
(9984, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0')
(9985, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21')
(9986, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '161', '328', '4', '116', 'None', 'Mechanical', '9.17', '10', '0')
(9987, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '114', 'MSRIT', 'Computer Science', '9.12', '10', '0')
(9988, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '153', '317', '3', '100', 'Sathyabama University', 'Mech & Prod', '82', '100', '24')
(9989, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '3', '95', 'MU', 'Electronics', '62', '100', '0')
(9990, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'University of Mumbai', 'computer', '75', '100', '0')
(9991, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0')
(9992, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '114', 'NITK Surathkal', 'Mechanical', '8.86', '10', '24')
(9993, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '670', '1450', '5', '116', 'MU', 'Computer Science', '66.22', '100', '0')
(9994, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '164', '328', '4', '112', 'Manipal Institue of Technology', 'Computer Sceince', '8.1', '10', '26')
(9995, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0')
(9996, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0')
(9997, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '149', '310', '3.5', '105', 'Gujarat Technological University', 'Electronics and Communication', '8.83', '10', '0')
(9998, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0')
(9999, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0')
(10000, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '109', 'CEG', 'Computer Science and Engineering', '8.58', '10', '0')
(10001, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '148', '310', '3.5', '99', 'IIT Hyderabad', 'Mechanical Engineering', '8', '10', '0')
(10002, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0')
(10003, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42')
(10004, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '108', 'Jaypee Institute of Information Technology', 'CSE', '7.5', '10', '0')
(10005, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '157', '323', '4', '104', 'NIT Warangal', 'Computer Science & Engineering', '8.76', '10', '54')
(10006, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4.5', '110', 'VTU', 'COMPUTER SCIENCE', '82.75', '100', '0')
(10007, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '107', 'Fr. Conceicao Rodrigues College of Engineering', 'Computers', '62.72', '100', '0')
(10008, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0')
(10009, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24')
(10010, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0')
(10011, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '4', '117', 'Siliguri Institute of Technology', 'Computer Science', '8.81', '10', '0')
(10012, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37')
(10013, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0')
(10014, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0')
(10015, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'MU', 'COMPUTER SCIENCE', '69.3', '100', '0')
(10016, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '156', '322', '3.5', '107', 'PSG College of Technology', 'Electrical Engineering', '9.51', '10', '0')
(10017, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '157', '156', '313', '4', '106', 'Manipal Institue of Technology', 'IT', '8.1', '10', '0')
(10018, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0')
(10019, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '114', 'Amrita Vishwa Vidhyapeetham', 'Computer Science & Engineering', '7.2', '10', '0')
(10020, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0')
(10021, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '3', '112', 'The LNM Institute of Information Technology', 'Communication and computer engg', '9.19', '10', '0')
(10022, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0')
(10023, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'VNIT Nagpur', 'ECE', '9.12', '10', '0')
(10024, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0')
(10025, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0')
(10026, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '600', '1330', '4', '113', 'BMSCE', 'telecommunication engineering', '9.4', '10', '0')
(10027, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(10028, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '800', '530', '1330', '3', '105', 'MU', 'Electronics and Telecommunication', '71.37', '100', '0')
(10029, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0')
(10030, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '154', '321', '4', '111', 'IIT Madras', 'Mechanical Engineering', '8.66', '10', '0')
(10031, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '112', 'COEP', 'Electronics and Telecommunication', '9.32', '10', '0')
(10032, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '740', '530', '1270', '3.5', '111', 'VIT University', 'Biomedical', '9.04', '10', '0')
(10033, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'IIT (BHU) Varanasi', 'Mechanical', '8.25', '10', '12')
(10034, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0')
(10035, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0')
(10036, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12')
(10037, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0')
(10038, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0')
(10039, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0')
(10040, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0')
(10041, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0')
(10042, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4.5', '112', 'BITS Pilani', 'ComputerScience', '5.71', '10', '0')
(10043, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '3.5', '108', 'Manipal Institue of Technology', 'Computer Science & Engineering', '3', '4', '0')
(10044, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45')
(10045, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '114', 'NIT Durgapur', 'ECE', '8.05', '10', '0')
(10046, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '159', '321', '4', '109', 'PESIT', 'Information Science', '8.7', '10', '24')
(10047, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '167', '157', '324', '4', 'None', 'BITS Pilani', 'Electronics and Instrumentation', '8.14', '10', '0')
(10048, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'DA-IICT', 'ICT', '8', '10', '0')
(10049, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', 'None', 'None', 'CoE Trivandrum', 'Electrical & Electronics Engineering', '8.12', '10', '0')
(10050, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0')
(10051, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3.5', '115', 'R V College of Engineering', 'Mechanical Engineering', '9.06', '10', '0')
(10052, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0')
(10053, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '153', '319', '3.5', '106', 'K J Somaiya College of Engiineering', 'Computers', '67', '100', '0')
(10054, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'COEP', 'Computer Engineering & IT', '8.4', '10', '0')
(10055, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0')
(10056, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0')
(10057, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '109', 'CEG', 'Computer Science & Engineering', '9.32', '10', '24')
(10058, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '158', '317', 'None', 'None', 'Madras Institute of Technology', 'Computer Science', '7.762', '10', '0')
(10059, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '560', '1310', '5', '114', 'Kolhapur Institute of Technology', 'Computer Science and Engg', '65', '100', '0')
(10060, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2014', '168', '156', '324', '3', '116', 'IIT Roorkee', 'Mechanical Engineering', '8.5', '10', '0')
(10061, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(10062, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0')
(10063, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '3', '113', 'SSN College of Engineering', 'CSE', '85.26', '100', '0')
(10064, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16')
(10065, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '105', 'BITS Hyderabad', 'Mechanical Engineering', '9.66', '10', '6')
(10066, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0')
(10067, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '4', '114', 'MU', 'Information Technology', '60', '100', '0')
(10068, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '107', 'BITS Pilani', 'Computer science', '7.5', '10', '0')
(10069, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50')
(10070, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '156', '324', '4.5', '102', 'MIT College of Engineering', 'Information Technology', '63.12', '100', '0')
(10071, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0')
(10072, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '170', '147', '317', '4', '99', 'Anna University', 'Electronics & Instrumentation Engineering', '8.98', '10', '0')
(10073, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '104', 'MU', 'Electronics and Telecommunication', '76', '100', '0')
(10074, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0')
(10075, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '114', 'NITAllahabad', 'Electrical', '8.54', '10', '0')
(10076, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '163', '330', '3.5', '113', 'NIT Srinagar', 'ECE', '8.57', '10', '0')
(10077, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0')
(10078, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0')
(10079, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '600', '1390', '4', '112', 'NIT Silchar', 'Computer Science', '7.92', '10', '0')
(10080, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '580', '1380', '4.5', '115', 'NITT', 'Instrumentation and Control Engg', '8.55', '10', '0')
(10081, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '650', '1440', 'None', 'None', 'MSRIT', 'ECE', '9.39', '10', '0')
(10082, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '530', '1300', '3', '92', 'PSG College of Technology', 'ECE', '9.26', '10', '0')
(10083, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '109', 'Anna University', 'Information Technology', '78', '100', '0')
(10084, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '163', '145', '308', '4', '100', 'VIT Pune', 'Industrial Engineering', '8.97', '10', '0')
(10085, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '680', '1460', '4', '110', 'Anna University', 'Mechanical', '85', '100', '0')
(10086, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '167', '160', '327', '3.5', '113', 'BITS Goa', 'Electronics and Instrumentation', '8.54', '10', '15')
(10087, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '119', 'MU', 'Electronics', '66.95', '100', '0')
(10088, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0')
(10089, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', 'None', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes and Automation Engineering', '77.9', '100', '0')
(10090, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '100', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '70', '100', '0')
(10091, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '159', '320', '3.5', '111', 'VIT University', 'ECE', '8.58', '10', '0')
(10092, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '106', 'Osmania University', 'Information Technology', '84', '100', '18')
(10093, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0')
(10094, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12')
(10095, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '146', '313', '3.5', '105', 'VIT', 'BTech CSE', '9.22', '10', '0')
(10096, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10097, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '156', '323', '3.5', '105', 'Government College of Engineering Amravati', 'Computer Science', '8.73', '10', '0')
(10098, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '620', '1420', '3.5', '105', 'Osmania University', 'Mech', '8.47', '10', '0')
(10099, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2015', '159', '150', '309', '3.5', '104', 'VTU', 'Electronics & Telecommunication', '80', '100', '42')
(10100, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2')
(10101, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '116', 'BNMIT', 'ISE', '75', '100', '15')
(10102, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0')
(10103, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0')
(10104, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '160', '324', '4', '116', 'VIT', 'Mechanical Engineering', '9.16', '10', '0')
(10105, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0')
(10106, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0')
(10107, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '99', 'Anna University', 'CSE', '81', '100', '0')
(10108, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '580', '1370', '3', '102', 'IIIT Hyderabad', 'Computer Science', '8.67', '10', '0')
(10109, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '159', '317', '3', '109', "Lingaya's University", 'ECE', '7.98', '10', '0')
(10110, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0')
(10111, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0')
(10112, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '156', '322', '4', '99', 'PSG College of Technology', 'Mechanical Engineering', '8.86', '10', '0')
(10113, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0')
(10114, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '113', 'VIT University', 'Electronics and Instrumentation', '8.98', '10', '0')
(10115, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '3.5', '99', 'IITB MTech', 'CSE', '9.33', '10', '0')
(10116, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0')
(10117, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42')
(10118, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '161', '331', '3.5', '118', 'National Institue of Technology Karnataka', 'Computer Science and engineering', '8.72', '10', '0')
(10119, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0')
(10120, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '3', '101', 'GITAM', 'Information Technology', '8.6', '10', '0')
(10121, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42')
(10122, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0')
(10123, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '107', 'Madras Institute of Technology', 'Information Technology', '8.66', '10', '0')
(10124, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '580', '1380', '4', '117', 'Anna University', 'Electronics and Instrumentation', '9.7647', '10', '0')
(10125, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0')
(10126, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2016', '164', '149', '313', '4', '100', 'Anna University', 'Computer Science', '8.89', '10', '21')
(10127, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0')
(10128, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '700', '1470', '4', 'None', 'SASTRA', 'mechanical', '7.55', '100', '0')
(10129, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0')
(10130, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10131, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0')
(10132, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '550', '1340', '4.5', '112', 'ITM Gurgaon', 'Electronics and Communication', '73.3', '100', '0')
(10133, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '156', '147', '303', '3', '95', 'Osmania University', 'Mechanical', '67', '100', '69')
(10134, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0')
(10135, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49')
(10136, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0')
(10137, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0')
(10138, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0')
(10139, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '760', '490', '1250', '3', '93', 'VTU', 'Eⅇ', '73.4', '100', '0')
(10140, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '68.9', '100', '0')
(10141, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '105', 'HBTI', 'Computer Science & Engg', '82', '100', '0')
(10142, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '660', '420', '1080', '3.5', '110', 'Amravati University', 'Electronics & Telecommunication', '3.64', '4', '0')
(10143, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '3', '99', 'Madras Institute of Technology', 'ECE', '8.5', '10', '0')
(10144, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0')
(10145, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0')
(10146, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3.5', '107', 'Delhi College Of Engineeing', 'ELECTRICAL ENGINEERING', '77', '100', '0')
(10147, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31')
(10148, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3', '99', 'Anna University', 'CSE', '8.8', '10', '0')
(10149, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3', '102', 'University of Pune', 'Computer science', '67', '100', '0')
(10150, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19')
(10151, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '4', '117', 'MU', 'BE Information Technology', '66', '100', '0')
(10152, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0')
(10153, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0')
(10154, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3', '114', 'VIT Pune', 'Computer Engineering', '68', '100', '0')
(10155, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0')
(10156, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '660', '1440', '5', '102', 'Pune University', 'Electronics', '9.1', '10', '0')
(10157, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '800', '1590', '4', '111', 'I.E.T D.A.V.V.', 'Computer Engineering', '72', '100', '0')
(10158, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0')
(10159, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0')
(10160, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '4', '112', 'Anna University', 'Computer Science', '8.45', '10', '0')
(10161, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '156', '326', '4', '115', 'NIT Rourkela', 'Electronics and Communication', '9.61', '10', '0')
(10162, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0')
(10163, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0')
(10164, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0')
(10165, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0')
(10166, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(10167, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0')
(10168, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3', '113', 'VTU', 'BE MS', '8.5', '10', '18')
(10169, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0')
(10170, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0')
(10171, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0')
(10172, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0')
(10173, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0')
(10174, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '155', '325', '3', '105', 'BITS Pilani', 'Electrical and Electronics', '7.23', '10', '0')
(10175, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0')
(10176, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '116', 'PICT', 'Information Technology', '3.56', '4', '0')
(10177, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0')
(10178, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0')
(10179, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.25', 'None', 'IIT Ropar', 'Mechanical Engineering', '8.87', '10', '0')
(10180, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0')
(10181, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '115', 'SSN College of Engineering', 'Computer Science and Engineering', '83', '100', '0')
(10182, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3.5', '117', 'IIT', 'ECE', '9.1', '10', '0')
(10183, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '153', '320', '4.5', '108', 'VIT Pune', 'Industrial Engineering', '8.54', '10', '24')
(10184, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '105', 'Rajiv Gandhi Technical University', 'IT', '78.69', '100', '0')
(10185, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0')
(10186, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3.5', '101', 'PICT', 'CS/IT', '3.23', '4', '0')
(10187, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60')
(10188, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '620', '1400', '5.5', '114', 'University of Massachesetts Amherst', 'Computer Engineering', '3.63', '4', '0')
(10189, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0')
(10190, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0')
(10191, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '710', '540', '1250', '4', '267', 'University of Mumbai', 'Computers', '58.5', '100', '0')
(10192, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '117', 'L D College Of Engineering', 'Civil Engineering', '8.49', '10', '0')
(10193, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0')
(10194, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '460', '1240', '4.5', '116', 'VIT', 'Information Technology', '9.36', '10', '0')
(10195, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0')
(10196, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0')
(10197, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0')
(10198, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '410', '1210', '5', '253', 'IT BHU', 'Electrical Engg', '8.41', '10', '0')
(10199, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0')
(10200, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0')
(10201, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '3.5', '111', 'Pune University', 'Information Technology', '70', '100', '0')
(10202, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '112', 'VNR VJIET', 'CSE', '74', '100', '0')
(10203, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12')
(10204, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4.5', '108', 'MU', 'Electronics Engg', '68', '100', '0')
(10205, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2011', '800', '550', '1350', '4.5', '110', 'not IIT', 'CBE', '75', '100', '0')
(10206, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0')
(10207, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0')
(10208, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '680', '1480', '4', '107', 'NIT Nagpur', 'mechanical engg.', '8.17', '10', '0')
(10209, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0')
(10210, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', 'None', '113', 'Lovely Professional University', 'CSE', '9.3', '10', '30')
(10211, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0')
(10212, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0')
(10213, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Madras', 'Electrical Engineering', '7.1', '10', '0')
(10214, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48')
(10215, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0')
(10216, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0')
(10217, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '95', 'NIT Tirchy', 'CSE', '8.75', '10', '42')
(10218, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0')
(10219, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10220, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0')
(10221, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '500', '1300', '3.5', '107', 'MG University', 'Electronics and Communication', '73', '100', '0')
(10222, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0')
(10223, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0')
(10224, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '161', '330', '4.5', '116', 'BITS Pilani', 'Civil Engineering', '7.89', '10', '0')
(10225, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0')
(10226, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0')
(10227, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '111', 'PICT', 'Computer Science', '3.3', '4', '0')
(10228, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', 'None', 'BMSCE', 'Computer Science', '8.67', '10', '0')
(10229, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0')
(10230, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0')
(10231, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0')
(10232, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Financial Engineering', 'Spring ', '2014', '161', '157', '318', '3.5', '99', 'Anna University', 'EEE', '82.4', '100', '0')
(10233, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0')
(10234, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12')
(10235, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '165', '158', '323', '4', '115', 'VTU', 'Computer Science', '73', '100', '0')
(10236, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0')
(10237, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '550', '1350', '3', '107', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Communication Engineering', '8.8', '10', '0')
(10238, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '160', '324', '3', '106', 'VIT', 'ECE', '8.5', '10', '0')
(10239, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10')
(10240, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '102', 'PESIT', 'Computer Science', '8.72', '10', '0')
(10241, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0')
(10242, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '570', '1350', '3.5', '116', 'VIT', 'Mechanical', '8.23', '10', '0')
(10243, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0')
(10244, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0')
(10245, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '152', '319', '3', '108', 'Government College of Engineering Aurangabad', 'Mechanical', '7.976', '10', '0')
(10246, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0')
(10247, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0')
(10248, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10')
(10249, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '103', 'R V College of Engineering', 'CSE', '8.95', '10', '0')
(10250, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '470', '1270', '3.5', '110', 'NIT - Bhopal', 'ECE', '7.99', '10', '0')
(10251, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0')
(10252, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '150', '319', '4', '107', 'BITS Pilani', 'Computer Science', '7.5', '10', '0')
(10253, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2006', '800', '650', '1450', '5.5', '290', 'MVSR', 'Production Engineering', '84', '100', '0')
(10254, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0')
(10255, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0')
(10256, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '162', '325', '4', '119', 'NITC', 'Computer Science', '8.17', '10', '0')
(10257, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0')
(10258, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Computer Science and Engineering', '75', '100', '36')
(10259, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10260, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '154', '319', 'None', '106', 'GGSIPU', 'IT', '78', '100', '0')
(10261, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '640', '1420', '3', '104', 'NIT', 'Mechanical Engineering', '9.1', '10', '0')
(10262, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '3.5', '107', 'GGSIPU', 'IT', '79', '100', '0')
(10263, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'BMSCE', 'Telecommunication Engineering', '73.91', '100', '0')
(10264, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '660', '1430', '4', '113', 'MU', 'Mechanical Engineering', '66', '100', '0')
(10265, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0')
(10266, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0')
(10267, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0')
(10268, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54')
(10269, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VIT', 'Information Technology', '8.6', '10', '0')
(10270, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '167', '158', '325', '4', '111', 'MSRIT', 'Electrical and Electronics Enginnering', '7.84', '10', '0')
(10271, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0')
(10272, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0')
(10273, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0')
(10274, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '157', '157', '314', '4.5', '115', 'Anna University', 'Computer science', '81', '100', '0')
(10275, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0')
(10276, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2013', '800', '630', '1430', '3.5', '117', 'VTU', 'EE', '87', '100', '0')
(10277, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0')
(10278, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '800', '560', '1360', '3.5', '108', 'CEG', 'ECE', '8.908', '10', '0')
(10279, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3.5', '108', 'NIT Karnataka', 'NIT Karnataka Surathkal', '7.67', '10', '0')
(10280, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24')
(10281, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '154', '316', '4', '104', 'NIT - Surat', 'Mechanical Engineering', '8.61', '10', '0')
(10282, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4.5', '115', 'SJCE', 'Computer Science', '8.8', '10', '41')
(10283, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0')
(10284, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', 'None', 'IIT Madras', 'Mechanical', '8.7', '10', '0')
(10285, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', 'None', 'None', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '6.6', '10', '0')
(10286, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '780', '600', '1380', '4', '108', 'D J Sanghvi', 'Chemical Engineering', '67.34', '100', '0')
(10287, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '700', '1470', '4', '119', 'VTU', 'CS', '75', '100', '0')
(10288, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0')
(10289, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20')
(10290, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0')
(10291, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '155', '322', '4', '107', 'NIT Calicut', 'Mechanical', '9.36', '10', '20')
(10292, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0')
(10293, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0')
(10294, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '160', '152', '312', '3.5', '112', 'Anna University', 'Electronics and Communication Engineering', '9.09', '10', '0')
(10295, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '161', '329', '4', '109', 'VTU', 'Information Science', '71.08', '100', '72')
(10296, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3.5', '106', 'CMRIT', 'Computer Science', '73', '100', '0')
(10297, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0')
(10298, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0')
(10299, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '770', '600', '1370', '3', '98', 'Manipal Institue of Technology', 'ECE', '8.23', '10', '36')
(10300, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0')
(10301, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0')
(10302, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0')
(10303, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '5', '102', 'VTU', 'CSE', '73', '100', '0')
(10304, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '5', '116', 'DA-IICT', 'Information and Communication Technology', '8.48', '10', '0')
(10305, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0')
(10306, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '152', '170', '322', '3.5', '107', 'VTU', 'Electronics and communication', '9', '10', '0')
(10307, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '113', 'VIT', 'CSE', '8.83', '10', '0')
(10308, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electronics & Communications Engg', '8.45', '10', '15')
(10309, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '730', '670', '1400', '3.5', '101', 'CEG', 'Mechanical', '8.61', '10', '0')
(10310, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '115', 'VIT University', 'Computer Science', '8.8', '10', '0')
(10311, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0')
(10312, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '730', '470', '1200', '3.5', '107', 'BITS Pilani', 'Biological Sciences and Computer Science (Dual)', '7.86', '10', '0')
(10313, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0')
(10314, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0')
(10315, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0')
(10316, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10317, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34')
(10318, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0')
(10319, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '3', '103', 'NIT Kurukshetra', 'ECE', '8.41', '10', '0')
(10320, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0')
(10321, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0')
(10322, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '106', 'IIIT Allahabad', 'Information Technology', '8.5', '10', '0')
(10323, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0')
(10324, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '3.5', '104', 'The LNM Institute of Information Technology', 'CSE', '7.66', '10', '0')
(10325, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computational Science and Engineering', 'Fall ', '2014', '167', '164', '331', '4', '115', 'VIT', 'Mechanical Engineering (Energy Specialization)', '8.53', '10', '0')
(10326, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0')
(10327, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0')
(10328, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '730', '1530', '5.5', '290', 'MU', 'Computer Engg.', '63', '100', '0')
(10329, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0')
(10330, 'Georgia Institute of Technology', '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', '2017', '170', '150', '320', '3.5', '105', 'BIT Mesra', 'Mechanical Engineering', '80.02', '100', '0')
(10331, 'Harvard University', '15', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2015', '168', '156', '324', '4.5', '118', 'School of Planning and Architecture New Delhi India', 'Architecture', '74', '100', '0')
(10332, 'Harvard University', '15', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'NIT Calicut', 'Biotechnology', '9.1', '10', '0')
(10333, 'Harvard University', '15', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Harvard University', 'Graduate School of Design', '0', '0', '0')
(10334, 'Harvard University', '15', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0')
(10335, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Kharagpur', 'Electrical Engg', '8.42', '10', '0')
(10336, 'Harvard University', '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '158', '149', '307', '4', 'None', 'Indian Institute of Information and Technology design and manufacturing', 'ECE', '8', '10', '0')
(10337, 'Harvard University', '15', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '540', '1340', '4.5', '113', 'BITS Pilani', 'Department of Physics', '8.79', '10', '0')
(10338, 'Harvard University', '15', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0')
(10339, 'Harvard University', '15', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2013', '163', '154', '317', '4', '113', 'ISM Dhanbad', 'Environmental Science and Engineering', '8.94', '10', '0')
(10340, 'Harvard University', '15', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '114', 'Manipal Institue of Technology', 'ECE', '9.58', '10', '0')
(10341, 'Harvard University', '15', 'Reject', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0')
(10342, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0')
(10343, 'Harvard University', '15', 'Reject', 'MS', 'Computational/Systems BIology', 'Fall ', '2014', '165', '166', '331', 'None', '117', 'Not too well known', 'Electronics and Electrical Engineering', '7.74', '10', '0')
(10344, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '550', '1330', '1330', '112', 'BITS Goa', 'Information Systems', '8.6', '10', '0')
(10345, 'Harvard University', '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0')
(10346, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0')
(10347, 'Harvard University', '15', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0')
(10348, 'Harvard University', '15', 'Reject', 'MS', 'optics', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'electronics and communication engg.', '75', '100', '0')
(10349, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'Electronics and Communication engg', '74', '100', '0')
(10350, 'Harvard University', '15', 'Reject', 'MS', 'Biostatistics', 'Fall ', '2011', '800', '670', '1470', 'None', '115', 'Indian Statistical Institute', 'Mathematical Statistics and Probability', '0', '0', '0')
(10351, 'Harvard University', '15', 'Reject', 'MS', 'Learning Sciences', 'Fall ', '2011', '720', '630', '1350', '3.5', '112', 'University of Delhi', 'English Hons.', '0', '0', '0')
(10352, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0')
(10353, 'Harvard University', '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0')
(10354, 'Harvard University', '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0')
(10355, 'Harvard University', '15', 'Reject', 'PhD', 'Electronics & Communication', 'Fall', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani, Pilani Campus', 'EEE', '8.1', '10', '0')
(10356, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', '2018', '155', '147', '302', '4', '101', 'R.M.K. Engineering College', 'ECE', '8.11', '10', '15')
(10357, 'Illinios Institute of Technology, Chicago', '16', 'Admit', 'MS', 'Civil Engineering', 'Fall', '2016', '161', '148', '309', '3.5', '102', 'RV College of Engineering', 'Civil Engineering', '8.44', '10', '0')
(10358, 'Indiana University, Bloomington', '17', 'Reject', 'Masters', 'Computer Science', 'Fall', '2016', '166', '144', '310', '3', '92', 'Shri guru govind singh college of engineering, nanded', 'Computer Science', '8.59', '10', '0')
(10359, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2018', '167', '152', '319', '3', '108', 'Shri Ramdeobaba College of Engineering', 'Mechanical Engineering', '8.43', '10', '18')
(10360, 'Iowa State University', '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2015', '167', '157', '324', '0', '102', '-1', '-1', '-1', '-1', '0')
(10361, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6')
(10362, 'Kansas State University', '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6')
(10363, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0')
(10364, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '105', 'Delhi College Of Engineeing', 'Computer Science', '0', '0', '0')
(10365, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '100', 'GITAM', 'Computer Science', '9.21', '10', '0')
(10366, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7')
(10367, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0')
(10368, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '690', '1490', '4.5', '117', 'BITS Goa', 'Electronics & Instrumentation Physics', '0', '0', '0')
(10369, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '48', '34', '82', '5', '100', 'NIT Surat', 'Mech Engg', '64', '100', '0')
(10370, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0')
(10371, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0')
(10372, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0')
(10373, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0')
(10374, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0')
(10375, 'New York University', '20', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0')
(10376, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0')
(10377, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0')
(10378, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30')
(10379, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0')
(10380, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0')
(10381, 'New York University', '20', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '155', '319', '3', '110', 'COEP', 'Electrical Engineering', '7.23', '10', '10')
(10382, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0')
(10383, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0')
(10384, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0')
(10385, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0')
(10386, 'New York University', '20', 'Admit', 'MS', 'Organizational Behavior', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'Penn State', 'Psychology/Business', '3.9', '4', '0')
(10387, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3', '102', 'Malwa Institute', 'Computer Science', '67', '100', '0')
(10388, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24')
(10389, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0')
(10390, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0')
(10391, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0')
(10392, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10393, 'New York University', '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0')
(10394, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0')
(10395, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0')
(10396, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0')
(10397, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '550', '1320', '3.5', '106', 'Galgotia college of engineering and technology II UPTU', 'Computer science', '72', '100', '0')
(10398, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0')
(10399, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '4', '113', 'University of Pune', 'Computer Engineering Dept.', '64.6', '100', '3')
(10400, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '510', '1310', '3.5', '100', 'MDU', 'IT', '69', '100', '0')
(10401, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0')
(10402, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '164', '151', '315', 'None', '101', 'None', 'CS', '72', '100', '64')
(10403, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6')
(10404, 'New York University', '20', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '152', '149', '301', '3', '95', 'PSG College of Technology', 'BIOTECHNOLOGY', '8.2', '100', '0')
(10405, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '4', '116', 'GGSIPU', 'IT', '76', '100', '0')
(10406, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0')
(10407, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '630', '1430', '4', '120', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '66.67', '100', '0')
(10408, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '570', '1360', '4', '283', 'VTU', 'Information Science', '74.5', '100', '0')
(10409, 'New York University', '20', 'Admit', 'MS', 'physical therapy', 'Fall ', '2011', '580', '530', '1110', '3.5', '116', 'Christian Medical College Vellore', '0', '3.96', '4', '0')
(10410, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '111', 'MU', 'Computer Science', '64', '100', '0')
(10411, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '730', '520', '1250', '3.5', '104', 'SSN College of Engineering', '0', '75', '100', '0')
(10412, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0')
(10413, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '110', 'NIT Calicut', 'CSE', '6.91', '10', '0')
(10414, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '95', 'Jaypee Institute of Information Technology', 'computer science', '6.83', '10', '0')
(10415, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0')
(10416, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10417, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0')
(10418, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '490', '1290', '3', 'None', 'None', '0', '0', '0', '0')
(10419, 'New York University', '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0')
(10420, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '750', '580', '1330', '5.5', '112', 'Anna University', 'Information Technology', '81', '100', '0')
(10421, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0')
(10422, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '600', '1290', '3.5', '94', 'K J Somaiya College of Engiineering', 'Computer Science', '64', '100', '0')
(10423, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0')
(10424, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', 'None', 'Western Michigan University', 'Computer Science', '3.2', '4', '0')
(10425, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '146', '310', '3', '91', 'JNTU', 'Electrical Engineering', '78.33', '100', '0')
(10426, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '138', '300', '3', '84', 'Anna University', 'mechanical', '7.8', '10', '0')
(10427, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '630', '1360', '3', '97', 'VJTI', 'Computer Engineering', '7.8', '10', '0')
(10428, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'Andhra University', 'CS', '75', '100', '0')
(10429, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0')
(10430, 'New York University', '20', 'Admit', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0')
(10431, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10432, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0')
(10433, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0')
(10434, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0')
(10435, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0')
(10436, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0')
(10437, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0')
(10438, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36')
(10439, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12')
(10440, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0')
(10441, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0')
(10442, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0')
(10443, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0')
(10444, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0')
(10445, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0')
(10446, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '158', '321', '4', '99', 'Amity University', 'Information Technology', '7.55', '10', '0')
(10447, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0')
(10448, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '4', '107', 'Nirma Institute of Technology', 'Computer Engineering', '7.5', '10', '0')
(10449, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2014', '155', '150', '305', '3.5', '104', 'BITS Pilani', 'EEE', '7.22', '100', '0')
(10450, 'New York University', '20', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0')
(10451, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0')
(10452, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0')
(10453, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '157', '320', '4', '109', 'Punjabi University', 'Computer', '6.55', '10', '0')
(10454, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall', 'None', '168', '166', '334', '3.5', '116', 'MU', 'IT', '7.1', '10', '0')
(10455, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30')
(10456, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0')
(10457, 'New York University', '20', 'Admit', 'MS', 'Journalism', 'Fall ', '2015', '161', '162', '323', '4.5', '115', 'Visvesvaraya NIT Nagpur', 'Electronics and Communication Engineering', '7.36', '10', '66')
(10458, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '560', '1340', '5', '114', 'MU', 'IT', '63.2', '100', '0')
(10459, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '109', 'PTU', 'Electrical Engineering', '76.3', '100', '0')
(10460, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0')
(10461, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '750', '450', '1200', '3', '90', 'Andhra University', 'Information Technology', '86', '100', '0')
(10462, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0')
(10463, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '114', 'UPTU', 'CS', '0', '0', '0')
(10464, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0')
(10465, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '390', '1190', '3', '97', 'UIR', 'MIS', '3.67', '4', '0')
(10466, 'New York University', '20', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3')
(10467, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0')
(10468, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0')
(10469, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '600', '1400', '3.5', '108', 'ITM Gurgaon', 'Electronics and Communications', '67', '100', '0')
(10470, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '153', '318', '3', '108', 'Symbiosis Institute of Technology', 'Computer Science', '3.305', '4', '8')
(10471, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '500', '1250', '4.5', '111', 'VIT University', 'B.Tech Bioinformatics', '8.88', '10', '0')
(10472, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0')
(10473, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '3.5', '109', 'CEG', 'Computer Science and Engineering', '7.9', '10', '0')
(10474, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'MU', 'Information Technology', '0', '0', '0')
(10475, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '770', '540', '1310', '4', '112', 'Vishwakarma Institute of Technology', 'Computer', '64', '100', '0')
(10476, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0')
(10477, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2015', '163', '155', '318', '3', '98', 'SSN College of Engineering', 'EEE', '8.2', '10', '12')
(10478, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0')
(10479, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Ecole des Mines', 'Computer Science', '0', '0', '0')
(10480, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0')
(10481, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '162', '151', '313', '3.5', '104', 'JNTU', 'ECE', '70', '100', '0')
(10482, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '147', '308', '3', '100', 'Anna University', 'B.E in Computer Science', '8.51', '10', '0')
(10483, 'New York University', '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16')
(10484, 'New York University', '20', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', '98', 'JSS Noida', 'mechanical', '0', '0', '0')
(10485, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0')
(10486, 'New York University', '20', 'Admit', 'MS', 'Real Estate Finance & Development', 'Fall ', '2011', '800', '320', '1120', '3.5', '104', 'NIT Warangal', 'Civil Engineering', '7.3', '10', '0')
(10487, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3', '100', 'None', '0', '0', '0', '0')
(10488, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '168', '334', '4.5', 'None', 'University of Mumbai', 'Electronics & Telecommunications', '66', '100', '0')
(10489, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0')
(10490, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '158', '323', '3.5', '112', 'Thapar University', 'Computer Science', '7.91', '10', '38')
(10491, 'New York University', '20', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0')
(10492, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0')
(10493, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '109', 'Sardar Patel University', 'I.T', '9.3', '10', '0')
(10494, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0')
(10495, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10496, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2013', '169', '159', '328', '4.5', '114', 'BITS Pilani', 'Computer Science', '7.63', '10', '4')
(10497, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '590', '1390', '3', '100', 'IP University Delhi', 'CSE', '74', '100', '0')
(10498, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '293', '141', '434', '3', 'None', 'dr d.y patil institute of engineering and techonology', 'electronics', '55', '100', '0')
(10499, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '440', '1210', '4', '105', 'MU', 'Information Technology', '65', '100', '0')
(10500, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12')
(10501, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0')
(10502, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0')
(10503, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0')
(10504, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '156', '325', '4', '107', 'NIT Tirchy', 'ECE', '7.95', '10', '14')
(10505, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0')
(10506, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '155', '155', '310', '3', '105', 'Atharva College', 'electronics & telecommunication', '65.2', '100', '0')
(10507, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0')
(10508, 'New York University', '20', 'Admit', 'MS', 'Information Technology', 'Spring ', '2013', '800', '450', '1250', '4', '108', 'Nirma Institute of Technology', 'IT', '7.78', '10', '0')
(10509, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0')
(10510, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0')
(10511, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '550', '1300', '3.5', '106', 'MU', 'Computer', '55.6', '100', '0')
(10512, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0')
(10513, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0')
(10514, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54')
(10515, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3.5', '110', 'GITAM', 'CSE', '8.22', '10', '0')
(10516, 'New York University', '20', 'Admit', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0')
(10517, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0')
(10518, 'New York University', '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Spring ', '2016', '164', '148', '312', '4', '103', 'VTU', 'CS', '63', '100', '68')
(10519, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '160', '323', '3', '109', 'IIIT Hyderabad', 'Electronics & Communication', '7.6', '10', '0')
(10520, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2015', '165', '155', '320', '3', '102', 'Hi-Tech College of Engineering and Technology', 'Computer Science', '67.26', '100', '54')
(10521, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42')
(10522, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0')
(10523, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '152', '317', '3.5', '106', 'MNNIT', 'Civil Engineering', '7.1', '10', '0')
(10524, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24')
(10525, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '145', '308', '3', '93', 'Chitkara University', 'CSE', '7.05', '10', '0')
(10526, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '148', '310', '4.5', '7', 'Manipal Institue of Technology', 'IT', '7.62', '10', '60')
(10527, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0')
(10528, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0')
(10529, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24')
(10530, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '470', '1260', '3', 'None', 'Techno India Salt Lake Kolkata', 'Electronics and Instrumentation Engineering', '8.4', '10', '0')
(10531, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0')
(10532, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42')
(10533, 'New York University', '20', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '161', '156', '317', '3.5', '105', 'Nagpur University', '0', '75.5', '10', '0')
(10534, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'Pune University', 'Electronics', '54', '100', '0')
(10535, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring', 'None', '800', '630', '1430', '3', '105', 'PEC University of Technology', 'Electrical', '8.69', '10', '0')
(10536, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0')
(10537, 'New York University', '20', 'Admit', 'MS', 'Finance', 'Fall ', '2013', '800', '600', '1400', '4', '104', 'NIT', 'Civil', '7.8', '10', '0')
(10538, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0')
(10539, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '108', 'VTU', 'Electronics', '68', '100', '0')
(10540, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0')
(10541, 'New York University', '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36')
(10542, 'New York University', '20', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8')
(10543, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33')
(10544, 'New York University', '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '156', '320', '3.5', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '6.5', '10', '19')
(10545, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0')
(10546, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0')
(10547, 'New York University', '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '147', '311', '4', '103', 'MU', 'Electronics', '60', '100', '42')
(10548, 'New York University', '20', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0')
(10549, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0')
(10550, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '550', '1280', '3.5', '105', 'IGIT', 'CSE', '73.8', '100', '0')
(10551, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10552, 'New York University', '20', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0')
(10553, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', 'None', '95', 'JMIT Radaur', 'CS', '71', '100', '0')
(10554, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '157', '319', '3', '112', 'Nirma Institute of Technology', 'Instrumentation and Control', '7.8', '10', '12')
(10555, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0')
(10556, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0')
(10557, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '91', 'SSN College of Engineering', 'Computer Science', '7.2', '10', '0')
(10558, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0')
(10559, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '600', '1400', '3', 'None', 'VTU', 'Computer Science', '79', '100', '0')
(10560, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0')
(10561, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '105', 'IIT Delhi', 'Chemical Engg', '6.7', '10', '0')
(10562, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51')
(10563, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '100', 'VIT', 'E.C.E', '8.64', '10', '0')
(10564, 'New York University', '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2015', '158', '154', '312', 'None', '102', 'Osmania University', 'Mechanical Engineering', '76', '100', '0')
(10565, 'New York University', '20', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2015', '162', '162', '324', '5', 'None', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '78', '100', '52')
(10566, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '108', 'Techno. Inst. of Tech. Bhopal', 'Computer Science', '76', '100', '0')
(10567, 'New York University', '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '710', '1510', '5.5', '116', 'NSIT', 'Information Technology', '71.2', '100', '0')
(10568, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '540', '1340', '3', '101', 'Ajay Kumar Garg Engineering College', 'CS', '78.6', '100', '0')
(10569, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '600', '800', '1400', '3.5', '110', 'MU', 'Comp Engg', '68.67', '100', '0')
(10570, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '151', '318', '3', '7', 'Manipal Institue of Technology', 'ICT', '8', '10', '0')
(10571, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3', '101', 'University of Mumbai', 'Computer Science', '66.2', '100', '0')
(10572, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '700', '1500', 'None', '101', 'CEG', 'MSc Computeer Science', '9.02', '10', '32')
(10573, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0')
(10574, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '35', '85', '5', '112', 'MU', 'Electronics', '61', '100', '0')
(10575, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0')
(10576, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0')
(10577, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36')
(10578, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '145', '310', '3', 'None', 'Pune University', 'ECE', '66', '100', '62')
(10579, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57')
(10580, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '161', '327', '3', '111', 'VTU', 'Computer Science', '65', '100', '0')
(10581, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0')
(10582, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '470', '1270', 'None', '94', 'VTU', 'INFORMATION SCIENCE', '80', '100', '0')
(10583, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '69', '100', '0')
(10584, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0')
(10585, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '650', '1380', '4', '108', 'MU', 'Computer Engineering', '58', '100', '0')
(10586, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0')
(10587, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '167', '156', '323', '4', '107', 'SRM', 'CSE', '7.8', '10', '10')
(10588, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0')
(10589, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '162', '158', '320', '4', '105', 'GGSIPU', 'IT', '70.25', '100', '0')
(10590, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '111', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73.5', '100', '0')
(10591, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '162', '324', '4', '108', 'JNTU', 'EIE', '67', '100', '0')
(10592, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0')
(10593, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0')
(10594, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0')
(10595, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0')
(10596, 'New York University', '20', 'Admit', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0')
(10597, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0')
(10598, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '98', 'PESIT', 'CS', '8.16', '10', '0')
(10599, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0')
(10600, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '154', '323', '4', '117', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '8.2', '10', '0')
(10601, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0')
(10602, 'New York University', '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '780', '380', '1160', '3', '103', 'CEG', 'Comp Science dept', '7', '10', '0')
(10603, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0')
(10604, 'New York University', '20', 'Admit', 'MS', 'Human Resources', 'Fall ', '2011', '650', '570', '1220', '3.5', '113', 'University of Mumbai', 'Management', '67', '100', '0')
(10605, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '630', '1370', '3.5', '112', 'VTU', 'Information Science', '64', '100', '0')
(10606, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0')
(10607, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0')
(10608, 'New York University', '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '790', '480', '1270', '3', '100', 'Sir MVIT', 'CS', '75', '100', '0')
(10609, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '650', '1400', '4', '114', 'Anna University', 'CS', '75.3', '100', '0')
(10610, 'New York University', '20', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '154', '156', '310', '3', '110', 'Bangalore Institute of Technology', 'electronics', '66', '100', '0')
(10611, 'New York University', '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0')
(10612, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '600', '1370', '4.5', '116', 'Nirma Institute of Technology', 'EC', '7.96', '10', '0')
(10613, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '680', '1470', '3', '107', 'University of Mumbai', 'i.t.', '65.94', '100', '0')
(10614, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0')
(10615, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16')
(10616, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0')
(10617, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '4.5', '109', 'Bharati Vidyapeeth', 'Electronics', '63.6', '100', '0')
(10618, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '105', 'None', 'CSE', '7.9', '10', '0')
(10619, 'New York University', '20', 'Admit', 'MS', 'advertising', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Osmania University', 'Mathematics Statisitcs and Computer Science', '3.92', '10', '0')
(10620, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0')
(10621, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '114', 'NIT Tirchy', 'ECE', '8.75', '10', '0')
(10622, 'New York University', '20', 'Admit', 'MS', 'None', 'Fall ', '2015', 'None', 'None', '0', 'None', '110', 'VTU', 'Electrical & Electronics', '72', '100', '0')
(10623, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0')
(10624, 'New York University', '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0')
(10625, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '136', '139', '275', '1.5', 'None', 'JNTU', 'Computer science', '6.02', '10', '0')
(10626, 'New York University', '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '161', '158', '319', '4', '110', 'CEG', 'Computer Science and Engineering', '9.35', '10', '0')
(10627, 'New York University', '20', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0')
(10628, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '600', '1350', '3', '105', 'None', '0', '8.5', '10', '0')
(10629, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0')
(10630, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0')
(10631, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0')
(10632, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '73', '100', '0')
(10633, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '4.5', '108', 'NIT Silchar', 'Computer Science', '8.53', '10', '20')
(10634, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0')
(10635, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '154', '321', '3', '112', 'Jaypee Institute of Information Technology', 'I.T', '8.2', '10', '0')
(10636, 'New York University', '20', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '168', '161', '329', '4', '109', 'CoE Trivandrum', 'EE', '8.29', '10', '0')
(10637, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0')
(10638, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21')
(10639, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '103', 'Punjab Technical University', 'Information Technology', '77', '100', '42')
(10640, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0')
(10641, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '740', '1540', '5.5', '290', 'MU', 'computers', '60', '100', '0')
(10642, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0')
(10643, 'New York University', '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0')
(10644, 'New York University', '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0')
(10645, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0')
(10646, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0')
(10647, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58')
(10648, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29')
(10649, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'MU', 'Computer', '67', '100', '0')
(10650, 'New York University', '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0')
(10651, 'New York University', '20', 'Admit', 'MS', 'Information Management', 'Fall ', '2015', '163', '153', '316', '3.5', '103', 'None', '0', '0', '0', '0')
(10652, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '114', 'Anna University', 'CSE', '77', '100', '0')
(10653, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0')
(10654, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0')
(10655, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'Guru Gobind Singh Indraprashta University', 'B.Tech (CSE)', '80.3', '100', '0')
(10656, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0')
(10657, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3.5', '114', 'NIT Warangal', 'EEE', '7.57', '10', '0')
(10658, 'New York University', '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0')
(10659, 'New York University', '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0')
(10660, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0')
(10661, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '790', '450', '1240', '4', '107', 'NMIMS', 'Computer Science', '3.62', '4', '0')
(10662, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Fall ', '2014', '166', '160', '326', '3.5', '109', 'None', 'computer science', '7.94', '10', '0')
(10663, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0')
(10664, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36')
(10665, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0')
(10666, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'VIT University', 'CSE', '9.14', '10', '0')
(10667, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '530', '1330', '4', '110', 'IIT BHU', 'CSE', '7.96', '100', '0')
(10668, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '450', '1180', '3', '104', 'VTU', 'Electrical & Electronics', '61', '100', '0')
(10669, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24')
(10670, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '101', 'University of Mumbai', 'Computers', '63', '100', '0')
(10671, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0')
(10672, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0')
(10673, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '147', '150', '297', 'None', '93', 'DEVI AHILYA VISHWAVIDYALAYA INDORE', 'IIPS', '9.39', '10', '0')
(10674, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', 'None', 'VJTI', 'Computer Engg', '8.3', '10', '0')
(10675, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0')
(10676, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '110', 'MGU', 'CSE', '71', '100', '0')
(10677, 'New York University', '20', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0')
(10678, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0')
(10679, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0')
(10680, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0')
(10681, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0')
(10682, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0')
(10683, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3.5', '111', 'University of Mumbai', 'Computer Engineering', '67', '100', '0')
(10684, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0')
(10685, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0')
(10686, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0')
(10687, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0')
(10688, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16')
(10689, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0')
(10690, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0')
(10691, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0')
(10692, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0')
(10693, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0')
(10694, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '580', '1370', '4', 'None', 'VTU', 'Computer Science', '8.11', '10', '0')
(10695, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0')
(10696, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0')
(10697, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0')
(10698, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '158', '314', '4', '105', 'KIIT', 'Computer Science', '7.16', '10', '31')
(10699, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87')
(10700, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0')
(10701, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '4.5', '117', 'Thadomal Shahani Engineering College', 'Information Technology', '60', '100', '0')
(10702, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '146', '306', '3', '100', 'GGSIPU', 'Computer Sceince & Engg.', '77', '100', '0')
(10703, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21')
(10704, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0')
(10705, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0')
(10706, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0')
(10707, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0')
(10708, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2012', '162', '152', '314', '4', '101', 'VESIT', 'Information Technology', '65.6', '100', '0')
(10709, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0')
(10710, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46')
(10711, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0')
(10712, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52')
(10713, 'New York University', '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0')
(10714, 'New York University', '20', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '710', '540', '1250', '4.5', '110', 'Pune University', '0', '78', '100', '0')
(10715, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0')
(10716, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '112', 'Maharishi Dayanand University', 'Computer Science', '71', '100', '0')
(10717, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0')
(10718, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24')
(10719, 'New York University', '20', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0')
(10720, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0')
(10721, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3')
(10722, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0')
(10723, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15')
(10724, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0')
(10725, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60')
(10726, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '158', '149', '307', '3.5', '104', 'MPSTME NMIMS University Mumbai', 'Computer Engineering', '2.99', '4', '0')
(10727, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0')
(10728, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0')
(10729, 'New York University', '20', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0')
(10730, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '101', 'R.V.R&J.C-ANU;', 'CSE', '85.72', '100', '0')
(10731, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0')
(10732, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0')
(10733, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '159', '157', '316', '3', '105', 'MU', 'Information Technology', '61.46', '100', '0')
(10734, 'New York University', '20', 'Reject', 'MS', 'mba', 'Fall', 'None', '1310', '550', '1860', '3.5', 'None', 'SASTRA', 'COMPUTER SCIENCE', '7.8', '10', '0')
(10735, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '690', '1460', '3', '100', 'Punjab Technical University', 'CS', '85.8', '100', '0')
(10736, 'New York University', '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '91', 'Kurukshetra University', 'Dept. of Instrumentation', '7.3', '10', '0')
(10737, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28')
(10738, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '155', '147', '302', '3', '95', 'University of Mumbai', 'Computer Engg', '62', '100', '0')
(10739, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0')
(10740, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Computer Sciences', '81', '100', '0')
(10741, 'New York University', '20', 'Reject', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0')
(10742, 'New York University', '20', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2012', '159', '165', '324', '4', '118', 'MSRIT', 'Computer Science and Engineering', '74', '100', '0')
(10743, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0')
(10744, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30')
(10745, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0')
(10746, 'New York University', '20', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0')
(10747, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0')
(10748, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19')
(10749, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'Information science', '73', '100', '0')
(10750, 'New York University', '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0')
(10751, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0')
(10752, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0')
(10753, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24')
(10754, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '153', '319', '3.5', '95', 'BITS Pilani', 'Computer Science', '6.5', '10', '0')
(10755, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '145', '305', '3', '103', 'Anna University', 'Electronics & Communication', '65', '100', '0')
(10756, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48')
(10757, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0')
(10758, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '159', '145', '304', '3.5', '105', 'MITCOE Pune University', 'Information Technology', '65.56', '100', '0')
(10759, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31')
(10760, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0')
(10761, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0')
(10762, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0')
(10763, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0')
(10764, 'New York University', '20', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0')
(10765, 'New York University', '20', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2014', '166', '162', '328', '4', '114', 'Biju Patnaik University of Technology', 'EEE', '8.3', '10', '0')
(10766, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3.5', '106', 'Coimbatore Insitute of Technology', 'Comp Sci', '9.24', '10', '0')
(10767, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0')
(10768, 'New York University', '20', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '155', '150', '305', '3', '106', 'West Bengal University Of Technology', 'Instrumentation and Control', '8.5', '10', '26')
(10769, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0')
(10770, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '154', '314', '3', '100', 'JNTU', 'Computer science', '75', '100', '0')
(10771, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0')
(10772, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58')
(10773, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0')
(10774, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0')
(10775, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '103', 'MPSTME NMIMS', 'IT', '3.85', '4', '0')
(10776, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0')
(10777, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0')
(10778, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0')
(10779, 'New York University', '20', 'Reject', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24')
(10780, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0')
(10781, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0')
(10782, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0')
(10783, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0')
(10784, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0')
(10785, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0')
(10786, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '92', 'Bangalore University', 'Computer Science', '73', '100', '0')
(10787, 'New York University', '20', 'Reject', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0')
(10788, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '3.5', '104', 'NIT Jalandhar', 'CSE', '7.73', '10', '0')
(10789, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0')
(10790, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24')
(10791, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0')
(10792, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0')
(10793, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0')
(10794, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0')
(10795, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '151', '314', '3.5', 'None', 'PICT', 'computer', '58', '100', '0')
(10796, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0')
(10797, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0')
(10798, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0')
(10799, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '3.5', '108', 'VESIT', 'Computer', '69.69', '100', '0')
(10800, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '3.5', '93', 'SKIT', 'CS', '65', '100', '0')
(10801, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0')
(10802, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0')
(10803, 'New York University', '20', 'Reject', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25')
(10804, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'IS', '73', '100', '0')
(10805, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0')
(10806, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0')
(10807, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0')
(10808, 'New York University', '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0')
(10809, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0')
(10810, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0')
(10811, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0')
(10812, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '690', '610', '1300', '4', '111', 'University of Mumbai', 'Information Technology', '58', '100', '0')
(10813, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0')
(10814, 'New York University', '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0')
(10815, 'New York University', '20', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18')
(10816, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', 'None', '166', '155', '321', '4', '109', 'Siddaganga Institue of Technology', 'Electronics & Communication', '71', '100', '0')
(10817, 'New York University', '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0')
(10818, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '-1', '-1', '-1', '-1', '97', 'Visvesvaraya Technological University', 'Computer Science', '73', '100', '29')
(10819, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '151', '318', '3.5', '105', 'Vellore Institute of Technology', 'Computer Science', '8.99', '10', '17')
(10820, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '154', '321', '4', '103', 'Acropolis Institute of Technology & Research', 'Information Technology', '7.4', '10', '0')
(10821, 'New York University', '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '158', '148', '306', '4', '105', 'KIIT University', 'Computer Science', '8.65', '10', '0')
(10822, 'NYU Tandon School of Engineering', '21', 'Admit', 'MS', 'Computer Science', 'Fall', '2017', '168', '157', '325', '3', '115', 'Gitam University', 'Computer Science', '8.5', '10', '0')
(10823, 'Pennsylvania State University', '22', 'Admit', 'MSc', 'Industrial Engineering', 'Fall', '2017', '170', '155', '325', '3.5', '111', 'Sardar Patel College Of Engineering, (SPCE), Andheri', 'Mechanical Engineering', '8.73', '10', '15')
(10824, 'Rochester Institute of Technology', '23', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', '2016', '170', '156', '326', '3', '104', 'Pdpu', 'Mechanical Engineering', '8.3', '10', '0')
In [14]:
cursor.execute("ALTER Table Student drop column University_Name")
for x in cursor:
    print(x)
In [16]:
cursor.execute("select * from recruiter")
for x in cursor:
    print(x)
('1', 'Cognizant Technology Solutions', 1, 12681, '$92,766', '32')
('10', 'Hcl America', 10, 4113, '$99,754', '25')
('11', 'Accenture', 11, 3830, '$140,893', '20')
('12', 'IBM', 12, 3800, '$126,521', '59')
('13', 'Deloitte Consulting', 13, 3756, '$119,341', '41')
('14', 'Intel', 14, 3367, '$127,627', '26')
('15', 'Capgemini', 15, 3325, '$102,410', '1')
('16', 'Wal-Mart Associates', 16, 3218, '$133,510', '35')
('17', 'Jpmorgan Chase', 17, 2987, '$133,103', '60')
('18', 'Wipro', 18, 2858, '$80,871', '50')
('19', 'Tekorg', 19, 2755, '$80,529', '62')
('2', 'Amazon', 2, 11486, '$126,163', '65')
('20', 'Compunnel Software Group', 20, 2231, '$108,016', '14')
('21', 'Qualcomm Technologies', 21, 2167, '$152,754', '26')
('22', 'Salesforce.Com', 22, 2164, '$141,276', '41')
('23', 'Tech Mahindra', 23, 2107, '$94,298', '23')
('24', 'Cisco Systems', 24, 2013, '$145,750', '48')
('25', 'Goldman Sachs &', 25, 1579, '$134,689', '15')
('3', 'Tata Consultancy Services', 3, 9822, '$93,484', '17')
('4', 'Google', 4, 9421, '$156,793', '26')
('5', 'Microsoft', 5, 7329, '$146,569', '65')
('6', 'Facebook', 6, 6090, '$175,750', '58')
('7', 'Ernst & Young', 7, 5797, '$118,653', '48')
('8', 'Infosys', 8, 5649, '$92,689', '51')
('9', 'Apple', 9, 4239, '$168,416', '65')
In [17]:
cursor.execute("CREATE TABLE Recruiter_Details (Recruiter_ID varchar(255), Recruiter_Name varchar(255))")
Out[17]:
0
In [19]:
RecruiterDetails_df=pd.read_csv("Final_recruiter.csv")
RecruiterDetails_df
Out[19]:
Recruiter_ID Recruiter_Name Recruiter_Ranking Number_of_LCA Average_Salary University_ID
0 1 Cognizant Technology Solutions 1 12681 $92,766 32
1 10 Hcl America 10 4113 $99,754 25
2 11 Accenture 11 3830 $140,893 20
3 12 IBM 12 3800 $126,521 59
4 13 Deloitte Consulting 13 3756 $119,341 41
5 14 Intel 14 3367 $127,627 26
6 15 Capgemini 15 3325 $102,410 1
7 16 Wal-Mart Associates 16 3218 $133,510 35
8 17 Jpmorgan Chase 17 2987 $133,103 60
9 18 Wipro 18 2858 $80,871 50
10 19 Tekorg 19 2755 $80,529 62
11 2 Amazon 2 11486 $126,163 65
12 20 Compunnel Software Group 20 2231 $108,016 14
13 21 Qualcomm Technologies 21 2167 $152,754 26
14 22 Salesforce.Com 22 2164 $141,276 41
15 23 Tech Mahindra 23 2107 $94,298 23
16 24 Cisco Systems 24 2013 $145,750 48
17 25 Goldman Sachs & 25 1579 $134,689 15
18 3 Tata Consultancy Services 3 9822 $93,484 17
19 4 Google 4 9421 $156,793 26
20 5 Microsoft 5 7329 $146,569 65
21 6 Facebook 6 6090 $175,750 58
22 7 Ernst & Young 7 5797 $118,653 48
23 8 Infosys 8 5649 $92,689 51
24 9 Apple 9 4239 $168,416 65
In [20]:
for i,row in RecruiterDetails_df.iterrows():
    cursor.execute("INSERT INTO recruiter_details values (%s,%s)", (int(row['Recruiter_ID']),row['Recruiter_Name']))
uni_recomm.commit()

cursor.execute("SELECT * from recruiter_details")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
(('1', 'Cognizant Technology Solutions'), ('10', 'Hcl America'), ('11', 'Accenture'), ('12', 'IBM'), ('13', 'Deloitte Consulting'), ('14', 'Intel'), ('15', 'Capgemini'), ('16', 'Wal-Mart Associates'), ('17', 'Jpmorgan Chase'), ('18', 'Wipro'), ('19', 'Tekorg'), ('2', 'Amazon'), ('20', 'Compunnel Software Group'), ('21', 'Qualcomm Technologies'), ('22', 'Salesforce.Com'), ('23', 'Tech Mahindra'), ('24', 'Cisco Systems'), ('25', 'Goldman Sachs &'), ('3', 'Tata Consultancy Services'), ('4', 'Google'), ('5', 'Microsoft'), ('6', 'Facebook'), ('7', 'Ernst & Young'), ('8', 'Infosys'), ('9', 'Apple'))
In [21]:
cursor.execute("ALTER Table recruiter drop column Recruiter_Name")
for x in cursor:
    print(x)
In [24]:
cursor.execute("select * from recruiter")
for x in cursor:
    print(x)
('1', 1, 12681, '$92,766', '32')
('10', 10, 4113, '$99,754', '25')
('11', 11, 3830, '$140,893', '20')
('12', 12, 3800, '$126,521', '59')
('13', 13, 3756, '$119,341', '41')
('14', 14, 3367, '$127,627', '26')
('15', 15, 3325, '$102,410', '1')
('16', 16, 3218, '$133,510', '35')
('17', 17, 2987, '$133,103', '60')
('18', 18, 2858, '$80,871', '50')
('19', 19, 2755, '$80,529', '62')
('2', 2, 11486, '$126,163', '65')
('20', 20, 2231, '$108,016', '14')
('21', 21, 2167, '$152,754', '26')
('22', 22, 2164, '$141,276', '41')
('23', 23, 2107, '$94,298', '23')
('24', 24, 2013, '$145,750', '48')
('25', 25, 1579, '$134,689', '15')
('3', 3, 9822, '$93,484', '17')
('4', 4, 9421, '$156,793', '26')
('5', 5, 7329, '$146,569', '65')
('6', 6, 6090, '$175,750', '58')
('7', 7, 5797, '$118,653', '48')
('8', 8, 5649, '$92,689', '51')
('9', 9, 4239, '$168,416', '65')
In [63]:
NewProfessor_df=pd.read_csv("Professor_Final.csv")
NewProfessor_df
Out[63]:
ID University_ID Professors
0 1 58 Pieter Abbeel, Rediet Abebe, Ahmed Alaa, Elad ...
1 2 36 Titan Alon,James Andreoni, Kate Antonovics, Da...
2 3 2 Jacob Abraham, Maruthi Akella, Deji Akinwande,...
3 4 26 Elizabeth Reese, Paula Moya, Heike Daldrup-Lin...
4 5 42 Abadi Daniel J., Abbasi Hossein, Abed Eyad, Ab...
5 6 41 Butler Wingfield Kim, Butts Daniel, Cable\tJoh...
6 7 48 Victor Adamchik, Leonard M Adleman, Murali Ann...
7 8 6 Abbaszadegan Morteza, Abbott Joshua, Aberle Ja...
8 9 1 Mehdi Abedi, Emad Aboelela, Gregory D. Abowd, ...
9 10 61 S. Sebnem Ahiska King, Karen Chen, Jingyan Don...
10 11 62 Lo’ay Abusalah, Rashid Ansari, Jezekiel Ben-Ar...
11 12 63 Patricia A. Young, Zane L. Berge, Francis M. H...
12 13 47 Scott Solomon, Cheryl Hall, David Ponton, Nico...
13 14 51 Abbas Waseem, Ackerman Robert, Adams Stephanie...
14 15 4 Keith Alford, Nick Armstrong, Kristen Aust, Th...
15 16 64 ELIZABETH ANDERSON, CHARLOTTE ADAMS, ALYSSA AN...
16 17 23 Ali Tosyali, Edwin N. Torres, Rick Mislan, Mik...
In [64]:
lst_col = 'Professors' 
In [65]:
x = NewProfessor_df.assign(**{lst_col:NewProfessor_df[lst_col].str.split(',')})
In [66]:
x
Out[66]:
ID University_ID Professors
0 1 58 [Pieter Abbeel, Rediet Abebe, Ahmed Alaa, E...
1 2 36 [Titan Alon, James Andreoni, Kate Antonovics,...
2 3 2 [Jacob Abraham, Maruthi Akella, Deji Akinwan...
3 4 26 [Elizabeth Reese, Paula Moya, Heike Daldrup-...
4 5 42 [Abadi Daniel J., Abbasi Hossein, Abed Eyad,...
5 6 41 [Butler Wingfield Kim, Butts Daniel, Cable\t...
6 7 48 [Victor Adamchik, Leonard M Adleman, Murali ...
7 8 6 [Abbaszadegan Morteza, Abbott Joshua, Aberle...
8 9 1 [Mehdi Abedi, Emad Aboelela, Gregory D. Abow...
9 10 61 [S. Sebnem Ahiska King, Karen Chen, Jingyan ...
10 11 62 [Lo’ay Abusalah, Rashid Ansari, Jezekiel Ben...
11 12 63 [Patricia A. Young, Zane L. Berge, Francis M...
12 13 47 [Scott Solomon, Cheryl Hall, David Ponton, ...
13 14 51 [Abbas Waseem, Ackerman Robert, Adams Stepha...
14 15 4 [Keith Alford, Nick Armstrong, Kristen Aust,...
15 16 64 [ELIZABETH ANDERSON, CHARLOTTE ADAMS, ALYSSA...
16 17 23 [Ali Tosyali, Edwin N. Torres, Rick Mislan, ...
In [35]:
import numpy as np
In [67]:
pd.DataFrame({
          col:np.repeat(x[col].values, x[lst_col].str.len())
          for col in x.columns.difference([lst_col])
      }).assign(**{lst_col:np.concatenate(x[lst_col].values)})[x.columns.tolist()]
Out[67]:
ID University_ID Professors
0 1 58 Pieter Abbeel
1 1 58 Rediet Abebe
2 1 58 Ahmed Alaa
3 1 58 Elad Alon
4 1 58 Venkat Anantharam
... ... ... ...
192 17 23 Joy Olabisi
193 17 23 Clyde Eirikur Hull
194 17 23 Raj Murthy
195 17 23 Mike Palanski
196 17 23

197 rows × 3 columns

In [68]:
newProfessorsList_df = pd.DataFrame({
          col:np.repeat(x[col].values, x[lst_col].str.len())
          for col in x.columns.difference([lst_col])
      }).assign(**{lst_col:np.concatenate(x[lst_col].values)})[x.columns.tolist()]
In [69]:
newProfessorsList_df
Out[69]:
ID University_ID Professors
0 1 58 Pieter Abbeel
1 1 58 Rediet Abebe
2 1 58 Ahmed Alaa
3 1 58 Elad Alon
4 1 58 Venkat Anantharam
... ... ... ...
192 17 23 Joy Olabisi
193 17 23 Clyde Eirikur Hull
194 17 23 Raj Murthy
195 17 23 Mike Palanski
196 17 23

197 rows × 3 columns

In [70]:
newProfessorsList_df['ID']= pd.Series(range(1,newProfessorsList_df.shape[0]+1)) #starts with 1
In [71]:
newProfessorsList_df
Out[71]:
ID University_ID Professors
0 1 58 Pieter Abbeel
1 2 58 Rediet Abebe
2 3 58 Ahmed Alaa
3 4 58 Elad Alon
4 5 58 Venkat Anantharam
... ... ... ...
192 193 23 Joy Olabisi
193 194 23 Clyde Eirikur Hull
194 195 23 Raj Murthy
195 196 23 Mike Palanski
196 197 23

197 rows × 3 columns

In [72]:
cursor.execute("select * from professor")
for x in cursor:
    x
In [73]:
for i,row in newProfessorsList_df.iterrows():
    cursor.execute("INSERT INTO professor values (%s,%s,%s)", (int(row['ID']),row['University_ID'],row['Professors']))
uni_recomm.commit()

cursor.execute("SELECT * from professor")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, '58', 'Pieter Abbeel'), (2, '58', ' Rediet Abebe'), (3, '58', ' Ahmed Alaa'), (4, '58', ' Elad Alon'), (5, '58', ' Venkat Anantharam'), (6, '58', 'Gopala Krishna Anumanchipalli'), (7, '58', 'Mekhail Anwar'), (8, '58', ' Murat Arcak\nAna Claudia Arias'), (9, '58', ' David Attwood'), (10, '58', ' Babak Ayazifar\n'), (11, '36', 'Titan Alon'), (12, '36', 'James Andreoni'), (13, '36', ' Kate Antonovics'), (14, '36', ' David Arnold'), (15, '36', ' Richard Attiyeh\nDonald V.T. Bear'), (16, '36', '\nSamuel Bazzi'), (17, '36', ' Eli Berman'), (18, '36', ' Julian R. Betts'), (19, '36', ' Prashant Bharadwaj'), (20, '36', ' Judson Boomhower'), (21, '36', ' Renee Bowen'), (22, '2', 'Jacob Abraham'), (23, '2', ' Maruthi Akella'), (24, '2', ' Deji Akinwande'), (25, '2', ' Farshid Alambeigi'), (26, '2', ' David Allen'), (27, '2', ' Hal Alper'), (28, '2', ' Narayana Aluru'), (29, '2', ' Jeffrey Andrews'), (30, '2', ' Vaibhav Bahadur'), (31, '2', ' Aaron Baker'), (32, '2', ' Seth Bank'), (33, '2', ' Sanjay Banerjee'), (34, '2', ' Matthew Balhoff '), (35, '26', 'Elizabeth Reese'), (36, '26', ' Paula Moya'), (37, '26', ' Heike Daldrup-Link'), (38, '26', ' Jonathan Calm'), (39, '26', ' Richard Banks'), (40, '26', ' \nLauren Davenport'), (41, '26', ' \nKrish Seetah'), (42, '26', ' Heather Hadlock'), (43, '26', ' Manuel Amieva'), (44, '26', ' Jennifer DeVere Brody'), (45, '26', ' Portrait of Alexander Key'), (46, '26', ' \nMichael Penn'), (47, '42', 'Abadi Daniel J.'), (48, '42', ' Abbasi Hossein'), (49, '42', ' Abed Eyad'), (50, '42', ' Abera Nicole Taylor'), (51, '42', ' Abraham Katharine'), (52, '41', 'Butler Wingfield Kim'), (53, '41', ' Butts Daniel'), (54, '41', ' Cable\tJohn Hart'), (55, '41', ' Cabrera Natasha J. '), (56, '41', ' Cabrera Alberto'), (57, '41', ' Cai Jing'), (58, '48', 'Victor Adamchik'), (59, '48', ' Leonard M Adleman'), (60, '48', ' Murali Annavaram'), (61, '48', ' Michael A. Arbib'), (62, '48', ' Ron Artstein'), (63, '48', ' Salman Avestimehr'), (64, '48', ' Nora Ayanian'), (65, '48', ' Somil Bansal'), (66, '48', ' Jernej Barbic'), (67, '48', ' George Bekey'), (68, '6', 'Abbaszadegan Morteza'), (69, '6', ' Abbott Joshua'), (70, '6', ' Aberle James'), (71, '6', ' Acevedo Gabriel'), (72, '6', ' Acharya Abhinav'), (73, '1', 'Mehdi Abedi'), (74, '1', ' Emad Aboelela'), (75, '1', ' Gregory D. Abowd'), (76, '1', ' Kal Bugrara'), (77, '1', ' Vishal Chawla'), (78, '1', ' Nick Brown'), (79, '1', ' Daniel Peters'), (80, '61', 'S. Sebnem Ahiska King'), (81, '61', ' Karen Chen'), (82, '61', ' Jingyan Dong'), (83, '61', ' Shu-Cherng Fang'), (84, '61', ' Xiaolei Fang'), (85, '61', 'Russell King'), (86, '62', 'Lo’ay Abusalah'), (87, '62', ' Rashid Ansari'), (88, '62', ' Jezekiel Ben-Arie'), (89, '62', ' Wolfgang-Martin Boerner'), (90, '62', ' Vahe Caliskan'), (91, '62', ' Enis Cetin'), (92, '62', ' Natasha Devroye'), (93, '62', ' Shantanu Dutt'), (94, '62', ' Mitra Dutta'), (95, '62', ' Danilo Erricolo'), (96, '62', ' Alan D. Feinerman'), (97, '62', ' Kimberly Fitzgerald'), (98, '62', ' Vladimir Goncharoff'), (99, '62', ' Daniel Graupe'), (100, '62', ' Erdem Koyuncu'), (101, '62', ' Ning Jin'), (102, '62', ' Sharad R. Laxpati'), (103, '62', ' James C. Lin'), (104, '62', ' Derong Liu'), (105, '62', ' Sudip Mazumder'), (106, '62', ' Vitali Metlushko'), (107, '62', ' Igor Paprotny'), (108, '62', ' Roland Priemer'), (109, '62', ' Wenjing Rao'), (110, '62', ' Dan Schonfeld'), (111, '62', ' Hulya Seferoglu '), (112, '62', ' Junxia'), (113, '62', ' (Lucy) Shi'), (114, '62', ' Besma Smida'), (115, '62', ' Mojtaba Soltanalian'), (116, '62', ' Michael A. Stroscio'), (117, '62', ' Amit Trivedi'), (118, '62', ' Daniela Tuninetti'), (119, '62', ' Piergiorgio L. Uslenghi'), (120, '62', ' Hung-Yu Yang '), (121, '62', ' Zheng Yang'), (122, '62', ' Milos Zefran'), (123, '62', ' Zhao Zhang '), (124, '62', ' Zhichun Zhu '), (125, '63', 'Patricia A. Young'), (126, '63', ' Zane L. Berge'), (127, '63', ' Francis M. Hult'), (128, '63', ' Eugene Schaffer'), (129, '63', ' Sarah J. Shin'), (130, '63', ' Jonathan Singer'), (131, '63', ' Jiyoon Lee'), (132, '63', ' Christopher Rakes'), (133, '63', ' Shannon Sauro'), (134, '47', 'Scott Solomon'), (135, '47', ' Cheryl Hall'), (136, '47', ' David Ponton'), (137, '47', ' Nicolas Thompson'), (138, '47', ' Golfo Alexopoulos'), (139, '47', ' Kellan Anfinson'), (140, '47', ' Aaron Augsburger'), (141, '47', ' J. Edwin Benton'), (142, '47', ' Sheila Hearne'), (143, '47', ' Kiki Caruson'), (144, '47', ' Earl Conteh-Morgan'), (145, '47', ' Holly Dunn'), (146, '47', ' Kirsten England'), (147, '47', ' Peter Funke'), (148, '47', ' Kiersten Jensen'), (149, '47', ' '), (150, '51', 'Abbas Waseem'), (151, '51', ' Ackerman Robert'), (152, '51', ' Adams Stephanie'), (153, '51', ' Ahadi Khatereh'), (154, '51', ' Ahlberg Mea'), (155, '51', ' Barden John'), (156, '51', ' Basu Kanad'), (157, '51', ' Benavides Teodoro'), (158, '51', ' Berrett Britt'), (159, '51', ' Biswas Abhijit'), (160, '4', 'Keith Alford'), (161, '4', ' Nick Armstrong'), (162, '4', ' Kristen Aust'), (163, '4', ' The Hon. James E. Baker'), (164, '4', ' Tej Bhatia'), (165, '4', ' Renée de Nevers'), (166, '4', ' Carlota Deseda-Coon'), (167, '4', ' Carol Faulkner'), (168, '4', ' Jill Ferguson'), (169, '4', ' Shubha Ghosh'), (170, '4', ' Jonathan Gibraltar'), (171, '4', ' Lauryn Gouldin'), (172, '4', ' Mike Haynie'), (173, '4', ' Margaret Hermann'), (174, '4', ' Chris Johnson'), (175, '4', ' Arlene Kanter'), (176, '4', ' Audie Klotz'), (177, '4', ' Zhanjiang “John” Liu'), (178, '4', ' Michael Marciano'), (179, '4', ' Suzette Melendez'), (180, '64', 'ELIZABETH ANDERSON'), (181, '64', ' CHARLOTTE ADAMS'), (182, '64', ' ALYSSA ANCHETA'), (183, '64', ' ARICA ANINAG'), (184, '64', 'CRISTIAN AQUINO-STERLING'), (185, '64', ' RACHELLE ARCHER'), (186, '64', ' DAN BACON'), (187, '64', ''), (188, '23', 'Ali Tosyali'), (189, '23', ' Edwin N. Torres'), (190, '23', ' Rick Mislan'), (191, '23', ' Mike Palanski'), (192, '23', ' Rick Mislan'), (193, '23', ' Joy Olabisi'), (194, '23', ' Clyde Eirikur Hull'), (195, '23', ' Raj Murthy'), (196, '23', ' Mike Palanski'), (197, '23', ''))
In [74]:
NewResearch_df=pd.read_csv("Final_research.csv")
NewResearch_df
Out[74]:
Research_ID Research_Name University_ID
0 1 Environmental Economics and Policy, Investigat... 15
1 10 Fulton Undergraduate Research Initiative (FURI... 6
2 11 Web & Visualization Developer (Media Cloud Pro... 1
3 2 Summer Undergraduate Research Program (SURF): ... 58
4 3 Research Experience and Applied Learning (REAL... 36
5 4 Office of Undergraduate Research (OUR), EUREKA... 50
6 5 Building a brain: What does it take to make ma... 26
7 6 Research Experience and Applied Learning (REAL... 36
8 7 Maryland Center for Undergraduate Research (MCUR) 42
9 8 Virtual Reality Technology In Seconf Language ... 41
10 9 Department of Animal Resources, Department of ... 48
In [75]:
lst_col = 'Research_Name' 
In [76]:
x = NewResearch_df.assign(**{lst_col:NewResearch_df[lst_col].str.split(',')})
x
Out[76]:
Research_ID Research_Name University_ID
0 1 [Environmental Economics and Policy, Investig... 15
1 10 [Fulton Undergraduate Research Initiative (FUR... 6
2 11 [Web & Visualization Developer (Media Cloud Pr... 1
3 2 [Summer Undergraduate Research Program (SURF):... 58
4 3 [Research Experience and Applied Learning (REA... 36
5 4 [Office of Undergraduate Research (OUR), EURE... 50
6 5 [Building a brain: What does it take to make m... 26
7 6 [Research Experience and Applied Learning (REA... 36
8 7 [Maryland Center for Undergraduate Research (M... 42
9 8 [Virtual Reality Technology In Seconf Language... 41
10 9 [Department of Animal Resources, Department o... 48
In [77]:
newResearchList_df = pd.DataFrame({
          col:np.repeat(x[col].values, x[lst_col].str.len())
          for col in x.columns.difference([lst_col])
      }).assign(**{lst_col:np.concatenate(x[lst_col].values)})[x.columns.tolist()]
newResearchList_df
Out[77]:
Research_ID Research_Name University_ID
0 1 Environmental Economics and Policy 15
1 1 Investigating the Mold Resiliency of Building... 15
2 1 Investigating Energy Efficiency and Heat Vuln... 15
3 1 Research and Fact-Checking for Book Chapter a... 15
4 1 Aging and Climate Change in China 15
5 1 Modeling of Atmospheric Chemistry 15
6 1 Climate Dynamics 15
7 10 Fulton Undergraduate Research Initiative (FURI) 6
8 10 New College Undergraduate Inquiry and Researc... 6
9 10 School of Life Sciences Undergraduate Researc... 6
10 10 Sustainability Undergraduate Research Experie... 6
11 10 Watts College of Public Service and Community... 6
12 10 Ira A. Fulton Schools of Engineering Summer ... 6
13 11 Web & Visualization Developer (Media Cloud Pro... 1
14 11 Research in Programming Languages and Machine... 1
15 11 Multiple research options on experimental mul... 1
16 11 Imaging micobiome interactions: Microfuidics 1
17 11 Microscopy 1
18 11 Molecular Biology 1
19 11 and Automation 1
20 11 Data Analysis and Visualization of Hurricane ... 1
21 11 Undergraduate Research Assistant – Metal 3D P... 1
22 11 Translational research opportunities in leuke... 1
23 11 cancer immunology and cell death/inflammation 1
24 11 Research the Dragon Prayer Book 1
25 11 Northeastern’s Only Medieval Manuscript – Ong... 1
26 11 1
27 2 Summer Undergraduate Research Program (SURF): ... 58
28 3 Research Experience and Applied Learning (REAL... 36
29 4 Office of Undergraduate Research (OUR) 50
30 4 EUREKA Research Database 50
31 4 Undergraduate Research Journals 50
32 4 Freshman Research Initiative 50
33 5 Building a brain: What does it take to make ma... 26
34 5 Promising approaches to global freshwater cha... 26
35 5 Collaborations drive discovery 26
36 5 Interdisciplinary research takes students bey... 26
37 6 Research Experience and Applied Learning (REAL... 36
38 7 Maryland Center for Undergraduate Research (MCUR) 42
39 8 Virtual Reality Technology In Seconf Language ... 41
40 8 Investigating Regulation of Pro-Inflammatory ... 41
41 8 Targeted detection of allergies in Quinoa Flo... 41
42 9 Department of Animal Resources 48
43 9 Department of Contracts and Grants 48
44 9 Institutional Animal Care and Use Committee 48
45 9 Office for the Protection of Research Subjects 48
46 9 Office of Research Advancement 48
In [78]:
newResearchList_df['Research_ID']= pd.Series(range(1,newResearchList_df.shape[0]+1)) #starts with 1
In [79]:
newResearchList_df
Out[79]:
Research_ID Research_Name University_ID
0 1 Environmental Economics and Policy 15
1 2 Investigating the Mold Resiliency of Building... 15
2 3 Investigating Energy Efficiency and Heat Vuln... 15
3 4 Research and Fact-Checking for Book Chapter a... 15
4 5 Aging and Climate Change in China 15
5 6 Modeling of Atmospheric Chemistry 15
6 7 Climate Dynamics 15
7 8 Fulton Undergraduate Research Initiative (FURI) 6
8 9 New College Undergraduate Inquiry and Researc... 6
9 10 School of Life Sciences Undergraduate Researc... 6
10 11 Sustainability Undergraduate Research Experie... 6
11 12 Watts College of Public Service and Community... 6
12 13 Ira A. Fulton Schools of Engineering Summer ... 6
13 14 Web & Visualization Developer (Media Cloud Pro... 1
14 15 Research in Programming Languages and Machine... 1
15 16 Multiple research options on experimental mul... 1
16 17 Imaging micobiome interactions: Microfuidics 1
17 18 Microscopy 1
18 19 Molecular Biology 1
19 20 and Automation 1
20 21 Data Analysis and Visualization of Hurricane ... 1
21 22 Undergraduate Research Assistant – Metal 3D P... 1
22 23 Translational research opportunities in leuke... 1
23 24 cancer immunology and cell death/inflammation 1
24 25 Research the Dragon Prayer Book 1
25 26 Northeastern’s Only Medieval Manuscript – Ong... 1
26 27 1
27 28 Summer Undergraduate Research Program (SURF): ... 58
28 29 Research Experience and Applied Learning (REAL... 36
29 30 Office of Undergraduate Research (OUR) 50
30 31 EUREKA Research Database 50
31 32 Undergraduate Research Journals 50
32 33 Freshman Research Initiative 50
33 34 Building a brain: What does it take to make ma... 26
34 35 Promising approaches to global freshwater cha... 26
35 36 Collaborations drive discovery 26
36 37 Interdisciplinary research takes students bey... 26
37 38 Research Experience and Applied Learning (REAL... 36
38 39 Maryland Center for Undergraduate Research (MCUR) 42
39 40 Virtual Reality Technology In Seconf Language ... 41
40 41 Investigating Regulation of Pro-Inflammatory ... 41
41 42 Targeted detection of allergies in Quinoa Flo... 41
42 43 Department of Animal Resources 48
43 44 Department of Contracts and Grants 48
44 45 Institutional Animal Care and Use Committee 48
45 46 Office for the Protection of Research Subjects 48
46 47 Office of Research Advancement 48
In [81]:
cursor.execute("select * from research")
Out[81]:
11
In [82]:
cursor.execute("delete from research")
Out[82]:
11
In [83]:
for i,row in newResearchList_df.iterrows():
    cursor.execute("INSERT INTO research values (%s,%s,%s)", (int(row['Research_ID']),row['Research_Name'],row['University_ID']))
uni_recomm.commit()

cursor.execute("SELECT * from research")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
(('1', 'Environmental Economics and Policy', '15'), ('10', ' School of Life Sciences Undergraduate Research (SOLUR)', '6'), ('11', ' Sustainability Undergraduate Research Experience (SURE)', '6'), ('12', ' Watts College of Public Service and Community Solutions Undergraduate Research Program', '6'), ('13', ' Ira A. Fulton Schools of Engineering  Summer Research Internships (SURI)', '6'), ('14', 'Web & Visualization Developer (Media Cloud Project)', '1'), ('15', ' Research in Programming Languages and Machine Learning', '1'), ('16', ' Multiple research options on experimental multiphase flow with potential applications to 3D printing and biomedical', '1'), ('17', ' Imaging micobiome interactions: Microfuidics', '1'), ('18', ' Microscopy', '1'), ('19', ' Molecular Biology', '1'), ('2', ' Investigating the Mold Resiliency of Buildings in Future Climates', '15'), ('20', ' and Automation', '1'), ('21', ' Data Analysis and Visualization of Hurricane Risk to Offshore Wind Farms along the U.S. Atlantic Coast', '1'), ('22', ' Undergraduate Research Assistant – Metal 3D Printing', '1'), ('23', ' Translational research opportunities in leukemogenesis', '1'), ('24', ' cancer immunology and cell death/inflammation', '1'), ('25', ' Research the Dragon Prayer Book', '1'), ('26', ' Northeastern’s Only Medieval Manuscript – Ongoing Project', '1'), ('27', ' ', '1'), ('28', 'Summer Undergraduate Research Program (SURF): Getting your Bearings', '58'), ('29', 'Research Experience and Applied Learning (REAL) Portal', '36'), ('3', ' Investigating Energy Efficiency and Heat Vulnerability in Buildings/Cities', '15'), ('30', 'Office of Undergraduate Research (OUR)', '50'), ('31', ' EUREKA Research Database', '50'), ('32', ' Undergraduate Research Journals', '50'), ('33', ' Freshman Research Initiative', '50'), ('34', 'Building a brain: What does it take to make machines as smart as we are?', '26'), ('35', ' Promising approaches to global freshwater challenges', '26'), ('36', ' Collaborations drive discovery', '26'), ('37', ' Interdisciplinary research takes students beyond the classroom', '26'), ('38', 'Research Experience and Applied Learning (REAL) Portal', '36'), ('39', 'Maryland Center for Undergraduate Research (MCUR)', '42'), ('4', ' Research and Fact-Checking for Book Chapter about Global Adaptation and Managed Retreat', '15'), ('40', 'Virtual Reality Technology In Seconf Language Classrooms', '41'), ('41', ' Investigating Regulation of Pro-Inflammatory Gene', '41'), ('42', ' Targeted detection of allergies in Quinoa Flour Using VNIR Hyperspectraal Imaging and Machine learning', '41'), ('43', 'Department of Animal Resources', '48'), ('44', ' Department of Contracts and Grants', '48'), ('45', ' Institutional Animal Care and Use Committee', '48'), ('46', ' Office for the Protection of Research Subjects', '48'), ('47', ' Office of Research Advancement', '48'), ('5', ' Aging and Climate Change in China', '15'), ('6', ' Modeling of Atmospheric Chemistry', '15'), ('7', ' Climate Dynamics', '15'), ('8', 'Fulton Undergraduate Research Initiative (FURI)', '6'), ('9', ' New College Undergraduate Inquiry and Research Experiences (NCUIRE)', '6'))
In [85]:
NewStudent_df=pd.read_csv("Final_student.csv")
NewStudent_df
Out[85]:
student_id University_Name University_ID Acceptance Program Target_Major Term Year_of_Joining GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major CGPA CGPA_Scale Work_Ex
0 1 Northeastern University 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 Northeastern University 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 Northeastern University 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
995 996 Northeastern University 1 Admit MS Electronic and Telecommunication Engineering Fall 2013 156 145 301 3.5 None MU electronics 62.17 100 0
996 997 Northeastern University 1 Admit MS Computer Science Fall 2014 163 152 315 3.5 None Pune University Computer Engineering 67.63 100 0
997 998 Northeastern University 1 Admit MS Telecommunication Fall 2012 780 470 1250 4 107 VIT Pune EnTc 8.55 10 0
998 999 Northeastern University 1 Admit MS MIS Fall 2012 1390 620 2010 770 104 MU Computer Engineering 68.00 100 0
999 1000 Northeastern University 1 Admit MS Computer Systems Engineering Fall 2011 690 610 1300 4 97 None 0 0.00 0 0

1000 rows × 18 columns

In [86]:
NewStudent_df = NewStudent_df.drop('University_Name', axis=1)
In [87]:
NewStudent_df
Out[87]:
student_id University_ID Acceptance Program Target_Major Term Year_of_Joining GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major CGPA CGPA_Scale Work_Ex
0 1 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
995 996 1 Admit MS Electronic and Telecommunication Engineering Fall 2013 156 145 301 3.5 None MU electronics 62.17 100 0
996 997 1 Admit MS Computer Science Fall 2014 163 152 315 3.5 None Pune University Computer Engineering 67.63 100 0
997 998 1 Admit MS Telecommunication Fall 2012 780 470 1250 4 107 VIT Pune EnTc 8.55 10 0
998 999 1 Admit MS MIS Fall 2012 1390 620 2010 770 104 MU Computer Engineering 68.00 100 0
999 1000 1 Admit MS Computer Systems Engineering Fall 2011 690 610 1300 4 97 None 0 0.00 0 0

1000 rows × 17 columns

In [88]:
lst_col = 'Target_Major' 
In [89]:
x = NewStudent_df.assign(**{lst_col:NewStudent_df[lst_col].str.split('/')})
x
Out[89]:
student_id University_ID Acceptance Program Target_Major Term Year_of_Joining GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major CGPA CGPA_Scale Work_Ex
0 1 1 Admit MS [Computer Science] Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 1 Admit MS [Industrial Engineering] Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 1 Admit MS [Industrial Engineering] Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 1 Admit MS [Computer Science] Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 1 Admit MS [Management Information System] Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
995 996 1 Admit MS [Electronic and Telecommunication Engineering] Fall 2013 156 145 301 3.5 None MU electronics 62.17 100 0
996 997 1 Admit MS [Computer Science] Fall 2014 163 152 315 3.5 None Pune University Computer Engineering 67.63 100 0
997 998 1 Admit MS [Telecommunication] Fall 2012 780 470 1250 4 107 VIT Pune EnTc 8.55 10 0
998 999 1 Admit MS [MIS] Fall 2012 1390 620 2010 770 104 MU Computer Engineering 68.00 100 0
999 1000 1 Admit MS [Computer Systems Engineering] Fall 2011 690 610 1300 4 97 None 0 0.00 0 0

1000 rows × 17 columns

In [90]:
NewStudent_df = pd.DataFrame({
          col:np.repeat(x[col].values, x[lst_col].str.len())
          for col in x.columns.difference([lst_col])
      }).assign(**{lst_col:np.concatenate(x[lst_col].values)})[x.columns.tolist()]
NewStudent_df
Out[90]:
student_id University_ID Acceptance Program Target_Major Term Year_of_Joining GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major CGPA CGPA_Scale Work_Ex
0 1 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1105 996 1 Admit MS Electronic and Telecommunication Engineering Fall 2013 156 145 301 3.5 None MU electronics 62.17 100 0
1106 997 1 Admit MS Computer Science Fall 2014 163 152 315 3.5 None Pune University Computer Engineering 67.63 100 0
1107 998 1 Admit MS Telecommunication Fall 2012 780 470 1250 4 107 VIT Pune EnTc 8.55 10 0
1108 999 1 Admit MS MIS Fall 2012 1390 620 2010 770 104 MU Computer Engineering 68.00 100 0
1109 1000 1 Admit MS Computer Systems Engineering Fall 2011 690 610 1300 4 97 None 0 0.00 0 0

1110 rows × 17 columns

In [93]:
NewStudent_df['student_id']= pd.Series(range(1,NewStudent_df.shape[0]+1)) #starts with 1
In [94]:
NewStudent_df
Out[94]:
student_id University_ID Acceptance Program Target_Major Term Year_of_Joining GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major CGPA CGPA_Scale Work_Ex
0 1 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1105 1106 1 Admit MS Electronic and Telecommunication Engineering Fall 2013 156 145 301 3.5 None MU electronics 62.17 100 0
1106 1107 1 Admit MS Computer Science Fall 2014 163 152 315 3.5 None Pune University Computer Engineering 67.63 100 0
1107 1108 1 Admit MS Telecommunication Fall 2012 780 470 1250 4 107 VIT Pune EnTc 8.55 10 0
1108 1109 1 Admit MS MIS Fall 2012 1390 620 2010 770 104 MU Computer Engineering 68.00 100 0
1109 1110 1 Admit MS Computer Systems Engineering Fall 2011 690 610 1300 4 97 None 0 0.00 0 0

1110 rows × 17 columns

In [95]:
cursor.execute("delete from student")
Out[95]:
10824
In [99]:
for i,row in NewStudent_df.iterrows():
    cursor.execute("INSERT INTO student values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)", (int(row['student_id']),row['University_ID'],row['Acceptance'],row['Program'],row['Target_Major'],row['Term'],row['Year_of_Joining'],row['GRE_Q'],row['GRE_V'],row['GRE_Total'],row['GRE_AWA'],row['TOEFL'],row['Undergrad_University'],row['Undergrad_Major'],row['CGPA'],row['CGPA_Scale'],row['Work_Ex']))
uni_recomm.commit()

cursor.execute("SELECT * from student")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '64.37', '100', '0'), (2, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (4, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0'), (5, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '66.4', '100', '0'), (6, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (7, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (9, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (10, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (11, '1', 'Admit', 'MS', 'Computer Engineering ', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56'), (12, '1', 'Admit', 'MS', ' Computer Networking ', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56'), (13, '1', 'Admit', 'MS', ' Computer Science', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56'), (14, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (15, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (16, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (17, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (18, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (19, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (20, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (21, '1', 'Admit', 'MS', 'computer science ', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (22, '1', 'Admit', 'MS', ' MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (23, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (24, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '74', '100', '0'), (25, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (26, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (27, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '70', '100', '0'), (28, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (29, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (30, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (31, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0'), (32, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '66', '100', '0'), (33, '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30'), (34, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (35, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '66', '100', '0'), (36, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (37, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (38, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0'), (39, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '67', '100', '0'), (40, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (41, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (42, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (43, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36'), (44, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '72.92', '100', '0'), (45, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (46, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0'), (47, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (48, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0'), (49, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (50, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (51, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (52, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (53, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (54, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (55, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (56, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (57, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (58, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (59, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '65', '100', '0'), (60, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (61, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (62, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (63, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (64, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (65, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '70.19', '100', '0'), (66, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (67, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (68, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (69, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '68', '100', '0'), (70, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (71, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (72, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (73, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '63', '100', '0'), (74, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '77', '100', '0'), (75, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (76, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0'), (77, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (78, '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (79, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (80, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (81, '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0'), (82, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (83, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (84, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '65', '100', '0'), (85, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (86, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (87, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (88, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0'), (89, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (90, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (91, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '73', '100', '0'), (92, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0'), (93, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (94, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (95, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (96, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (97, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (98, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0'), (99, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (100, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '73.4', '100', '0'), (101, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '70', '100', '0'), (102, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (103, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '64.3', '100', '0'), (104, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '71.4', '100', '0'), (105, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '70.3', '100', '0'), (106, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '60', '100', '0'), (107, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (108, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '72', '100', '0'), (109, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (110, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (111, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (112, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '65.2', '100', '0'), (113, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (114, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (115, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (116, '1', 'Admit', 'MS', '(MIS ', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (117, '1', 'Admit', 'MS', ' MSIM ', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (118, '1', 'Admit', 'MS', ' MSIS ', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (119, '1', 'Admit', 'MS', ' MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (120, '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0'), (121, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (122, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (123, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0'), (124, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (125, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '72', '100', '0'), (126, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (127, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (128, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (129, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '75.2', '100', '0'), (130, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (131, '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (132, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '66.6', '100', '0'), (133, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (134, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (135, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (136, '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (137, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (138, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '66', '100', '0'), (139, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '65', '100', '0'), (140, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (141, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (142, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (143, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29'), (144, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (145, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (146, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (147, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '66', '100', '0'), (148, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (149, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (150, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '75', '100', '0'), (151, '1', 'Admit', 'MS', 'bio-engineering', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '75', '100', '0'), (152, '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (153, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (154, '1', 'Admit', 'MS', 'computer science ', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '65.6', '100', '37'), (155, '1', 'Admit', 'MS', ' MIS', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '65.6', '100', '37'), (156, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (157, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '73', '100', '0'), (158, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0'), (159, '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '74', '100', '10'), (160, '1', 'Admit', 'MS', 'computer science ', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '79', '100', '29'), (161, '1', 'Admit', 'MS', ' MIS', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '79', '100', '29'), (162, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (163, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (164, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '62.3', '100', '0'), (165, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (166, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (167, '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '74.2', '100', '0'), (168, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (169, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '54.84', '100', '0'), (170, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '68.5', '100', '0'), (171, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '65.95', '100', '0'), (172, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (173, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (174, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (175, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '61', '100', '17'), (176, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (177, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (178, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (179, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (180, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (181, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '68', '100', '0'), (182, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (183, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (184, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (185, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (186, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0'), (187, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0'), (188, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (189, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (190, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0'), (191, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (192, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0'), (193, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (194, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (195, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (196, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (197, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (198, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '64', '100', '0'), (199, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (200, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (201, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '68.6', '100', '0'), (202, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (203, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '64', '100', '0'), (204, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '74.57', '100', '0'), (205, '1', 'Admit', 'MS', 'Chemical', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0'), (206, '1', 'Admit', 'MS', 'Environmental Engg.', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0'), (207, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (208, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (209, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0'), (210, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (211, '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (212, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (213, '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0'), (214, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (215, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0'), (216, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (217, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (218, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (219, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (220, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (221, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0'), (222, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0'), (223, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0'), (224, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (225, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '59.8', '100', '0'), (226, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (227, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24'), (228, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '74', '100', '0'), (229, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (230, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '69.1', '100', '0'), (231, '1', 'Admit', 'MS', ' Electronics and Communication', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '69.1', '100', '0'), (232, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '78', '100', '0'), (233, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '71', '100', '0'), (234, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33'), (235, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (236, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0'), (237, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '74', '100', '0'), (238, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '69', '100', '0'), (239, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '65', '100', '0'), (240, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (241, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (242, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '60', '100', '0'), (243, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '75.6', '100', '0'), (244, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0'), (245, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0'), (246, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '66.5', '100', '0'), (247, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (248, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (249, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43'), (250, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (251, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (252, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (253, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (254, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '65', '100', '0'), (255, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (256, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (257, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (258, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0'), (259, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0'), (260, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (261, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (262, '1', 'Admit', 'MS', 'MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (263, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '3.89', '100', '0'), (264, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '3.89', '100', '0'), (265, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (266, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (267, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (268, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54'), (269, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (270, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (271, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '59', '100', '0'), (272, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '60', '100', '36'), (273, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0'), (274, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0'), (275, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (276, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '69', '100', '0'), (277, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (278, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '63', '100', '0'), (279, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '61.4', '100', '36'), (280, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (281, '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24'), (282, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0'), (283, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (284, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '67', '100', '0'), (285, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (286, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (287, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0'), (288, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0'), (289, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (290, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '68.41', '100', '0'), (291, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0'), (292, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '70.7', '100', '43'), (293, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (294, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '74', '100', '0'), (295, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (296, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (297, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0'), (298, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (299, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (300, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (301, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (302, '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0'), (303, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (304, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (305, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (306, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (307, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0'), (308, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17'), (309, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (310, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0'), (311, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '62', '100', '0'), (312, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '61', '100', '10'), (313, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (314, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (315, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0'), (316, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '82.14', '100', '0'), (317, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (318, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '66', '100', '0'), (319, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (320, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (321, '1', 'Admit', 'MS', 'Electrical Engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0'), (322, '1', 'Admit', 'MS', ' comp engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0'), (323, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '81', '100', '51'), (324, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '71.82', '100', '0'), (325, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0'), (326, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0'), (327, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0'), (328, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0'), (329, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0'), (330, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (331, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (332, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (333, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (334, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '71', '100', '0'), (335, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '63.4', '100', '0'), (336, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0'), (337, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (338, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0'), (339, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0'), (340, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (341, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (342, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (343, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (344, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (345, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '68.69', '100', '0'), (346, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '70', '100', '0'), (347, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '71', '100', '41'), (348, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (349, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (350, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '65', '100', '0'), (351, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (352, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24'), (353, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0'), (354, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '70', '100', '0'), (355, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (356, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (357, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0'), (358, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (359, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (360, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (361, '1', 'Admit', 'MS', ' ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (362, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (363, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (364, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (365, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (366, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (367, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (368, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (369, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (370, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (371, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '70.2', '100', '30'), (372, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (373, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '69', '100', '0'), (374, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (375, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '72.34', '100', '0'), (376, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '65', '100', '0'), (377, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '69.16', '100', '0'), (378, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (379, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '80.83', '100', '0'), (380, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (381, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0'), (382, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (383, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (384, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '68.5', '100', '0'), (385, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (386, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (387, '1', 'Admit', 'MS', 'computer science ', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '73.5', '100', '36'), (388, '1', 'Admit', 'MS', ' MIS', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '73.5', '100', '36'), (389, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (390, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (391, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (392, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (393, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (394, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '59.7', '100', '0'), (395, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (396, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (397, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '67', '100', '42'), (398, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (399, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0'), (400, '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0'), (401, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (402, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (403, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '70', '100', '0'), (404, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '66.45', '100', '0'), (405, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '69.9', '100', '0'), (406, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (407, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (408, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (409, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (410, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '59', '100', '0'), (411, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (412, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '75', '100', '12'), (413, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (414, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (415, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (416, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (417, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '67', '100', '0'), (418, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (419, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (420, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (421, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (422, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0'), (423, '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (424, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '79', '100', '24'), (425, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (426, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (427, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '71', '100', '0'), (428, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (429, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (430, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (431, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (432, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (433, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '73.1', '100', '22'), (434, '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '74.5', '100', '0'), (435, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '68.6', '100', '0'), (436, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (437, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0'), (438, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0'), (439, '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '67.5', '100', '0'), (440, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0'), (441, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (442, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '79', '100', '0'), (443, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (444, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '81', '100', '0'), (445, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '69', '100', '0'), (446, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (447, '1', 'Admit', 'MS', ' SE ', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (448, '1', 'Admit', 'MS', ' IT ', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (449, '1', 'Admit', 'MS', ' MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (450, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (451, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (452, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (453, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34'), (454, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '65.5', '100', '0'), (455, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0'), (456, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0'), (457, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0'), (458, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (459, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33'), (460, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22'), (461, '1', 'Admit', 'MS', ' MIS', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22'), (462, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (463, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (464, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (465, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '70', '100', '0'), (466, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '78.12', '100', '6'), (467, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (468, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (469, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (470, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (471, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '65', '100', '0'), (472, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '74', '100', '0'), (473, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (474, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '78', '100', '0'), (475, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '83', '100', '0'), (476, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (477, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (478, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (479, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (480, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (481, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '72', '100', '44'), (482, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '63', '100', '45'), (483, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (484, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (485, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '79', '100', '0'), (486, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '75', '100', '0'), (487, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (488, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0'), (489, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (490, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0'), (491, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0'), (492, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (493, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '75', '100', '0'), (494, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (495, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '90.2', '100', '0'), (496, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0'), (497, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0'), (498, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0'), (499, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (500, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '63.08', '100', '18'), (501, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '67', '100', '0'), (502, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24'), (503, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0'), (504, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (505, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (506, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (507, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0'), (508, '1', 'Admit', 'MS', 'Engineering Management ', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (509, '1', 'Admit', 'MS', ' Industrial Engineering ', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (510, '1', 'Admit', 'MS', ' IMSE', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (511, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (512, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (513, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (514, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '68', '100', '0'), (515, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0'), (516, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0'), (517, '1', 'Admit', 'MS', ' ITM', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0'), (518, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0'), (519, '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (520, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '75', '100', '0'), (521, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (522, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0'), (523, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (524, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (525, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '75.6', '100', '0'), (526, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (527, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (528, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '71', '100', '0'), (529, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '74', '100', '0'), (530, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (531, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (532, '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (533, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '67.8', '100', '33'), (534, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (535, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0'), (536, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (537, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '60', '100', '60'), (538, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (539, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (540, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (541, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (542, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '65.38', '100', '0'), (543, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0'), (544, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (545, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (546, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (547, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (548, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '74', '100', '0'), (549, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (550, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (551, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '76', '100', '42'), (552, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '74.7', '100', '22'), (553, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (554, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (555, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (556, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '74', '100', '0'), (557, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '75.66', '100', '33'), (558, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (559, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0'), (560, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (561, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (562, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (563, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '78', '100', '0'), (564, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (565, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '75', '100', '12'), (566, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '75', '100', '0'), (567, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (568, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '68.9', '100', '0'), (569, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (570, '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (571, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '62', '100', '0'), (572, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '54', '100', '0'), (573, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '74', '100', '29'), (574, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (575, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '71.84', '100', '0'), (576, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0'), (577, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0'), (578, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '66.2', '100', '0'), (579, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (580, '1', 'Admit', 'MS', 'Engineering Management ', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0'), (581, '1', 'Admit', 'MS', ' Industrial Engineering ', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0'), (582, '1', 'Admit', 'MS', ' IMSE', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0'), (583, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0'), (584, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (585, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '8.51', '100', '0'), (586, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '74.3', '100', '0'), (587, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '70', '100', '17'), (588, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '64.85', '100', '20'), (589, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (590, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (591, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '56.6', '100', '0'), (592, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0'), (593, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0'), (594, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0'), (595, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (596, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (597, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (598, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0'), (599, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '74', '100', '0'), (600, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0'), (601, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24'), (602, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (603, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (604, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (605, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '8.06', '100', '0'), (606, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (607, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '69.2', '100', '0'), (608, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (609, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (610, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (611, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (612, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (613, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (614, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (615, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (616, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (617, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '72.5', '100', '0'), (618, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (619, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30'), (620, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0'), (621, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '72', '100', '0'), (622, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (623, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (624, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '79.5', '100', '17'), (625, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (626, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (627, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0'), (628, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (629, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (630, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (631, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0'), (632, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (633, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (634, '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (635, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '74', '100', '0'), (636, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '62', '100', '0'), (637, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '66.89', '100', '0'), (638, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (639, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (640, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (641, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (642, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '67', '100', '0'), (643, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (644, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (645, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0'), (646, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (647, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '57', '100', '0'), (648, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '76', '100', '0'), (649, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '65.79', '100', '0'), (650, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0'), (651, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0'), (652, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (653, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (654, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '68.84', '100', '0'), (655, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '77', '100', '0'), (656, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '65.81', '100', '0'), (657, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0'), (658, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (659, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0'), (660, '1', 'Admit', 'MS', 'EE ', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (661, '1', 'Admit', 'MS', ' CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (662, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (663, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0'), (664, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (665, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '70', '100', '0'), (666, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (667, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45'), (668, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0'), (669, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (670, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (671, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (672, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (673, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (674, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (675, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0'), (676, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (677, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (678, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (679, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27'), (680, '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (681, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6'), (682, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (683, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (684, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '77', '100', '0'), (685, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '63.5', '100', '72'), (686, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0'), (687, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (688, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0'), (689, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0'), (690, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (691, '1', 'Admit', 'MS', 'SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (692, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (693, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '64', '100', '33'), (694, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (695, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (696, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (697, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '70', '100', '34'), (698, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '71.78', '100', '0'), (699, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0'), (700, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (701, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (702, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '84.5', '100', '0'), (703, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '82', '100', '0'), (704, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (705, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (706, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (707, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8'), (708, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '63', '100', '0'), (709, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (710, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (711, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (712, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0'), (713, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0'), (714, '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '68', '100', '0'), (715, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (716, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (717, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (718, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '69', '100', '0'), (719, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '68', '100', '0'), (720, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (721, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (722, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (723, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (724, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (725, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0'), (726, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (727, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (728, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (729, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (730, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (731, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '77.4', '100', '0'), (732, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '66.8', '100', '0'), (733, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (734, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0'), (735, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '83.17', '100', '0'), (736, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (737, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27'), (738, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (739, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (740, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '78', '100', '0'), (741, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0'), (742, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '57.66', '100', '0'), (743, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19'), (744, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '72.2', '100', '0'), (745, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '73', '100', '0'), (746, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (747, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (748, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '63.4', '100', '0'), (749, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (750, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (751, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '78', '100', '0'), (752, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '61', '100', '0'), (753, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '63', '100', '0'), (754, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (755, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '65', '100', '0'), (756, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28'), (757, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (758, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (759, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (760, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (761, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0'), (762, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '72.24', '100', '20'), (763, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '69.7', '100', '0'), (764, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (765, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '75.2', '100', '25'), (766, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (767, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (768, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '61', '100', '0'), (769, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '82', '100', '0'), (770, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65'), (771, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0'), (772, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (773, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0'), (774, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (775, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (776, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (777, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (778, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (779, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '70', '100', '0'), (780, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (781, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (782, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (783, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '71.5', '100', '0'), (784, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (785, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (786, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (787, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '69', '100', '0'), (788, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '76', '100', '0'), (789, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0'), (790, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '73.45', '100', '0'), (791, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (792, '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (793, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (794, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0'), (795, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (796, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (797, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0'), (798, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (799, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (800, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (801, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (802, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '76.1', '100', '0'), (803, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (804, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '68', '100', '0'), (805, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (806, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '71.8', '100', '0'), (807, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '75', '100', '0'), (808, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36'), (809, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (810, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24'), (811, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (812, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (813, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32'), (814, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (815, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0'), (816, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (817, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '76', '100', '0'), (818, '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (819, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '68', '100', '0'), (820, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (821, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (822, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (823, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '76', '100', '0'), (824, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (825, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (826, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (827, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (828, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '67.4', '100', '0'), (829, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (830, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '60', '100', '0'), (831, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0'), (832, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (833, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0'), (834, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (835, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (836, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0'), (837, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (838, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '77.5', '100', '0'), (839, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (840, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0'), (841, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (842, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (843, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (844, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (845, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (846, '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '76.88', '100', '0'), (847, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0'), (848, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0'), (849, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (850, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (851, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0'), (852, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0'), (853, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0'), (854, '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0'), (855, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '55', '100', '0'), (856, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '72', '100', '0'), (857, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (858, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (859, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (860, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (861, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0'), (862, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '58', '100', '0'), (863, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '63', '100', '0'), (864, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '67', '100', '0'), (865, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (866, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18'), (867, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '74.42', '100', '36'), (868, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (869, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '66.5', '100', '0'), (870, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (871, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (872, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '76.21', '100', '0'), (873, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (874, '1', 'Admit', 'MS', 'Computer Engineering ', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0'), (875, '1', 'Admit', 'MS', ' Computer Networking ', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0'), (876, '1', 'Admit', 'MS', ' Computer Science', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0'), (877, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '69.45', '100', '0'), (878, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (879, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (880, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (881, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (882, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (883, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0'), (884, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '72', '100', '0'), (885, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0'), (886, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '66.5', '100', '0'), (887, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (888, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '67', '100', '0'), (889, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (890, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (891, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (892, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (893, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (894, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '67.72', '100', '0'), (895, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '72.6', '100', '0'), (896, '1', 'Admit', 'MS', 'Computer Engineering ', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (897, '1', 'Admit', 'MS', ' Computer Networking ', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (898, '1', 'Admit', 'MS', ' Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (899, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '69', '100', '0'), (900, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (901, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '67', '100', '0'), (902, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (903, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '74.15', '100', '0'), (904, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (905, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (906, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '67.36', '100', '0'), (907, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (908, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0'), (909, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0'), (910, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0'), (911, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0'), (912, '1', 'Admit', 'MS', 'Industrial Engg', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '65', '100', '0'), (913, '1', 'Admit', 'MS', 'Robotics', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '65', '100', '0'), (914, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (915, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (916, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (917, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36'), (918, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (919, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (920, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '60', '100', '0'), (921, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (922, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (923, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '74', '100', '44'), (924, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '59.9', '100', '0'), (925, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0'), (926, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0'), (927, '1', 'Admit', 'MS', ' ITM', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0'), (928, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '70.6', '100', '0'), (929, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (930, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '60', '100', '0'), (931, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (932, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0'), (933, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0'), (934, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0'), (935, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0'), (936, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (937, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (938, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (939, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (940, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (941, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (942, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (943, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (944, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (945, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (946, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30'), (947, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30'), (948, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30'), (949, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (950, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (951, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (952, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (953, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (954, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0'), (955, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0'), (956, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0'), (957, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (958, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '76', '100', '0'), (959, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (960, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (961, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (962, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (963, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0'), (964, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (965, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (966, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (967, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '65', '100', '0'), (968, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (969, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '76', '100', '0'), (970, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (971, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0'), (972, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (973, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (974, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (975, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (976, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0'), (977, '1', 'Admit', 'MS', 'CS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0'), (978, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (979, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (980, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '57', '100', '0'), (981, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '75.4', '100', '0'), (982, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '77', '100', '0'), (983, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (984, '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0'), (985, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (986, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '60', '100', '0'), (987, '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (988, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (989, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (990, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0'), (991, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (992, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '67', '100', '0'), (993, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (994, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0'), (995, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (996, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (997, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0'), (998, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (999, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0'), (1000, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0'), (1001, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0'), (1002, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0'), (1003, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0'), (1004, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (1005, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (1006, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (1007, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (1008, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (1009, '1', 'Admit', 'MS', '(MIS ', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (1010, '1', 'Admit', 'MS', ' MSIM ', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (1011, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (1012, '1', 'Admit', 'MS', ' MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (1013, '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0'), (1014, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0'), (1015, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (1016, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '73', '100', '0'), (1017, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (1018, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (1019, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '70', '100', '0'), (1020, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (1021, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '67.79', '100', '0'), (1022, '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '77', '100', '0'), (1023, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60'), (1024, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (1025, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '70.5', '100', '28'), (1026, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (1027, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (1028, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0'), (1029, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (1030, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '64.9', '100', '48'), (1031, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0'), (1032, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (1033, '1', 'Admit', 'MS', 'CS ', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0'), (1034, '1', 'Admit', 'MS', ' MSIS ', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0'), (1035, '1', 'Admit', 'MS', ' ITM', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0'), (1036, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (1037, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '62', '100', '0'), (1038, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '65', '100', '0'), (1039, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (1040, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (1041, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '62', '100', '36'), (1042, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0'), (1043, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (1044, '1', 'Admit', 'MS', 'Comp Science', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0'), (1045, '1', 'Admit', 'MS', 'Comp Networks', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0'), (1046, '1', 'Admit', 'MS', 'Comp Engg', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0'), (1047, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '65', '100', '0'), (1048, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (1049, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '62.5', '100', '0'), (1050, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0'), (1051, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (1052, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (1053, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0'), (1054, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (1055, '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1056, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0'), (1057, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (1058, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (1059, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0'), (1060, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (1061, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '68.5', '100', '0'), (1062, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (1063, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (1064, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '63', '100', '0'), (1065, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18'), (1066, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (1067, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (1068, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '63', '100', '0'), (1069, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (1070, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (1071, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (1072, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (1073, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0'), (1074, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (1075, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '77.7', '100', '0'), (1076, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (1077, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '66.5', '100', '0'), (1078, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (1079, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (1080, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1081, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '79', '100', '0'), (1082, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (1083, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '57', '100', '0'), (1084, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (1085, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '67', '100', '36'), (1086, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '74', '100', '0'), (1087, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (1088, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (1089, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0'), (1090, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1091, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (1092, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (1093, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0'), (1094, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (1095, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0'), (1096, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0'), (1097, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '58', '100', '36'), (1098, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '58', '100', '36'), (1099, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '64', '100', '0'), (1100, '1', 'Admit', 'MS', '(MIS ', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (1101, '1', 'Admit', 'MS', ' MSIM ', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (1102, '1', 'Admit', 'MS', ' MSIS ', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (1103, '1', 'Admit', 'MS', ' MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (1104, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30'), (1105, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (1106, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '62.17', '100', '0'), (1107, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '67.63', '100', '0'), (1108, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (1109, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (1110, '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0'))
In [105]:
Student_df=pd.read_excel("student_data.xlsx")
Student_df
Out[105]:
Student_ID University_Name University_ID Status Program Target_Major Term Year GRE_Q GRE_V GRE_Total GRE_AWA TOEFL Undergrad_University Undergrad_Major cgpa cgpaScale Work_Experience
0 1 Northeastern University 1 Admit MS Computer Science Fall 2012 157 142 299 3.5 97 University of Mumbai Computer Engineering 64.37 100 0
1 2 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 None None 0 None None None 0 0.00 0 0
2 3 Northeastern University 1 Admit MS Industrial Engineering Fall 2011 770 460 1230 3 105 fr.c.r.c.e.(bandra) production engineering 75.36 100 0
3 4 Northeastern University 1 Admit MS Computer Science Fall 2013 159 152 311 3 94 None CS 3.30 10 0
4 5 Northeastern University 1 Admit MS Management Information System Fall 2014 158 144 302 3 100 Apeejay College of Engineering ECE 66.40 100 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
10819 10820 New York University 20 Reject MS Data Science Fall 2019 167 154 321 4 103 Acropolis Institute of Technology & Research Information Technology 7.40 10 0
10820 10821 New York University 20 Reject MS Data Science Fall 2019 158 148 306 4 105 KIIT University Computer Science 8.65 10 0
10821 10822 NYU Tandon School of Engineering 21 Admit MS Computer Science Fall 2017 168 157 325 3 115 Gitam University Computer Science 8.50 10 0
10822 10823 Pennsylvania State University 22 Admit MSc Industrial Engineering Fall 2017 170 155 325 3.5 111 Sardar Patel College Of Engineering, (SPCE), A... Mechanical Engineering 8.73 10 15
10823 10824 Rochester Institute of Technology 23 Admit MS Mechanical Engineering Fall 2016 170 156 326 3 104 Pdpu Mechanical Engineering 8.30 10 0

10824 rows × 18 columns

In [106]:
Student_df = Student_df.drop('University_Name', axis=1)
In [107]:
cursor.execute("Delete from student")
Out[107]:
1084
In [109]:
for i,row in Student_df.iterrows():
    cursor.execute("INSERT INTO student values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)", (int(row['Student_ID']),row['University_ID'],row['Status'],row['Program'],row['Target_Major'],row['Term'],row['Year'],row['GRE_Q'],row['GRE_V'],row['GRE_Total'],row['GRE_AWA'],row['TOEFL'],row['Undergrad_University'],row['Undergrad_Major'],row['cgpa'],row['cgpaScale'],row['Work_Experience']))
uni_recomm.commit()

cursor.execute("SELECT * from student")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '64.37', '100', '0'), (2, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (4, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0'), (5, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '66.4', '100', '0'), (6, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (7, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (9, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '164', '152', '316', 'None', '97', 'None', '0', '8.52', '10', '56'), (10, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (11, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (12, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '146', '303', '3', '94', 'IET DAVV', 'Computer Engineering', '78.28', '100', '66'), (13, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (14, '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (15, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (16, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '74', '100', '0'), (17, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (18, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (19, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '70', '100', '0'), (20, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (21, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (22, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (23, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0'), (24, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '66', '100', '0'), (25, '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30'), (26, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (27, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '66', '100', '0'), (28, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (29, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (30, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0'), (31, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '67', '100', '0'), (32, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (33, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (34, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (35, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36'), (36, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '72.92', '100', '0'), (37, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (38, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0'), (39, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (40, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0'), (41, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (42, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (43, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (44, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (45, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (46, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (47, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (48, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (49, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '65', '100', '0'), (50, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (51, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (52, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '70.19', '100', '0'), (53, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (54, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (55, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (56, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '68', '100', '0'), (57, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (58, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (59, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (60, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '63', '100', '0'), (61, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '77', '100', '0'), (62, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (63, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0'), (64, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (65, '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (66, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (67, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (68, '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0'), (69, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (70, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (71, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '65', '100', '0'), (72, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (73, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (74, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (75, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0'), (76, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (77, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (78, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '73', '100', '0'), (79, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0'), (80, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (81, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '156', '148', '304', '3.5', '100', 'MU', 'Electronics', '0', '0', '0'), (82, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0'), (83, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (84, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '73.4', '100', '0'), (85, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '70', '100', '0'), (86, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (87, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '64.3', '100', '0'), (88, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '71.4', '100', '0'), (89, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '70.3', '100', '0'), (90, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '60', '100', '0'), (91, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (92, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '72', '100', '0'), (93, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (94, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (95, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (96, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '65.2', '100', '0'), (97, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (98, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (99, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (100, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (101, '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0'), (102, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (103, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (104, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0'), (105, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (106, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '72', '100', '0'), (107, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (108, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (109, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (110, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '75.2', '100', '0'), (111, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (112, '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (113, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '66.6', '100', '0'), (114, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (115, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (116, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (117, '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (118, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (119, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '66', '100', '0'), (120, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '65', '100', '0'), (121, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (122, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (123, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (124, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29'), (125, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (126, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (127, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (128, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '66', '100', '0'), (129, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (130, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (131, '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '800', '470', '1270', '4', '96', 'VTU', 'B.E Biotechnology', '75', '100', '0'), (132, '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (133, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (134, '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '160', '141', '301', 'None', '86', 'K J Somaiya College of Engiineering', 'Computer Science', '65.6', '100', '37'), (135, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (136, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '73', '100', '0'), (137, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0'), (138, '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '74', '100', '10'), (139, '1', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '164', '146', '310', '4', '110', 'Rajasthan Technical University', 'Computer Science', '79', '100', '29'), (140, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (141, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (142, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '62.3', '100', '0'), (143, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (144, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (145, '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '74.2', '100', '0'), (146, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (147, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '54.84', '100', '0'), (148, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '68.5', '100', '0'), (149, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '65.95', '100', '0'), (150, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (151, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (152, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (153, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '61', '100', '17'), (154, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (155, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '101', 'AITR RGPV', 'CS', '76.5', '100', '39'), (156, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '68', '100', '0'), (157, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '167', '148', '315', '4', '102', 'VTU', 'Electronics and Communication', '71', '100', '45'), (158, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0'), (159, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0'), (160, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (161, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (162, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0'), (163, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (164, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0'), (165, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '148', '309', 'None', '105', 'IES IPS Academy', 'Electronics and Communications', '73.5', '100', '53'), (166, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (167, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '64', '100', '0'), (168, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (169, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (170, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '68.6', '100', '0'), (171, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (172, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '64', '100', '0'), (173, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '74.57', '100', '0'), (174, '1', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'Osmania University', 'chemical engineering', '8.89', '10', '0'), (175, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (176, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (177, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0'), (178, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (179, '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (180, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (181, '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0'), (182, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (183, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0'), (184, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (185, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (186, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (187, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (188, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (189, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'PESIT', 'CSE', '8.08', '10', '0'), (190, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (191, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '59.8', '100', '0'), (192, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (193, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24'), (194, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '74', '100', '0'), (195, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (196, '1', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '162', '149', '311', '3', '106', 'None', 'ECE', '69.1', '100', '0'), (197, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '78', '100', '0'), (198, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '71', '100', '0'), (199, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33'), (200, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (201, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0'), (202, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '74', '100', '0'), (203, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '69', '100', '0'), (204, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '65', '100', '0'), (205, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (206, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (207, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '60', '100', '0'), (208, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '75.6', '100', '0'), (209, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0'), (210, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0'), (211, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '66.5', '100', '0'), (212, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (213, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (214, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43'), (215, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (216, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (217, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (218, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (219, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '65', '100', '0'), (220, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (221, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (222, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (223, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0'), (224, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0'), (225, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (226, '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (227, '1', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '158', '144', '302', '3', '104', 'MJCET', 'CSE', '3.89', '100', '0'), (228, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (229, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (230, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (231, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54'), (232, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (233, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (234, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '59', '100', '0'), (235, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '60', '100', '36'), (236, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0'), (237, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0'), (238, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (239, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '69', '100', '0'), (240, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (241, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '63', '100', '0'), (242, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '61.4', '100', '36'), (243, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (244, '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24'), (245, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0'), (246, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (247, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '67', '100', '0'), (248, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (249, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (250, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0'), (251, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0'), (252, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (253, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '68.41', '100', '0'), (254, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0'), (255, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '70.7', '100', '43'), (256, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (257, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '74', '100', '0'), (258, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (259, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (260, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0'), (261, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (262, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (263, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (264, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (265, '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0'), (266, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (267, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (268, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (269, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (270, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0'), (271, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17'), (272, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (273, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0'), (274, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '62', '100', '0'), (275, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '61', '100', '10'), (276, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (277, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (278, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0'), (279, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '82.14', '100', '0'), (280, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (281, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '66', '100', '0'), (282, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (283, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (284, '1', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '570', '1370', '4', '116', 'BITS Pilani', 'Electronics and Instrumentation', '9.1', '10', '0'), (285, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '81', '100', '51'), (286, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '71.82', '100', '0'), (287, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0'), (288, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '161', '160', '321', '3.5', '107', 'Saveetha Engineering College', 'Electronics & communication', '76', '100', '0'), (289, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0'), (290, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (291, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (292, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (293, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (294, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '71', '100', '0'), (295, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '63.4', '100', '0'), (296, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0'), (297, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (298, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0'), (299, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0'), (300, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (301, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (302, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (303, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (304, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (305, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '68.69', '100', '0'), (306, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '70', '100', '0'), (307, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '71', '100', '41'), (308, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (309, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (310, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '65', '100', '0'), (311, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (312, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24'), (313, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0'), (314, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '70', '100', '0'), (315, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (316, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (317, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0'), (318, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (319, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (320, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (321, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (322, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (323, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (324, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (325, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (326, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (327, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '70.2', '100', '30'), (328, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (329, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '69', '100', '0'), (330, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (331, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '72.34', '100', '0'), (332, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '65', '100', '0'), (333, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '69.16', '100', '0'), (334, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (335, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '80.83', '100', '0'), (336, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (337, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0'), (338, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (339, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (340, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '68.5', '100', '0'), (341, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (342, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (343, '1', 'Admit', 'MS', 'computer science / MIS', 'Spring ', '2015', '161', '147', '308', '3', '99', 'Dharamsinh Desai University', 'Electronics and Communications', '73.5', '100', '36'), (344, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (345, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (346, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (347, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (348, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (349, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '59.7', '100', '0'), (350, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (351, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (352, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '67', '100', '42'), (353, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (354, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0'), (355, '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0'), (356, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (357, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (358, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '70', '100', '0'), (359, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '66.45', '100', '0'), (360, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '69.9', '100', '0'), (361, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (362, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (363, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (364, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (365, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '59', '100', '0'), (366, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (367, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '75', '100', '12'), (368, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (369, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (370, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (371, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (372, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '67', '100', '0'), (373, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (374, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (375, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (376, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (377, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0'), (378, '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (379, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '79', '100', '24'), (380, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (381, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (382, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '71', '100', '0'), (383, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (384, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (385, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (386, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (387, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (388, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '73.1', '100', '22'), (389, '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '74.5', '100', '0'), (390, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '68.6', '100', '0'), (391, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (392, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0'), (393, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0'), (394, '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '67.5', '100', '0'), (395, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0'), (396, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (397, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '79', '100', '0'), (398, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (399, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '81', '100', '0'), (400, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '69', '100', '0'), (401, '1', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (402, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (403, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (404, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (405, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34'), (406, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '65.5', '100', '0'), (407, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '164', '143', '307', '3', '91', 'VIT', 'Computer Engineering', '8.74', '10', '0'), (408, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (409, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33'), (410, '1', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '160', '156', '316', '3.5', '106', 'Amrita School of Engineering', 'CSE', '6.38', '10', '22'), (411, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (412, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (413, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (414, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '70', '100', '0'), (415, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '78.12', '100', '6'), (416, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (417, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (418, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (419, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (420, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '65', '100', '0'), (421, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '74', '100', '0'), (422, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (423, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '78', '100', '0'), (424, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '83', '100', '0'), (425, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (426, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (427, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '72', '100', '44'), (428, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '63', '100', '45'), (429, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (430, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (431, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '79', '100', '0'), (432, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '75', '100', '0'), (433, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (434, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0'), (435, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (436, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0'), (437, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0'), (438, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (439, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '75', '100', '0'), (440, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (441, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '90.2', '100', '0'), (442, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0'), (443, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0'), (444, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0'), (445, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (446, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '63.08', '100', '18'), (447, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '67', '100', '0'), (448, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24'), (449, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0'), (450, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (451, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (452, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (453, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0'), (454, '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '154', '145', '299', '3.5', '87', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (455, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (456, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (457, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (458, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '68', '100', '0'), (459, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '780', '520', '1300', '3', '96', 'University of Pune', 'Information Technology', '53', '100', '0'), (460, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0'), (461, '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (462, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '75', '100', '0'), (463, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (464, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0'), (465, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (466, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (467, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '75.6', '100', '0'), (468, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (469, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (470, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '71', '100', '0'), (471, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '74', '100', '0'), (472, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (473, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (474, '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (475, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '67.8', '100', '33'), (476, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (477, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0'), (478, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (479, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '60', '100', '60'), (480, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (481, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (482, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (483, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (484, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '65.38', '100', '0'), (485, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0'), (486, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (487, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (488, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '74', '100', '0'), (489, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (490, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (491, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '76', '100', '42'), (492, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '74.7', '100', '22'), (493, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (494, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (495, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (496, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '74', '100', '0'), (497, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '75.66', '100', '33'), (498, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (499, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0'), (500, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (501, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (502, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (503, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '78', '100', '0'), (504, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (505, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '75', '100', '12'), (506, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '75', '100', '0'), (507, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (508, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '68.9', '100', '0'), (509, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (510, '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (511, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '62', '100', '0'), (512, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '54', '100', '0'), (513, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '74', '100', '29'), (514, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (515, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '71.84', '100', '0'), (516, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0'), (517, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0'), (518, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '66.2', '100', '0'), (519, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (520, '1', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '165', '160', '325', '4.5', 'None', 'Columbia University', '0', '0', '0', '0'), (521, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0'), (522, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (523, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '8.51', '100', '0'), (524, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '74.3', '100', '0'), (525, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '70', '100', '17'), (526, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '64.85', '100', '20'), (527, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (528, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (529, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '56.6', '100', '0'), (530, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0'), (531, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0'), (532, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0'), (533, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (534, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (535, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (536, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0'), (537, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '74', '100', '0'), (538, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0'), (539, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24'), (540, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (541, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (542, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (543, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '8.06', '100', '0'), (544, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (545, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '69.2', '100', '0'), (546, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '156', '317', '3', '112', 'Jaypee Institute of Information Technology', 'ECE', '5.5', '10', '0'), (547, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (548, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (549, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (550, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (551, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (552, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '72.5', '100', '0'), (553, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (554, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30'), (555, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0'), (556, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '72', '100', '0'), (557, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (558, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (559, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '79.5', '100', '17'), (560, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (561, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (562, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0'), (563, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (564, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (565, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (566, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0'), (567, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (568, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (569, '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (570, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '74', '100', '0'), (571, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '62', '100', '0'), (572, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '66.89', '100', '0'), (573, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '170', '156', '326', '4', '110', 'MU', 'Electronics & Telecommunication', '0', '100', '57'), (574, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '67', '100', '0'), (575, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (576, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (577, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0'), (578, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (579, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '57', '100', '0'), (580, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '76', '100', '0'), (581, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '65.79', '100', '0'), (582, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0'), (583, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0'), (584, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (585, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (586, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '68.84', '100', '0'), (587, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '77', '100', '0'), (588, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '65.81', '100', '0'), (589, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0'), (590, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (591, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0'), (592, '1', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (593, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (594, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0'), (595, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (596, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '70', '100', '0'), (597, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (598, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45'), (599, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0'), (600, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (601, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (602, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (603, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (604, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (605, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (606, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0'), (607, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (608, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (609, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (610, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27'), (611, '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (612, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6'), (613, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (614, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (615, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '77', '100', '0'), (616, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '63.5', '100', '72'), (617, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0'), (618, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (619, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0'), (620, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0'), (621, '1', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (622, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (623, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '64', '100', '33'), (624, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (625, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (626, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (627, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '70', '100', '34'), (628, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '71.78', '100', '0'), (629, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0'), (630, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (631, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (632, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '84.5', '100', '0'), (633, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '82', '100', '0'), (634, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (635, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8'), (636, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '63', '100', '0'), (637, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (638, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (639, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (640, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0'), (641, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0'), (642, '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '68', '100', '0'), (643, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (644, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (645, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (646, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '69', '100', '0'), (647, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '68', '100', '0'), (648, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (649, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (650, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (651, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (652, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (653, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0'), (654, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (655, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (656, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (657, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (658, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (659, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '77.4', '100', '0'), (660, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '66.8', '100', '0'), (661, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (662, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0'), (663, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '83.17', '100', '0'), (664, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (665, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27'), (666, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (667, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (668, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '78', '100', '0'), (669, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0'), (670, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '57.66', '100', '0'), (671, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19'), (672, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '72.2', '100', '0'), (673, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '73', '100', '0'), (674, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (675, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (676, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '63.4', '100', '0'), (677, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (678, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (679, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '78', '100', '0'), (680, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '61', '100', '0'), (681, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '63', '100', '0'), (682, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (683, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '65', '100', '0'), (684, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28'), (685, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (686, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (687, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0'), (688, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '72.24', '100', '20'), (689, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '69.7', '100', '0'), (690, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (691, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '75.2', '100', '25'), (692, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (693, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (694, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '61', '100', '0'), (695, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '82', '100', '0'), (696, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65'), (697, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0'), (698, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (699, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0'), (700, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '141', '302', '3', '85', 'GITAM', 'EEE', '85.6', '100', '33'), (701, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (702, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '70', '100', '0'), (703, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (704, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (705, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (706, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '71.5', '100', '0'), (707, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (708, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (709, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (710, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '69', '100', '0'), (711, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '76', '100', '0'), (712, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0'), (713, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '73.45', '100', '0'), (714, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (715, '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (716, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (717, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0'), (718, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (719, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (720, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0'), (721, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (722, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (723, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (724, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (725, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '76.1', '100', '0'), (726, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (727, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '68', '100', '0'), (728, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (729, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '71.8', '100', '0'), (730, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '75', '100', '0'), (731, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36'), (732, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (733, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24'), (734, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (735, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (736, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32'), (737, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (738, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0'), (739, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (740, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '76', '100', '0'), (741, '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (742, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '68', '100', '0'), (743, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (744, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (745, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (746, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '76', '100', '0'), (747, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (748, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (749, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (750, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (751, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '67.4', '100', '0'), (752, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (753, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '60', '100', '0'), (754, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0'), (755, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (756, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0'), (757, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (758, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (759, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0'), (760, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (761, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '77.5', '100', '0'), (762, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (763, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0'), (764, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (765, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (766, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (767, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (768, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (769, '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '76.88', '100', '0'), (770, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0'), (771, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0'), (772, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (773, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (774, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '470', '1260', '3.5', '95', 'Pune University', 'Information Technology', '63.93', '100', '0'), (775, '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0'), (776, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '55', '100', '0'), (777, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '72', '100', '0'), (778, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (779, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (780, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0'), (781, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '58', '100', '0'), (782, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '63', '100', '0'), (783, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '67', '100', '0'), (784, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (785, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18'), (786, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '74.42', '100', '36'), (787, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (788, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '66.5', '100', '0'), (789, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (790, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (791, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '76.21', '100', '0'), (792, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (793, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '710', '310', '1020', '2.5', '87', 'None', '0', '0', '0', '0'), (794, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '69.45', '100', '0'), (795, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (796, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (797, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (798, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (799, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (800, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0'), (801, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '72', '100', '0'), (802, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0'), (803, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '66.5', '100', '0'), (804, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (805, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '67', '100', '0'), (806, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (807, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (808, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (809, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (810, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (811, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '67.72', '100', '0'), (812, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '72.6', '100', '0'), (813, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (814, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '69', '100', '0'), (815, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (816, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '67', '100', '0'), (817, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (818, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '74.15', '100', '0'), (819, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (820, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (821, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '67.36', '100', '0'), (822, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (823, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0'), (824, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0'), (825, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0'), (826, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0'), (827, '1', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '160', '147', '307', '3', '98', 'Pune University', 'Mechanical Engineering', '65', '100', '0'), (828, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (829, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (830, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (831, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36'), (832, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (833, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (834, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '60', '100', '0'), (835, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (836, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (837, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '74', '100', '44'), (838, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '59.9', '100', '0'), (839, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '158', '153', '311', '3', '7', 'RGPV', 'IT', '64.4', '100', '0'), (840, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '70.6', '100', '0'), (841, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (842, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '60', '100', '0'), (843, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (844, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '152', '311', '3', '101', 'University of Mumbai', 'Computer', '66.5', '100', '0'), (845, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0'), (846, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (847, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (848, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (849, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (850, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (851, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (852, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (853, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (854, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (855, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (856, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '166', '149', '315', '3.5', '108', 'SNIST', 'IT', '80.42', '100', '30'), (857, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (858, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (859, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (860, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (861, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (862, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '540', '1340', '3.5', '105', 'PSG College of Technology', 'Electronics and Communications Engg.', '8.3', '10', '0'), (863, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (864, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '76', '100', '0'), (865, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (866, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (867, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (868, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (869, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0'), (870, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (871, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (872, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (873, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '65', '100', '0'), (874, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (875, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '76', '100', '0'), (876, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (877, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0'), (878, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (879, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (880, '1', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2013', '164', '146', '310', '3', '97', 'Amrita School of Engineering', 'EIE', '7.22', '10', '0'), (881, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (882, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (883, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '57', '100', '0'), (884, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '75.4', '100', '0'), (885, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '77', '100', '0'), (886, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (887, '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0'), (888, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (889, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '60', '100', '0'), (890, '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (891, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (892, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (893, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0'), (894, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (895, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '67', '100', '0'), (896, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (897, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0'), (898, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (899, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (900, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0'), (901, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (902, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0'), (903, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0'), (904, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '740', '530', '1270', '3', 'None', 'Military Institute of Science and TEchnology', 'Computer Science', '3.41', '4', '0'), (905, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (906, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (907, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (908, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (909, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (910, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (911, '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0'), (912, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0'), (913, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (914, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '73', '100', '0'), (915, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (916, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (917, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '70', '100', '0'), (918, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (919, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '67.79', '100', '0'), (920, '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '77', '100', '0'), (921, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60'), (922, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (923, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '70.5', '100', '28'), (924, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (925, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (926, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0'), (927, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (928, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '64.9', '100', '48'), (929, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0'), (930, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (931, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2012', '750', '500', '1250', '4', '97', 'HKBKCE(VTU)', 'Computer Science', '65', '100', '0'), (932, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (933, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '62', '100', '0'), (934, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '65', '100', '0'), (935, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (936, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (937, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '62', '100', '36'), (938, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0'), (939, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (940, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '157', '154', '311', '3', '100', 'VTU', 'Computer Science', '75.61', '100', '0'), (941, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '65', '100', '0'), (942, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (943, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '62.5', '100', '0'), (944, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0'), (945, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (946, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (947, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0'), (948, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (949, '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (950, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0'), (951, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (952, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (953, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0'), (954, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (955, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '68.5', '100', '0'), (956, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (957, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (958, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '63', '100', '0'), (959, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18'), (960, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (961, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (962, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '63', '100', '0'), (963, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (964, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (965, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (966, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (967, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0'), (968, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (969, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '77.7', '100', '0'), (970, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (971, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '66.5', '100', '0'), (972, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (973, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (974, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (975, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '79', '100', '0'), (976, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (977, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '57', '100', '0'), (978, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (979, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '67', '100', '36'), (980, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '74', '100', '0'), (981, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (982, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (983, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0'), (984, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (985, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (986, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (987, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0'), (988, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (989, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0'), (990, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0'), (991, '1', 'Admit', 'MS', 'CS/MIS', 'Fall ', '2014', '161', '145', '306', '3', '101', 'Pune University', 'Coputer Science', '58', '100', '36'), (992, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '64', '100', '0'), (993, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (994, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30'), (995, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (996, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '62.17', '100', '0'), (997, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '67.63', '100', '0'), (998, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (999, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (1000, '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0'), (1001, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (1002, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '161', '142', '303', '2.5', '102', 'Coimbatore Insitute of Technology', 'Information Technology', '8.39', '10', '0'), (1003, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '164', '330', '3', '105', 'COEP', 'I.T.', '7.98', '10', '0'), (1004, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '144', '301', '3', '85', 'MU', 'Information Technology', '65', '100', '44'), (1005, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0'), (1006, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '159', '149', '308', '4', '108', 'VNR VJIET', 'INFORMATION TECHNOLOGY', '75.85', '100', '0'), (1007, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (1008, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '790', '640', '1430', '4', '113', 'MU', 'Computers', '76', '100', '0'), (1009, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '370', '1100', '3', '95', 'VIT', 'Btech Biotechnology', '7.89', '10', '0'), (1010, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '3', '100', 'Nirma Institute of Technology', 'Computer Engineering', '8.34', '10', '0'), (1011, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (1012, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (1013, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (1014, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '3.5', '108', 'S.P.I.T.', 'Electronics', '74.4', '100', '0'), (1015, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (1016, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (1017, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (1018, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (1019, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '750', '700', '1450', '4', '101', 'MSRIT', 'MECHANICAL', '8.25', '10', '0'), (1020, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (1021, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (1022, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (1023, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (1024, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1025, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '680', '340', '1020', '3.5', '105', 'MU', 'Computer Engg', '62', '100', '0'), (1026, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '420', '1120', '3', '96', 'VTU', 'Information Science', '71.5', '100', '0'), (1027, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (1028, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '144', '306', '3', '85', 'BITS Goa', 'M.SC Economics+B.E.Computerscience', '0', '0', '48'), (1029, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (1030, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '108', 'IPEC', 'IT', '67.4', '100', '0'), (1031, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '640', '320', '960', '3.5', '102', 'Gujarat Technological University', 'pharmacy', '0', '0', '0'), (1032, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '110', 'Rajagiri School of Engineering and Technology', 'IT', '80', '100', '48'), (1033, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1034, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '3', '98', 'Nagpur University', '0', '57', '100', '0'), (1035, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (1036, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (1037, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (1038, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (1039, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '3', '94', 'JNTU', 'Computer Science', '63.6', '100', '0'), (1040, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (1041, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '158', '147', '305', '3.5', '103', 'Kumaun University', 'IT', '79.3', '100', '0'), (1042, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (1043, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '580', '1310', '3.5', '101', 'P.V.P.P.C.O.E. (Mumbai University)', 'Information Technology (I.T.)', '70.2', '100', '0'), (1044, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '107', 'MU', 'Production Engineering', '58', '100', '0'), (1045, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (1046, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1047, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (1048, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '157', '154', '311', '3', '108', 'VIT Mumbai University', 'Computer Engineering', '58.33', '100', '36'), (1049, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '140', '300', '3', '91', 'University of Mumbai', 'EXTC', '64', '100', '36'), (1050, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3', '96', 'Pune University', 'Computer Science', '74.5', '100', '0'), (1051, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '158', '150', '308', '4.5', '101', 'MU', 'Electronics', '58.23', '4', '0'), (1052, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '146', '306', '3.5', 'None', 'Vishwakarma Institute of Technology', 'Computer', '8.7', '10', '0'), (1053, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (1054, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (1055, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (1056, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (1057, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '740', '630', '1370', '3', '102', 'Vardhaman', 'IT', '67.3', '100', '0'), (1058, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (1059, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '151', '315', '3', '109', 'R.G.P.V.', 'EC', '75.6', '100', '20'), (1060, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (1061, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (1062, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (1063, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '152', '315', '4', '107', 'SSN College of Engineering', 'CSE', '72', '100', '0'), (1064, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (1065, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '490', '1280', '4', '115', 'Goa University', 'Electronics and Telcommunication', '4', '100', '0'), (1066, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (1067, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (1068, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '101', "Vidyavardhini's COE & Tech", 'IT', '71.12', '100', '0'), (1069, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '155', '143', '298', '3', '96', 'VIT University', 'COMPUTER SCIENCE', '8.38', '10', '0'), (1070, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '157', '316', '4', '110', 'Sardar Patel College of Engineering', 'Computer', '73.4', '100', '30'), (1071, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (1072, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '152', '312', '4', '112', 'DDIT', 'Computer Engineering', '7.21', '10', '12'), (1073, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '156', '317', '3.5', '99', 'Sinhgad College of Engineering', 'Computer Engineering', '63.17', '100', '0'), (1074, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (1075, '1', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2011', '800', '550', '1350', '4', '96', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1076, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (1077, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (1078, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '370', '1160', '3.5', '87', 'Sri Sairam Engineering College', 'ECE', '76', '100', '0'), (1079, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '156', '315', '3.5', '110', 'Pune University', 'Computer', '67', '100', '0'), (1080, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '490', '1280', '4', '247', 'MREC', 'CS', '79', '100', '0'), (1081, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '147', '307', '3.5', '104', 'MU', 'Information Technology', '58.36', '100', '0'), (1082, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (1083, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '154', '310', '3.5', '113', 'VTU', 'ISE', '74.66', '100', '0'), (1084, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (1085, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '370', '1100', '3', '106', 'LNCT', 'EC', '0', '0', '0'), (1086, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '790', '580', '1370', '3.5', 'None', 'Amity University', 'ECE', '7.01', '10', '0'), (1087, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '160', '319', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (1088, '1', 'Admit', 'MS', 'MEM', 'Fall ', '2014', '159', '143', '302', '3', 'None', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics', '6.7', '10', '0'), (1089, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '530', '1280', '3.5', '113', 'Amity University', 'Electronics & Communication', '7', '10', '0'), (1090, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '410', '1190', '3.5', '110', 'NMIMS', 'Electronics', '3.2', '4', '0'), (1091, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (1092, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '710', '320', '1030', '3.5', '85', 'Punjab Technical University', 'CSE', '75', '100', '0'), (1093, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0'), (1094, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '99', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication Engineering', '69', '100', '15'), (1095, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '99', 'SNDT', 'I.T', '3.73', '4', '24'), (1096, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '157', '315', '3.5', '114', 'VTU', 'Information Science', '68', '100', '0'), (1097, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (1098, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (1099, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '150', '314', '3.5', '105', 'Galgotias College Of Engineering And Technology', 'Electronics and Communication', '69', '100', '0'), (1100, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '99', 'Jaypee Institute of Information Technology', 'Department of Computer Science and ICT', '77', '100', '24'), (1101, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (1102, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (1103, '1', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '157', '149', '306', 'None', '102', 'NCET Bangalore', 'Civil Engineering', '65', '100', '0'), (1104, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '144', '311', '3.5', '93', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.16', '10', '0'), (1105, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (1106, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (1107, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (1108, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (1109, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (1110, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (1111, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (1112, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '143', '300', '3.5', 'None', 'UPTU', 'CS&E;', '64', '100', '54'), (1113, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1114, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '151', '302', '3.5', '108', 'VTU', 'Computer Science and Engineering', '68.8', '100', '0'), (1115, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (1116, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '630', '590', '1220', 'None', 'None', 'Thiagarajar College of engineering', 'ECE', '7.9', '10', '0'), (1117, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (1118, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (1119, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '144', '311', '4', '111', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73.8', '100', '0'), (1120, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '166', '155', '321', 'None', '103', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.75', '10', '0'), (1121, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '152', '308', '4.5', '107', 'University of Pune', 'Information technology', '7.77', '10', '0'), (1122, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (1123, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '142', '301', '3', '93', 'Ramrao Adik Institute of Technology', 'Information Technology', '3.2', '4', '54'), (1124, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (1125, '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2013', '163', '147', '310', '3.5', '101', 'VIT', 'electronics and communication', '3.68', '4', '0'), (1126, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1127, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (1128, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (1129, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (1130, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '103', 'VTU', 'CS', '74.3', '100', '0'), (1131, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (1132, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '162', '328', '4', '115', 'BIT Mesra', 'Computer Science', '7.31', '100', '34'), (1133, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (1134, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (1135, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (1136, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '650', '1450', '4.5', '300', 'MU', 'Comp Engg', '62', '100', '0'), (1137, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '570', '1360', '3', '108', 'St Martins engineering college', 'CSE', '72', '100', '0'), (1138, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (1139, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '152', '310', '3', '101', 'JNTU', 'CSE', '76.4', '100', '19'), (1140, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (1141, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', 'None', 'VTU', 'CSE', '81.5', '100', '0'), (1142, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '155', '319', '4.5', '102', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.7', '10', '0'), (1143, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0'), (1144, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (1145, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '101', 'mgit', 'it', '77.2', '100', '0'), (1146, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'PVP Siddhartha Inst. of Tech', 'CSE', '74.41', '100', '0'), (1147, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '150', '153', '303', '2.5', 'None', 'JNTU', 'b.pharmacy', '70.1', '100', '0'), (1148, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (1149, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (1150, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '164', '149', '313', '3.5', '103', 'CBIT', 'ECE', '83', '100', '0'), (1151, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (1152, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '109', 'GITAM', 'CSE', '8.97', '10', '0'), (1153, '1', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '148', '144', '292', '3', '100', 'Osmania University', 'biotechnology', '78', '100', '0'), (1154, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '740', '480', '1220', '3.5', '97', 'BITS Pilani', 'Pharmacy and health sciences', '8.26', '10', '0'), (1155, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (1156, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '2.5', '98', 'UPTU', 'Computer Science & Tech', '8', '10', '0'), (1157, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '300', '1100', '3', 'None', 'Sreenidhi Institute of Science & Technology', 'EEE', '73.2', '100', '0'), (1158, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'D J Sanghvi', 'Computers', '65.5', '100', '0'), (1159, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '3', '88', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '72', '100', '0'), (1160, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (1161, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '152', '144', '296', '3.5', '95', 'NIT Warangal', 'Computer Science', '8.4', '10', '0'), (1162, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '159', '319', '4', '115', 'NIT Raipur', 'IT', '8.43', '10', '0'), (1163, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '148', '312', '4', '112', 'Anna University', 'EE', '7.36', '10', '0'), (1164, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '510', '1240', '4', '104', "SLC's institute of Engg and Tech affiliated to JNTU", 'CSE', '72', '100', '0'), (1165, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (1166, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '550', '1350', '3.5', '99', 'VIT', 'Information Technology', '7.9', '10', '0'), (1167, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '144', '302', 'None', '98', 'West Bengal University Of Technology', 'Electronics & Instrumentation', '8.25', '10', '0'), (1168, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '155', '145', '300', '3', '100', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.05', '10', '67'), (1169, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '151', '314', '3.5', '109', 'JNTU', 'Mechanical', '63.4', '100', '0'), (1170, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '4', '84', 'None', 'Mathematics', '76', '100', '0'), (1171, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (1172, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '155', '149', '304', '3.5', '96', 'University of Calicut', 'Computer Science', '64.5', '100', '0'), (1173, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (1174, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (1175, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (1176, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (1177, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '147', '306', '3.5', '104', 'Coimbatore Insitute of Technology', 'M. Sc. Software Engineering(5 Year Integrated Course)', '74.11', '100', '0'), (1178, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (1179, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (1180, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (1181, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (1182, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'University of Pune', 'IT', '69', '100', '0'), (1183, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '104', 'PICT', 'Mechanical', '60', '100', '0'), (1184, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '97', 'PICT', 'IT', '3.78', '4', '0'), (1185, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (1186, '1', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0'), (1187, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '111', 'NIT Silchar', 'Computer Science and Engineering', '8.17', '10', '0'), (1188, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (1189, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '147', '317', '3.5', '105', 'YMCA', 'Information Technology', '8.81', '10', '24'), (1190, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (1191, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '152', '142', '294', '3', '98', 'MU', 'Information Technology', '67', '100', '0'), (1192, '1', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', '156', '158', '314', '3.5', '101', 'D Y Patil College of Engineering', 'Biotechnology', '68', '100', '0'), (1193, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (1194, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '770', '1540', '3.5', '280', 'VTU', 'Computer Science', '78', '100', '0'), (1195, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'MU', 'Computer Engineering', '68.57', '100', '0'), (1196, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (1197, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '390', '1140', '3', '99', 'None', '0', '0', '0', '0'), (1198, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (1199, '1', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '96', 'IIT Bombay', 'Civil Engineering', '7.37', '10', '0'), (1200, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (1201, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (1202, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '151', '307', '3.5', '105', 'VTU', 'CSE', '67', '100', '0'), (1203, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '105', 'Punjab Technical University', 'Computer Science', '72.5', '100', '0'), (1204, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (1205, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'UPTU', 'electronics and Communication', '7.62', '10', '0'), (1206, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (1207, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (1208, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (1209, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (1210, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (1211, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '152', '313', '3.5', 'None', 'MU', 'ExTC', '62', '100', '31'), (1212, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '790', '490', '1280', '4', '109', 'MU', 'Information Technology', '67', '100', '33'), (1213, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (1214, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (1215, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '159', '322', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (1216, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '670', '1430', '4', '116', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (1217, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (1218, '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '470', '1240', '3', '102', 'Sir MVIT', 'Information Science', '75.89', '100', '0'), (1219, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (1220, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '610', '1390', '4.5', '297', 'G.G.S.I.P. U', 'Computer Science', '82', '100', '0'), (1221, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '680', '600', '1280', '4', '108', 'Bharati Vidyapeeth', 'Pharmacy', '71', '100', '0'), (1222, '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1223, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (1224, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '330', '1090', '3', '91', 'Fr.CRCE', 'Computer Engineering', '70.42', '100', '0'), (1225, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (1226, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (1227, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (1228, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (1229, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '145', '303', '3.5', '100', 'MU', 'Computer', '70', '100', '0'), (1230, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '2.5', '103', 'J.B. Institute of Engg & Tech(Affliated to JNTU)', 'Computer Science', '74.9', '100', '0'), (1231, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '660', '410', '1070', '3', '97', 'Sir MVIT', 'CS', '68.32', '100', '0'), (1232, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '350', '1150', '3.5', 'None', 'JNTU', 'electronics and Instrumentation', '0', '0', '0'), (1233, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (1234, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (1235, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '3.5', '98', 'Sri Venkateswara College of Engineering', 'Computer Science', '6.59', '10', '0'), (1236, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '94', 'Atharva College', 'COMPUTER ENGINEERING', '3.71', '4', '0'), (1237, '1', 'Admit', 'MS', 'Finance', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Iowa State University', 'Economics and Finance', '3.22', '4', '0'), (1238, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (1239, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3.5', '107', 'VTU', 'Computer Science', '74.3', '100', '0'), (1240, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '460', '1180', '2.5', '84', 'RCET bhilai', 'electrical', '7.2', '100', '0'), (1241, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '147', '310', '3.5', '110', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '8.1', '10', '11'), (1242, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '96', 'JNTU', 'ECE', '71.35', '100', '0'), (1243, '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (1244, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (1245, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '750', '1550', '5', '290', 'SPCE', 'CE', '63', '100', '0'), (1246, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '165', '141', '306', '4', '104', 'SSN College of Engineering', 'ECE', '85', '100', '0'), (1247, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (1248, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (1249, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (1250, '1', 'Admit', 'MS', 'medicinal chemistry', 'Fall ', '2014', '155', '158', '313', '4', '113', 'MU', 'Pharmacy', '57.5', '100', '24'), (1251, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '155', '150', '305', '3.5', '111', 'Anna University', 'Chemical Engg', '9', '10', '36'), (1252, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (1253, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (1254, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (1255, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (1256, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2015', '154', '145', '299', '3.5', '102', 'Kurukshetra University', 'Electronics and Communication', '68', '100', '0'), (1257, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '630', '1410', '4', '107', 'MU', 'E & TC', '66', '100', '0'), (1258, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '157', '151', '308', '4', '102', 'MU', 'Computer Engineering', '64', '100', '0'), (1259, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '150', '311', '3', '111', 'COEP', 'Mechanical', '6.4', '10', '0'), (1260, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (1261, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (1262, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '146', '310', '3.5', '101', 'GTU', 'Computer Enginnering', '7.77', '10', '0'), (1263, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (1264, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (1265, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (1266, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3.5', '111', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '73', '100', '0'), (1267, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (1268, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (1269, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '4', '105', 'UPTU', 'Computer Science', '3.2', '4', '0'), (1270, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (1271, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (1272, '1', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39'), (1273, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', 'None', '308', 'MU', 'Information technology', '66', '100', '0'), (1274, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', 'None', 'Model Engineering College', 'Computer Science', '74', '100', '36'), (1275, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (1276, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (1277, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3', '101', 'B M S College of Engineering', 'Electronics and Communications', '77', '100', '0'), (1278, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (1279, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '103', 'Dr. AIT VTU', 'Computer Science Engineering', '71.15', '100', '0'), (1280, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (1281, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1282, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (1283, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3', '104', 'R V College of Engineering', 'Electronics and Communication', '8.84', '10', '0'), (1284, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', 'None', 'Datta Meghe College of Engineering', 'Computer Science and Engineering', '57', '100', '16'), (1285, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '156', '316', '3.5', '7', 'Amrita School of Engineering', 'CSE', '2.5', '4', '0'), (1286, '1', 'Admit', 'MS', 'energy', 'Fall ', '2014', '700', '430', '1130', '3', '7', 'Anna University', 'EEE', '8.75', '100', '0'), (1287, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (1288, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (1289, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '167', '333', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '76.7', '100', '0'), (1290, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (1291, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '700', '560', '1260', '4.5', '100', 'VTU', 'ece', '66', '100', '0'), (1292, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (1293, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (1294, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (1295, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '2.5', '101', 'CITM indore', 'computer science', '66.13', '100', '0'), (1296, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '152', '313', '3.5', '102', 'MU', 'EXTC', '75', '100', '0'), (1297, '1', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'Amrita School of Engineering', 'IT', '8.9', '10', '29'), (1298, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '95', 'Nirma Institute of Technology', 'Information Technology', '8.46', '10', '0'), (1299, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (1300, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '101', 'sri krishna devaraya university', 'CSE', '7.6', '10', '0'), (1301, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (1302, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '146', '299', '3', '96', 'SRM', 'Mechanical Engineering', '8.2', '10', '0'), (1303, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (1304, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (1305, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (1306, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (1307, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '161', '141', '302', '3', '102', 'Inderprastha Engineering College', 'Electronics & Communication', '70', '100', '0'), (1308, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (1309, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '3.5', '97', 'CEG', 'M.Sc(5 year Integrated)Information Technology', '8.52', '10', '0'), (1310, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '100', 'Rajasthan Technical University', 'Computer Science', '75.3', '100', '0'), (1311, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (1312, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '165', '332', '4.5', '113', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.89', '10', '14'), (1313, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '470', '1270', '3', '101', 'Northeastern', 'TSM', '3.33', '4', '0'), (1314, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (1315, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '168', '156', '324', '3.5', '112', 'Chitkara University', 'Computer Science Engineering', '7.67', '10', '0'), (1316, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '147', '312', '3.5', '312', 'JNTU', 'CSE', '71', '100', '0'), (1317, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (1318, '1', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '114', 'VTU', 'Computer science', '79', '100', '0'), (1319, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (1320, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '740', '440', '1180', '2', '91', 'VESIT', 'CS', '70', '100', '0'), (1321, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (1322, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2007', '780', '410', '1190', '3.5', '280', 'SASTRA', 'ECE', '7', '10', '0'), (1323, '1', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '149', '308', '3', '102', 'Nagarjuna University', 'Electronics & Computer Engineering', '8.26', '10', '0'), (1324, '1', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (1325, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '161', '153', '314', '3', '104', 'None', 'Computer Science', '7.67', '10', '0'), (1326, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '147', '309', '4', '99', 'Pune University', 'Computer', '74', '100', '12'), (1327, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (1328, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '170', '150', '320', '3', '104', 'CVSR/ JNTU-Hyderabad', 'CSE', '72', '100', '0'), (1329, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '153', '312', '3.5', '109', 'None', '0', '0', '0', '0'), (1330, '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1331, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (1332, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '4.5', '110', 'Maharishi Dayanand University', 'Computer Science', '66', '100', '0'), (1333, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '145', '304', '3.5', '99', 'JNTU', 'Computer Science and Engineering', '75.8', '100', '22'), (1334, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (1335, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (1336, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (1337, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (1338, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '146', '309', '3', '101', 'MU', 'Computer Engineering', '58', '100', '0'), (1339, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '4', '113', 'VTU', 'CSE', '73', '100', '0'), (1340, '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (1341, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (1342, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '105', 'MGIT - JNTUH', 'EEE', '73', '100', '0'), (1343, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (1344, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (1345, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '154', '144', '298', '3', 'None', 'Rajasthan Technical University', 'Computer Engineering', '65', '100', '0'), (1346, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '330', '1120', '3.5', '85', 'MU', 'Computer', '63.5', '100', '0'), (1347, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (1348, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (1349, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (1350, '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '291', '139', '430', '3', '80', 'University of Mumbai', 'Information Technology', '54', '100', '0'), (1351, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (1352, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '159', '320', '3', '116', 'MU', 'Computer Engineering', '61', '100', '0'), (1353, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (1354, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (1355, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (1356, '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '156', '152', '308', '5', '111', 'RKNEC', 'Industrial', '74', '100', '0'), (1357, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (1358, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (1359, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '520', '1310', 'None', 'None', 'Atharva College', 'IT', '69', '100', '0'), (1360, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '153', '314', '3', '101', 'Nagpur University', 'Electronics Engineering', '76', '100', '0'), (1361, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '3', '104', 'JUET', 'CSE', '6.9', '10', '0'), (1362, '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Spring ', '2013', '161', '144', '305', '3', '84', 'American International University', 'Electrical & Electronic Engineering', '3.04', '4', '0'), (1363, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '90', 'Mepco Schlenk Engineering College', 'Computer Science', '75', '100', '0'), (1364, '1', 'Reject', 'MS', 'Computational Science', 'Fall ', '2015', '158', '145', '303', '3', '110', 'KLS Gogte Institute of Technology', 'Computer Science and Engineering', '79.12', '100', '31'), (1365, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (1366, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (1367, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (1368, '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (1369, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (1370, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (1371, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (1372, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '510', '1280', '4', '95', 'Goa University', 'Electronics and Telecommunication', '72', '100', '0'), (1373, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '4', '104', 'K J Somaiya College of Engiineering', 'COMPS', '65', '100', '0'), (1374, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (1375, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '540', '1340', '3.5', '103', 'VNIT Nagpur', 'ECE', '8.22', '10', '0'), (1376, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '148', '310', '3', '100', 'UPTU', 'Computer Science', '67', '100', '0'), (1377, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (1378, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (1379, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (1380, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (1381, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '490', '1280', '4', '103', 'MU', 'IT', '67', '100', '0'), (1382, '1', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (1383, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '97', 'Kurukshetra University', 'information technology', '71', '100', '0'), (1384, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (1385, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (1386, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '158', '156', '314', '3.5', '109', 'SAKEC University of Mumbai', 'Electronics Engineering', '60.22', '100', '0'), (1387, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (1388, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (1389, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (1390, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (1391, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (1392, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (1393, '1', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '165', '151', '316', '2.5', '95', 'UPTU', 'ME + MBA', '64.58', '100', '0'), (1394, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (1395, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '690', '570', '1260', '2.5', '101', 'Pune University', 'Computer Science', '55', '100', '0'), (1396, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2103', '152', '144', '296', '3', '88', 'VTU', 'computer science', '78', '100', '0'), (1397, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '153', '148', '301', 'None', 'None', 'Pune University', 'Computer Science', '59', '100', '0'), (1398, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (1399, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '3', '101', 'Pune University', 'Electronics and communication', '65', '100', '0'), (1400, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (1401, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '2.5', '84', 'NIT Allahabad', 'Information Technology', '6.89', '10', '0'), (1402, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '4.5', '112', 'Cochin University of Science and Technology', 'Computer Science', '66.35', '100', '34'), (1403, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (1404, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (1405, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (1406, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (1407, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (1408, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '140', '305', '3', '83', 'GTU', 'ECE', '7.73', '10', '0'), (1409, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (1410, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (1411, '1', 'Reject', 'MS', 'Information technology management', 'Fall ', '2013', '161', '147', '308', '3', '93', 'R.G.P.V/Chamelidevi School Of Engineering', 'Electronics & Communication', '74.5', '100', '0'), (1412, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (1413, '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '161', '150', '311', '3', '95', 'MSRIT', 'Telecommunication', '75', '100', '0'), (1414, '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '162', '157', '319', 'None', '110', 'MU', 'Electronics', '55', '100', '0'), (1415, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (1416, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (1417, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (1418, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (1419, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '305', '149', '454', '3', 'None', 'Pune University', 'Computer Engineering', '3.8', '100', '0'), (1420, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (1421, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3', '101', 'University of Mumbai', 'Computer Engineering', '65.73', '100', '0'), (1422, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (1423, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '99', 'University of Pune', 'Computer Engg.', '58.46', '100', '0'), (1424, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '660', '380', '1040', '3', '91', 'Pune University', 'Computer and Information Technology', '64', '100', '0'), (1425, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '153', '152', '305', '2', '91', 'IIPS DAVV', 'Mtech(IT)', '82', '100', '0'), (1426, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '620', '1410', '4.5', '287', 'MU', 'Elec and Telecom', '67', '100', '0'), (1427, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (1428, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '159', '146', '305', '2.5', '92', 'Bangalore Institute of Technology', 'Computer Science', '81', '100', '0'), (1429, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (1430, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (1431, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (1432, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (1433, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (1434, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '690', '620', '1310', '3', '96', 'University of Rajasthan', 'Mechanical Engineering', '70.5', '100', '0'), (1435, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (1436, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (1437, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (1438, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '161', '145', '306', '3', '102', 'Sri Manakula Vinayagar Engineering College', 'Electrical and Electronics Engineering', '8.53', '10', '0'), (1439, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '144', '299', '3', '84', 'Anna University', 'Computer science and engineering', '76', '100', '0'), (1440, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '800', '580', '1380', '4', '115', 'MU', 'Computers', '53.95', '100', '0'), (1441, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '2.5', '90', 'Pune University', 'Computerscience', '56', '100', '44'), (1442, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (1443, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (1444, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (1445, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '540', '1250', '3', '105', 'UPTU', 'Electronics & Communication', '65.2', '100', '0'), (1446, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '530', '1310', '3', '93', 'PESIT', 'Information Science', '65', '100', '0'), (1447, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '164', '147', '311', '4.5', '95', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '5.6', '10', '0'), (1448, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (1449, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (1450, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (1451, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '110', 'Sri Venkateswara College of Engineering', 'ECE', '76', '100', '0'), (1452, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (1453, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (1454, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '660', '460', '1120', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '55', '100', '0'), (1455, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3.5', '102', 'RAIT', 'Computer Engg.', '68.2', '100', '0'), (1456, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3', '104', 'VIIT', 'computer engineering', '55', '100', '0'), (1457, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '430', '1210', '3.5', '103', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (1458, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (1459, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3.5', '103', 'GITAM', 'IT', '67', '100', '0'), (1460, '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (1461, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '146', '306', '2.5', 'None', "St Joseph's College of Engineering", 'Mechanical', '8.32', '10', '8'), (1462, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (1463, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (1464, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '156', '321', '4', '107', 'BVM Engineering College', '0', '7.96', '10', '0'), (1465, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (1466, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (1467, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (1468, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (1469, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '4', '100', 'Bangladesh University of Engineering & Technology', 'Computer Science', '3.91', '4', '0'), (1470, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '440', '1150', '3', '94', 'VTU', 'Electronics and Communication', '60.69', '100', '0'), (1471, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (1472, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (1473, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '310', '1040', '3', '89', 'Somaiya', 'IT', '61', '100', '0'), (1474, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (1475, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3', '100', 'St Francis Institute of Technology - Mumbai Unversity', 'Electronics and telecommunication', '61.7', '100', '0'), (1476, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '161', '318', '4.5', '112', 'Pune University', 'Computer Engineering', '68.5', '100', '0'), (1477, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '450', '1210', '3', '96', 'Pune University', 'Computer Science', '59', '100', '0'), (1478, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '150', '151', '301', '3', '102', 'MU', 'computer', '64', '100', '0'), (1479, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (1480, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (1481, '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '161', '155', '316', '4', '101', 'University of Pune', 'IT', '63', '100', '13'), (1482, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (1483, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (1484, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (1485, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (1486, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '4', '103', 'Shivajirao S. Jondhale College of Engineering', 'Computer Engineering', '60', '100', '0'), (1487, '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0'), (1488, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '111', 'GGSIPU', 'MCA(Software Engineering)', '71', '100', '32'), (1489, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '145', '303', '3.5', 'None', 'University of Kerala', 'CSE', '79.8', '100', '0'), (1490, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (1491, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (1492, '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2013', '730', '320', '1050', '3.5', '94', 'MU', 'Electronics Engineering', '62.68', '100', '0'), (1493, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '330', '1060', '3', '87', 'University of Mumbai', 'Electronics', '68', '100', '0'), (1494, '1', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (1495, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '3', '106', 'Sathyabama University', 'Electronics and telecommunication', '8.4', '10', '0'), (1496, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (1497, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (1498, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '350', '1050', '3', '105', 'MU', 'Computer Science', '54', '100', '0'), (1499, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (1500, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '143', '291', '4.5', '103', 'Pune University', 'IT', '67', '100', '0'), (1501, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '152', '313', '3', '104', 'Thapar University', 'Electronis and Instrumentation', '8.8', '10', '0'), (1502, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (1503, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (1504, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (1505, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '151', '312', '3', '88', 'I.E.T D.A.V.V.', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '66.45', '100', '0'), (1506, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (1507, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (1508, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '151', '311', '3', '101', 'VIT University', 'CSE', '8.56', '10', '24'), (1509, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (1510, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (1511, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (1512, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '560', '1350', '4', '106', 'Nagpur University', 'Electronics and Comm.', '75', '100', '0'), (1513, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (1514, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '108', 'VTU', 'Electronics & Communication', '71', '100', '36'), (1515, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '162', '325', '4', '8', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.19', '10', '0'), (1516, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (1517, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (1518, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (1519, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '103', 'Ahmedabad Institute of Technology', 'Computer Engineering', '3.26', '4', '0'), (1520, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (1521, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (1522, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (1523, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '146', '304', '3', 'None', 'SNIST', '0', '68', '100', '54'), (1524, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (1525, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (1526, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (1527, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (1528, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (1529, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '98', 'NIT Allahabad', 'IT', '7.8', '10', '0'), (1530, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (1531, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (1532, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (1533, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (1534, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (1535, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3', '93', 'Vishwakarma Institute of Technology', 'Computer Science', '7.1', '10', '0'), (1536, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (1537, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (1538, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (1539, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '650', '530', '1180', '3', '104', 'MU', 'Information technology', '53', '100', '0'), (1540, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '160', '312', '4', '119', 'Shivaji University', 'Electronics & Telecommunication', '3.02', '4', '0'), (1541, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '97', 'Pune University', 'Electronic and Telecommunication', '61', '100', '44'), (1542, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (1543, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '42', '24', '66', '4', '96', 'MU', 'Computer science', '62.3', '100', '0'), (1544, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (1545, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (1546, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (1547, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (1548, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (1549, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (1550, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (1551, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '460', '1170', '3', '100', 'University of Pune', 'Compurter Engineering', '60', '100', '0'), (1552, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (1553, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (1554, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (1555, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (1556, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '149', '317', '3', '95', 'VNR VJIET', 'CSE', '67', '100', '0'), (1557, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '159', '149', '308', '3', '81', 'GTU', 'EC', '7.16', '100', '0'), (1558, '1', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '730', '530', '1260', '3.5', '99', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '55', '100', '0'), (1559, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '154', '144', '298', '3.5', '86', 'University of Pune', 'Information Technology', '63', '100', '0'), (1560, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', 'None', '104', 'Amrita School of Engineering', 'Electrical and Electronics', '6.7', '10', '45'), (1561, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'MU', 'IT', '57', '100', '0'), (1562, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '740', '620', '1360', '3.5', '117', 'Atria Institute of Technology', 'telecommunication', '63', '100', '0'), (1563, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '154', '318', '3', '113', 'Sapthagiri College of Engineering', 'Electronics and Communication', '69.14', '100', '0'), (1564, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Punjab Technical University', 'Computer Science Engineering', '71', '100', '0'), (1565, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Anna University', 'Electronics and Instrumentation Engg', '8.62', '10', '0'), (1566, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '700', '320', '1020', '2.5', '237', "VIDYAVARDHINI'S COLLEGE VASAI WEST MUMBAI UNIVERSITY", 'Computer Engg', '56', '100', '0'), (1567, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '157', '157', '314', '4.5', 'None', 'CEG', 'Computer Science and Engineering', '0', '0', '22'), (1568, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (1569, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (1570, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (1571, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (1572, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3.5', '104', 'Pune University', 'Information Technology', '62.5', '100', '0'), (1573, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (1574, '1', 'Reject', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (1575, '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (1576, '1', 'Reject', 'MS', 'Entertainment technology-Animations and graphics', 'Fall ', '2013', '710', '570', '1280', '4', '106', 'Yadavrao Tasgaonkar Institute of Engineerig and Technology', 'Electronics and Telecommunication', '64.76', '100', '0'), (1577, '1', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (1578, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (1579, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (1580, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (1581, '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2014', '163', '141', '304', '3', '94', 'NMIMS', 'Information Technology', '2.98', '4', '0'), (1582, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (1583, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (1584, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (1585, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (1586, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (1587, '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '145', '139', '284', '2', '82', 'None', '0', '0', '0', '0'), (1588, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '800', '470', '1270', '4.5', '104', 'NIT (REC) Calicut India', 'Electronics and Communications Engineering', '61', '100', '0'), (1589, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (1590, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (1591, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (1592, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (1593, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (1594, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (1595, '1', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (1596, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (1597, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '4.5', '107', 'DBIT', 'Comp Engg', '60', '100', '0'), (1598, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (1599, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (1600, '1', 'Reject', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (1601, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (1602, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (1603, '1', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0'), (1604, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '110', 'JNTU', 'Computer Science and Engineering', '63', '100', '60'), (1605, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '90', 'D J Sanghvi', 'EXTC', '72.85', '100', '0'), (1606, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (1607, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (1608, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (1609, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '4', '108', 'Sri Sairam Inst of Technology', 'Information Tech', '8.5', '10', '13'), (1610, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (1611, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (1612, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '550', '1270', '3.5', '108', 'Pune University', 'Computer Engineering', '56', '100', '0'), (1613, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '145', '299', '3.5', '93', 'The Oxford college of engineering (VTU))', 'Information Science', '67.33', '100', '0'), (1614, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '106', 'MU', 'Electronics and Telecommunication', '74.5', '100', '0'), (1615, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (1616, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (1617, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (1618, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (1619, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '400', '1160', '3', '102', 'VCET', 'Computers', '65', '100', '0'), (1620, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (1621, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (1622, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (1623, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (1624, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (1625, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '157', '310', '4.5', '114', 'BMSCE', 'Information Science', '7.49', '10', '6'), (1626, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '148', '303', 'None', '90', 'Gurunanak institute of tech', 'CSE', '79', '100', '13'), (1627, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '155', '313', '4', '118', 'GGSIPU', 'ECE', '74.6', '100', '0'), (1628, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (1629, '1', 'Reject', 'MS', 'software engineering', 'Spring ', '2014', '158', '142', '300', '3', '89', 'Pune University', 'Information Technology', '59', '100', '0'), (1630, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (1631, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1632, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (1633, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '320', '1020', '3.5', '90', 'SCOE Pune', 'Information Technology', '58', '100', '0'), (1634, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '150', '310', '4.5', '108', 'Manipal Institue of Technology', 'Computer Science', '7.4', '10', '0'), (1635, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (1636, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3', '97', 'DAVV', 'IIPS', '7.27', '10', '0'), (1637, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '2.5', 'None', 'University of Mumbai', 'Computer Engineering', '72.69', '100', '0'), (1638, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (1639, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (1640, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (1641, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '92', 'JNTU', 'computer science', '67.51', '100', '0'), (1642, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (1643, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3.5', '92', 'None', 'ECE', '8.35', '10', '90'), (1644, '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'BITS Dubai', 'Electronics and Instrumentation', '8.97', '10', '0'), (1645, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '630', '1400', '3.5', '105', 'MU', 'Electronics and Telecom', '55', '100', '0'), (1646, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (1647, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (1648, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '90', "BLDEA's CET", 'Information Science & Engineering', '72', '100', '0'), (1649, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (1650, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1651, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (1652, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (1653, '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (1654, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (1655, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '145', '298', '4', '91', 'U.P.T.U', 'Electrical & Electronics', '71.16', '100', '0'), (1656, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (1657, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (1658, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (1659, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (1660, '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '161', '147', '308', '3', '80', 'MU', 'IT', '56.2', '100', '0'), (1661, '1', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '550', '1350', '3', '96', 'Thapar University', 'Electrical &Instrumenattion; Engineering', '6.44', '10', '0'), (1662, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (1663, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (1664, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '162', '145', '307', '3', '91', 'IIT BHU', 'Electrical Engineering', '6.54', '10', '0'), (1665, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (1666, '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0'), (1667, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (1668, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (1669, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (1670, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2014', '155', '145', '300', '3.5', '95', 'BVCOE', 'IT', '67', '100', '0'), (1671, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (1672, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (1673, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (1674, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '103', 'PESIT', 'Computer Engineering', '0', '0', '0'), (1675, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (1676, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (1677, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '152', '304', '3.5', '102', 'University of Pune', 'Computer Engineering', '62.73', '100', '0'), (1678, '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (1679, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '550', '1310', '3', '112', 'MU', 'Electronics & Telecom', '71', '100', '0'), (1680, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (1681, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (1682, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (1683, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'University of Pune', 'Computer Science', '56', '100', '0'), (1684, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (1685, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (1686, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (1687, '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '162', '151', '313', '2.5', '106', 'K J Somaiya College of Engiineering', 'CSE', '7.1', '10', '0'), (1688, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3.5', 'None', 'MU', 'Computer Engineering', '59', '100', '0'), (1689, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4.5', '108', 'VTU', 'Electronics and communication', '74.6', '100', '0'), (1690, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (1691, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (1692, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '114', 'KIIT', 'Electronics & Electrical Engg.', '9.32', '10', '0'), (1693, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '142', '301', '3.5', '94', 'MSRIT', 'Computer Science & Engineering', '7.14', '10', '0'), (1694, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (1695, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '164', '150', '314', '3.5', '101', 'TIT&Sc.;', 'Information Tech.', '71', '100', '0'), (1696, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (1697, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3', '106', 'MU', 'IT', '61', '100', '0'), (1698, '1', 'Reject', 'MS', 'Mechatronics/Robotics', 'Fall ', '2014', '162', '150', '312', '3', 'None', 'Dharamsinh Desai University', 'Electronics and communication', '69', '100', '24'), (1699, '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2012', '760', '460', '1220', '3', 'None', 'MU', 'Computer Engineering', '65', '100', '0'), (1700, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (1701, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (1702, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (1703, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (1704, '1', 'Reject', 'MS', 'Information Systems', 'Spring ', '2013', '138', '152', '290', '2', 'None', 'JNTU', 'cse', '71', '100', '0'), (1705, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (1706, '1', 'Reject', 'MS', 'MIS/ GAme Dev/ Digital Media', 'Fall ', '2014', '161', '145', '306', '3', '102', 'Pune University', 'Computer', '64', '100', '23'), (1707, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (1708, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (1709, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '700', '420', '1120', '3', 'None', 'MU', 'Computers', '69.18', '100', '24'), (1710, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '4.5', '110', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (1711, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (1712, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '155', '318', '4', '116', 'Jaypee Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (1713, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '71', '100', '6'), (1714, '1', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (1715, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (1716, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '310', '1040', '2.5', '91', 'Sri Ramakrishna Engineering College', 'Electronics and Communications Engineering', '8.61', '10', '0'), (1717, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (1718, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (1719, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '158', '314', '4.5', '115', 'BITS Pilani', 'Computer Science', '7.58', '10', '0'), (1720, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '3', '103', 'RGTU', 'EC', '70.02', '100', '0'), (1721, '1', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0'), (1722, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (1723, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '143', '300', '3.5', '102', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (1724, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (1725, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '97', 'NIT ALLAHABAD', 'Computer Science & Engg', '7.1', '10', '0'), (1726, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (1727, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '610', '580', '1190', '3', '102', 'None', 'CSE', '8.3', '10', '0'), (1728, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '144', '312', '3', '93', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '28'), (1729, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (1730, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (1731, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (1732, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '155', '137', '292', '3', '101', 'PICT', 'Information Technology', '61.33', '100', '0'), (1733, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (1734, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '470', '1100', '3', '94', 'Pune University', 'Information Technology', '0', '0', '0'), (1735, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (1736, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1737, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1738, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2006', '800', '550', '1350', 'None', '290', 'Ramrao Adik Institute of Technology', 'EE', '0', '0', '0'), (1739, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '400', '1060', '3', '95', 'MU', 'IT', '66', '100', '0'), (1740, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (1741, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '3.5', '102', 'Amrita School of Engineering', 'Computer Science', '6.17', '10', '0'), (1742, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (1743, '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (1744, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '440', '1180', '2.5', '104', 'MU', 'Electronics and Telecommunication', '54', '100', '0'), (1745, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '150', '317', '3.5', '93', 'ISM Dhanbad', 'Electronics Engg.', '7.88', '10', '0'), (1746, '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2012', '760', '320', '1080', '4.5', '96', 'JNTU', 'Computer Science', '62', '100', '0'), (1747, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (1748, '1', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (1749, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (1750, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (1751, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (1752, '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0'), (1753, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (1754, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '102', 'Ajay Kumar Garg Engineering College', 'Computer Science & Engineering', '62.1', '100', '0'), (1755, '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (1756, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '410', '1170', '3', '104', 'None', '0', '70.5', '100', '0'), (1757, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '540', '1300', '3', '92', 'MDU', '0', '65', '100', '0'), (1758, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (1759, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (1760, '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (1761, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '149', '309', '2.5', '98', 'JNTU', 'CS', '70.79', '100', '55'), (1762, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (1763, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (1764, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '107', 'None', '0', '0', '0', '0'), (1765, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'Electronics and Telecommunication', '60.21', '100', '0'), (1766, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '150', '316', '4', '98', 'Nirma Institute of Technology', 'Electronics & Communication Section Electrical Department', '7.75', '10', '0'), (1767, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '740', '510', '1250', '3', '91', 'Kurukshetra University', 'IT', '77.1', '100', '0'), (1768, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2013', '157', '153', '310', '4', '105', 'RNSIT', 'Comp. Sci.', '70', '100', '0'), (1769, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (1770, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (1771, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '460', '1230', '3', '104', 'VTU', 'Electronics and Communication', '80', '100', '0'), (1772, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3.5', '105', 'R V College of Engineering', 'Information science', '8.12', '10', '19'), (1773, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '400', '1170', '3', '96', 'University of Mumbai', 'CMPN', '64', '100', '0'), (1774, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (1775, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '154', '317', '4', '111', 'DBIT', 'Mechanical Engineering', '56', '100', '0'), (1776, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '740', '410', '1150', '2.5', '273', 'MGM College of Engineering & Technology', 'Computer', '58', '100', '0'), (1777, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (1778, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institue of Technology', 'Electrical ad Electronics', '7.4', '10', '0'), (1779, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (1780, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', '111', 'Ramrao Adik Institute of Technology', 'Computers', '70', '100', '14'), (1781, '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '650', '560', '1210', '4', '104', 'University of Mumbai', 'Electronics & Telecommunications', '58', '100', '0'), (1782, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3', '86', 'Amity University', 'Computer Science & Engineering', '7.81', '10', '0'), (1783, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (1784, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '146', '303', '4', '98', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (1785, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (1786, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '150', '309', '3.5', '90', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (1787, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (1788, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '153', '309', '3.5', '87', 'GITAM', 'Mechanical Engineering', '7.12', '10', '32'), (1789, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (1790, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (1791, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '490', '1230', '3', '98', 'SIES Graduate School of Technology', 'computer', '60', '100', '0'), (1792, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (1793, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', 'None', 'None', 'MU', 'Computer', '63', '100', '0'), (1794, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (1795, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (1796, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3.5', '89', 'Army Institute of Technology', 'Computer Science', '65', '100', '0'), (1797, '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '163', '151', '314', 'None', '90', 'RVR & JC College of Engineering', 'ELECTRONICS&COMMUNICATION;', '83', '100', '0'), (1798, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '590', '1300', '3', '90', 'Sir MVIT', 'ece', '84', '100', '0'), (1799, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (1800, '1', 'Reject', 'MS', 'Information Security', 'Spring ', '2016', '160', '145', '305', '2.5', '98', 'SVCE', 'CSE', '6.67', '10', '0'), (1801, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (1802, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (1803, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '151', '319', '3', 'None', 'IIT Guwahati', 'EEE', '7.4', '100', '0'), (1804, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (1805, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (1806, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '144', '298', 'None', 'None', 'University of Mumbai', 'Computer Engineering', '59', '100', '24'), (1807, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (1808, '1', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (1809, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (1810, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (1811, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'YCCE', 'Electronics Engg', '63.5', '100', '0'), (1812, '1', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0'), (1813, '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0'), (1814, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '5', '101', 'MU', 'Computer Engineering', '60', '100', '0'), (1815, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (1816, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (1817, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (1818, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (1819, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (1820, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (1821, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1822, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (1823, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '480', '1250', '3', '90', 'SJCE', 'Information science', '8.23', '10', '0'), (1824, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '107', 'SCOE Pune', 'Computer Science', '63', '100', '0'), (1825, '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '163', '146', '309', '2.5', '88', 'NIT Raipur', 'Electronics and Telecommunication', '7.65', '10', '0'), (1826, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (1827, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '480', '1230', '3', '97', 'VTU', 'ECE', '71', '100', '0'), (1828, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '3.5', '107', 'JNTU', 'CSE', '71', '100', '0'), (1829, '1', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0'), (1830, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (1831, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'IET DAVV', 'IT', '75.62', '100', '0'), (1832, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '770', '530', '1300', '5', '280', 'MU', 'Computer Engineering', '55', '100', '0'), (1833, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (1834, '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (1835, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2016', '158', '147', '305', '3', '87', 'Osmania University', 'computer science', '84', '100', '24'), (1836, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (1837, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (1838, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '163', '148', '311', 'None', '83', 'indus institute', 'computer engineering', '8.62', '10', '0'), (1839, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '154', '324', '3', 'None', 'Jaypee Institute of Information Technology', 'computer science', '6.4', '100', '36'), (1840, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (1841, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '150', '142', '292', '3', '87', 'JNTU', 'ECE', '69', '100', '0'), (1842, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '3', '105', 'MU', 'Electronics and telecommunications', '54', '100', '0'), (1843, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '630', '490', '1120', '3', '86', 'PICT', 'CS', '0', '0', '0'), (1844, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (1845, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (1846, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (1847, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (1848, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (1849, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (1850, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (1851, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '145', '306', '3', '91', 'SVITS', 'Computer Science & Engineering', '67', '100', '0'), (1852, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '151', '318', '4', '99', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.6', '10', '12'), (1853, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (1854, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '90', 'D J Sanghvi', 'IT', '63', '100', '0'), (1855, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (1856, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '3.5', '111', 'MU', 'Computer', '7', '100', '0'), (1857, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (1858, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', 'None', '101', 'Pune University', 'Information Technology', '0', '0', '0'), (1859, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring', 'None', '161', '148', '309', '3', 'None', 'Anna University', 'Electronics and communication engineering', '77', '100', '0'), (1860, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (1861, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '152', '148', '300', '3.5', '104', 'Anna University', 'ECE', '70', '100', '0'), (1862, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (1863, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (1864, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '3.5', '111', 'University of Pune', 'Computer Engineering', '62', '100', '24'), (1865, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '92', 'MU', 'Marine Engineering', '68.8', '100', '27'), (1866, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '161', '328', '4', '117', 'MU', 'B.E.I.T', '61.1', '100', '0'), (1867, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '640', '1400', '4', '110', 'Pune University', 'electronics', '54', '100', '0'), (1868, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (1869, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (1870, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (1871, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '4.5', '111', 'Pune University', 'Computer Science', '67', '100', '14'), (1872, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (1873, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (1874, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (1875, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '154', '311', '3', '101', 'VTU', 'ECE', '69', '100', '0'), (1876, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3.5', '108', 'MU', 'Computer Science', '59.6', '100', '0'), (1877, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '162', '144', '306', '4', '104', 'D J Sanghvi', 'Computers', '78.58', '100', '0'), (1878, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (1879, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3.5', '91', 'VTU', 'ECE', '67', '100', '0'), (1880, '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '14', '156', '146', '302', '3', '106', 'U.I.T. rgpv', 'electronics and communication', '67.3', '100', '10'), (1881, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (1882, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (1883, '1', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (1884, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (1885, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '89', 'VTU', 'Electronics and Communication', '65', '100', '0'), (1886, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '143', '304', '3', '106', 'Notre Dame University Louaize', 'ECE', '3.62', '4', '0'), (1887, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (1888, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', 'None', '102', 'DIT Dehradun', 'CSE', '70', '100', '0'), (1889, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '590', '1310', '4', '99', 'Shri Ramdeobaba Engineering College', 'Electronics and Communication', '72', '100', '0'), (1890, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '91', 'P.V.P.I.T', 'E&TC;', '0', '0', '0'), (1891, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (1892, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (1893, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (1894, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (1895, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '105', 'SIES Graduate School of Technology', 'BE-Computer Engineering', '73.48', '100', '0'), (1896, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (1897, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (1898, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '103', 'RGPV', 'Electronics', '75', '100', '0'), (1899, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '145', '307', '3', '89', 'MU', 'Computer', '61', '100', '0'), (1900, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3.5', 'None', 'JNTU', 'CSE', '63', '100', '0'), (1901, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '760', '510', '1270', '4', '287', 'VIT', 'E.C.E', '9.07', '10', '0'), (1902, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (1903, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '155', '315', '3.5', '105', 'JNTU', 'ECE', '71', '100', '0'), (1904, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '360', '1090', '3', '85', 'Harcourt Butler Technological Institute', 'Computer Science', '65.44', '100', '0'), (1905, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (1906, '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (1907, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '154', '148', '302', '3', '85', 'SIT', 'Computer Sc. & Engg.', '60', '100', '0'), (1908, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '168', '151', '319', '4', '104', 'BITS Goa', 'Computer Science', '6.53', '10', '24'), (1909, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3.5', '101', 'Sinhgad College of Engineering', 'Computer', '57.28', '100', '0'), (1910, '1', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2014', '167', '151', '318', '3.5', '108', "St. Xavier's college Kolkata", 'Mathematics', '57.5', '100', '0'), (1911, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (1912, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (1913, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '690', '540', '1230', '4', '109', 'Anna University', 'ECE', '6.136', '10', '0'), (1914, '1', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '760', '420', '1180', '3', '101', 'Institute of Technology Nirma University', 'Chemical Engineering', '6.84', '10', '0'), (1915, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Computer engineering', '69.96', '100', '17'), (1916, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '3.5', '111', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '6.1', '10', '0'), (1917, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'GITAM', 'CSE', '8.01', '10', '0'), (1918, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '530', '1290', '3', '80', 'MU', 'Electronics', '55', '100', '0'), (1919, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (1920, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (1921, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (1922, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (1923, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (1924, '1', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (1925, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '152', '306', '4.5', '115', 'MJCET', 'Computer Science', '74.6', '100', '0'), (1926, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (1927, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '151', '302', '3.5', '105', 'West Bengal University Of Technology', 'Information Technology', '8.3', '10', '0'), (1928, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (1929, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (1930, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '4', '104', 'SIES Graduate School of Technology', 'Computer engg', '55', '100', '0'), (1931, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1932, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '580', '1330', '3.5', '101', 'None', '0', '0', '0', '0'), (1933, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Govt. Engineering College Barton Hill', 'Electronics and Communication', '6.8', '10', '69'), (1934, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '155', '319', '3.5', 'None', 'University of Pune', 'Production Engineering', '8.8', '10', '0'), (1935, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '152', '141', '293', '3', 'None', 'Pune University', 'Information Technology', '60', '100', '0'), (1936, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (1937, '1', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (1938, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '146', '302', 'None', '86', 'Pune University', 'Information technology', '63', '100', '0'), (1939, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (1940, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (1941, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (1942, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '141', '289', 'None', '90', 'None', '0', '0', '0', '0'), (1943, '1', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20'), (1944, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '150', '317', '3', '92', 'VIT', 'ECE', '7.66', '10', '0'), (1945, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (1946, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '95', 'Amrita School of Engineering', 'IT', '7.05', '10', '46'), (1947, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '162', '150', '312', 'None', '104', 'JNTU', 'Electronics and communication', '81.5', '100', '0'), (1948, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (1949, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '157', '318', '4', '114', 'Xaviers', 'Computer Engg', '67', '100', '34'), (1950, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (1951, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '3.5', '107', 'FRCRCE', 'computers', '65', '100', '0'), (1952, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (1953, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '92', 'SCSVMV University', 'ECE', '7.09', '10', '0'), (1954, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4.5', '118', 'MU', 'Computer Engineering', '64.24', '100', '0'), (1955, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (1956, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (1957, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (1958, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '790', '530', '1320', '4', '113', 'Padre Conceicao College Of Engineering', 'Computer Engineering', '74.55', '100', '0'), (1959, '1', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57'), (1960, '1', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (1961, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (1962, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (1963, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (1964, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (1965, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (1966, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '157', '147', '304', 'None', '91', 'MU', 'Information Technology', '54', '100', '0'), (1967, '1', 'Reject', 'MS', 'CS/SE', 'Fall', 'None', '790', '490', '1280', '3', '91', 'Anna University', 'Computer Science', '81', '100', '0'), (1968, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (1969, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '320', '1080', '3', '89', 'Amrita School of Engineering', 'Computer Science', '7.03', '10', '0'), (1970, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3', '96', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.48', '10', '0'), (1971, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (1972, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (1973, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (1974, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '162', '161', '323', '4', 'None', 'Atharva College', 'Electronics and Telecommunications', '58.81', '100', '0'), (1975, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (1976, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (1977, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '101', 'JNTU', 'ECE', '70', '100', '0'), (1978, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (1979, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (1980, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (1981, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (1982, '1', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2012', '159', '140', '299', '3', '97', 'MU', 'Electronics', '59', '100', '0'), (1983, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (1984, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3', '91', 'Anna University', 'CSE', '79', '100', '29'), (1985, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (1986, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', '102', 'University of Pune', 'information technology', '63', '100', '27'), (1987, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (1988, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '2.5', '87', 'MSU FTE', 'CS', '3.94', '4', '0'), (1989, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (1990, '1', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '154', '151', '305', '3', '99', 'Anna University', 'Computer Science and Engineering', '7.36', '10', '31'), (1991, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (1992, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Biju Patnaik University of Technology', 'EEE', '7.2', '10', '36'), (1993, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (1994, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (1995, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (1996, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (1997, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (1998, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '101', 'University of Pune', 'Computer', '60', '100', '0'), (1999, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2000, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (2001, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '144', '304', '3', '87', 'RGPV', 'ECE', '75.37', '100', '0'), (2002, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (2003, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '102', 'UPTU', 'Computer Science', '69.84', '100', '20'), (2004, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (2005, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '145', '304', '2.5', 'None', 'Anna University', 'Mechanical', '0', '0', '24'), (2006, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '78', 'VTU', 'computer science', '59.1', '100', '0'), (2007, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (2008, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (2009, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (2010, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '144', '297', 'None', '86', 'Don Bosco Institute of Technology', 'Computers', '58', '100', '0'), (2011, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (2012, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (2013, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (2014, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (2015, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (2016, '1', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '610', '340', '950', '3', '98', 'SASTRA', 'Civil Engineering', '6.55', '10', '0'), (2017, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (2018, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3', '99', 'Amrita School of Engineering', 'Computer Science', '6.94', '10', '0'), (2019, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (2020, '1', 'Reject', 'MS', 'Data Science', 'Fall', '2018', '165', '151', '316', '3', '105', 'NIT Surat', 'Computer Science', '7.35', '10', '2'), (2021, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2017', '166', '152', '318', '3.5', '106', 'Indus university', 'Mechanical Engineering', '8.9', '10', '0'), (2022, '1', 'Admit', 'MS', 'Engineering Management', 'Fall', '2017', '155', '145', '300', '3', '94', 'Rayat and Bahra Institute of Engg and Tech', 'Computer Science', '81', '100', '0'), (2023, '1', 'Reject', 'MS', 'Engineering Management', 'Fall', '2019', '160', '140', '300', '3', '-1', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '5.97', '10', '0'), (2024, '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institute of Tech', 'EEE', '7.4', '10', '0'), (2025, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0'), (2026, '4', 'Admit', 'MS', 'Information Systems', 'Fall', 'None', '710', '510', '1220', '3', '94', 'FJU', 'information management', '73', '100', '0'), (2027, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (2028, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (2029, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (2030, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (2031, '4', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (2032, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (2033, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (2034, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '45', '29', '74', '4.5', 'None', 'Vasavi College of Engineering', 'electrical and electronics engg', '69', '100', '0'), (2035, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (2036, '4', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (2037, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '159', '324', '3.5', '107', 'Bangalore University', 'Mechanical', '69', '100', '0'), (2038, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '101', 'VTU', 'ECE', '77', '100', '0'), (2039, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (2040, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '149', '308', 'None', '97', 'VTU', 'Electrical and Electronics', '68', '100', '0'), (2041, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '1010', '410', '1420', '600', '273', 'Thadomal Shahani Engineering College', 'CE', '52', '100', '0'), (2042, '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0'), (2043, '4', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '164', '154', '318', '3', '100', 'Manipal Institue of Technology', 'Civil Engineering', '7.71', '10', '0'), (2044, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '159', '319', '4', '114', 'University of Manchester', 'EEE', '3.4', '4', '0'), (2045, '4', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '170', '157', '327', '5', '112', 'VIT Mumbai University', 'Electronics & Telecommunication', '72.67', '100', '41'), (2046, '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '165', '160', '325', '4.5', '113', 'University of Mumbai', 'Computer Engineering', '66.97', '100', '0'), (2047, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (2048, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '149', '310', '3', '99', 'VIT Pune', 'Electronics Engg', '66', '100', '36'), (2049, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (2050, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (2051, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (2052, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2053, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '154', '314', '3', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'IT', '53', '100', '0'), (2054, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '157', '313', '3', '116', 'CMRIT', 'CSE', '62.4', '100', '0'), (2055, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (2056, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (2057, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (2058, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (2059, '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Chemical Engineering', '58', '100', '0'), (2060, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '590', '1320', '3.5', '106', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (2061, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3', '88', 'Anna University', 'COMPUTER SCIENCE', '82.5', '100', '0'), (2062, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (2063, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (2064, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (2065, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '157', '325', '4', '108', 'MU', 'Computer Engineering', '63', '100', '0'), (2066, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (2067, '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (2068, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (2069, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '3', '104', 'C.R State College of Engineering Murthal', 'Bio-Medical', '70', '100', '37'), (2070, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (2071, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '149', '310', '3', '99', 'None', '0', '0', '0', '0'), (2072, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '710', '1510', '3', '280', 'University of Mumbai', 'Computer Engineering', '72', '100', '0'), (2073, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (2074, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '103', 'GGSIPU', 'Instrumentation and Control', '3.86', '100', '0'), (2075, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '151', '315', '2.5', '104', 'MU', 'Computer Engineering', '68', '100', '9'), (2076, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '730', '570', '1300', '3.5', '98', 'None', 'mechanical engg', '65', '100', '0'), (2077, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '153', '314', '4', 'None', 'Thapar University', 'Biotechnology and environmental Sciences', '7.36', '10', '0'), (2078, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '152', '311', '4', '105', 'Sardar Patel College of Engineering', 'Information Technology', '63', '100', '0'), (2079, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (2080, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (2081, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (2082, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2012', '50', '35', '85', '4.5', '114', 'SKNCOE', 'Computer', '62', '100', '0'), (2083, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '154', '313', '4.5', '117', 'MU', 'Electronics and Telecommunications', '65', '100', '0'), (2084, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (2085, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '109', 'Nagpur University', 'IT', '68', '100', '0'), (2086, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (2087, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '670', '1440', '3', '114', 'Thakur College of Engineering and Technology', 'COMP SCI', '66.3', '100', '0'), (2088, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '400', '750', '1150', '3', '101', 'Sardar Patel College of Engineering', 'electrical', '65', '100', '0'), (2089, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (2090, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (2091, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0'), (2092, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (2093, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (2094, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '780', '570', '1350', '3', '97', 'University Institute of Technology', 'Mechanical', '71', '100', '0'), (2095, '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0'), (2096, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '690', '450', '1140', '4', '106', 'Valliammai Engineering College', 'CSE', '84.5', '100', '0'), (2097, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '103', 'VTU', 'IS&E;', '65', '100', '0'), (2098, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '4.5', '112', 'Bharathiar University', 'Electronics and Communication', '78', '100', '0'), (2099, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3', '108', 'Pune University', 'Information Technology', '57', '100', '0'), (2100, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', '670', '670', 'None', '110', 'None', '0', '0', '0', '0'), (2101, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (2102, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (2103, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (2104, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '142', '304', '3', '98', 'VIT', 'Computer Science and Engineering', '8.35', '10', '0'), (2105, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (2106, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (2107, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (2108, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (2109, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2110, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '170', '150', '320', 'None', '106', 'Rajasthan Technical University', 'CSE', '70.125', '100', '0'), (2111, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (2112, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (2113, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '166', '145', '311', '3.5', '101', 'MU', 'CS', '72', '100', '0'), (2114, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '320', '1110', '3.5', '101', 'GGSIPU', 'Information Technology', '6.3', '100', '0'), (2115, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (2116, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (2117, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4', '103', 'VTU', 'CS', '77', '100', '0'), (2118, '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2014', '152', '155', '307', '3.5', '110', 'Sathyabama University', 'ECE', '65', '100', '0'), (2119, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '45', '37', '82', '4.5', '111', 'VIT University', 'Computer Sceince', '8.39', '10', '0'), (2120, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '530', '1280', '4', '115', 'PESIT', 'Telecommunication Engineering', '71.6', '100', '0'), (2121, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '154', '145', '299', '3.5', '105', 'BMSIT', 'Electrical & Electronics', '73', '100', '0'), (2122, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (2123, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (2124, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (2125, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (2126, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (2127, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (2128, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (2129, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '111', 'UPTU', 'comp Science', '66.66', '100', '0'), (2130, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (2131, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '156', '312', '3.5', '103', 'K J Somaiya College of Engiineering', 'IT', '66', '100', '30'), (2132, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '750', '390', '1140', '3.5', '101', 'R N S Institute of Technology', 'Electronics and Communication', '73.4', '100', '0'), (2133, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (2134, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (2135, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (2136, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (2137, '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '640', '1380', '4.5', '114', 'MSRIT', 'Chemical Engineering', '8.1', '10', '0'), (2138, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '305', '142', '447', '163', '90', 'Rajarambapu Institute of Technology', 'Civil Engineering', '7.48', '10', '0'), (2139, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (2140, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (2141, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (2142, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (2143, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (2144, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (2145, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '510', '1290', '4', '273', 'Osmania University', 'CS', '85', '100', '0'), (2146, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Mechanical Engineering', '8.89', '10', '0'), (2147, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (2148, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (2149, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', '3', '91', 'MU', 'Electronics and telecommunication', '64.84', '100', '0'), (2150, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '560', '1310', '3.5', 'None', 'SMIT', 'EEE', '83', '100', '0'), (2151, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (2152, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (2153, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '700', '1500', 'None', '290', 'Pune University', 'Information Technology', '3.36', '4', '0'), (2154, '4', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (2155, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '156', '316', '4', '107', 'M.I.T Aurangabad', 'Electronics & Comminication', '71', '100', '0'), (2156, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', 'None', 'Institute of Engineering and Technology', 'Computer Science', '70', '100', '64'), (2157, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '480', '1240', '4', '104', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '8.27', '10', '0'), (2158, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '153', '322', '4', '109', 'GGSIPU', 'Information Technology', '70.16', '100', '24'), (2159, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (2160, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (2161, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (2162, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2010', '770', '560', '1330', '3.5', '100', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8.1', '10', '0'), (2163, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '720', '590', '1310', '3', '94', 'FCRIT NAVIM MUBAI', 'COMPUTER', '63.24', '100', '0'), (2164, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (2165, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '157', '314', '4', '112', 'Sona College', 'Information Technology', '9.64', '10', '0'), (2166, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '150', '314', '3.5', '95', 'Integral University', 'Information Technology', '72.18', '100', '60'), (2167, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (2168, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (2169, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Summer ', '2015', '162', '152', '314', '3.5', 'None', 'SJCE', 'CS', '74', '100', '69'), (2170, '4', 'Admit', 'MS', 'MSIM', 'Fall ', '2013', '161', '164', '325', '4', '113', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '70', '100', '0'), (2171, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '490', '1240', '2.5', '99', 'GRIET', 'ECE', '63', '100', '0'), (2172, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (2173, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (2174, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (2175, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '490', '1250', '3', '101', 'Kurukshetra University', 'Computer Science', '71.1', '100', '0'), (2176, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (2177, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '160', '320', '4.5', '113', 'VTU', 'ECE', '78', '100', '43'), (2178, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (2179, '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (2180, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (2181, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '158', '153', '311', '3', 'None', 'SASTRA', 'CSE', '8.25', '10', '0'), (2182, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (2183, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (2184, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (2185, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (2186, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '550', '1320', '3', '112', 'PESIT', 'Computer Science', '76', '100', '0'), (2187, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '102', 'University of Pune', 'Electronics & Telecomm', '60', '100', '0'), (2188, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '146', '309', '3', '99', 'Devi Ahilya University Indore', 'MBA', '7.7', '10', '0'), (2189, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '770', '540', '1310', '3.5', '233', 'PESIT', 'ISE', '81', '100', '0'), (2190, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (2191, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (2192, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '162', '146', '308', '3', '100', 'K.L.E College of Engg and Technology', 'Electronics and Communication', '57.23', '100', '0'), (2193, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', 'None', 'MU', 'Information Technology', '57', '100', '0'), (2194, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (2195, '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '460', '1220', '4', '273', 'RMK Engineering College', 'EEE', '80', '100', '0'), (2196, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (2197, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '95', 'Vidyalankar Institute of Technology', 'IT', '60', '100', '0'), (2198, '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Anna University', 'Information Technology', '81.4', '100', '0'), (2199, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (2200, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '153', '311', '4.5', '107', 'Western Univ.', 'Regional Studies', '4.4', '5', '0'), (2201, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (2202, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (2203, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '710', '380', '1090', '4', '93', 'VTU', 'EC', '67', '100', '0'), (2204, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2205, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (2206, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (2207, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (2208, '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '790', '300', '1090', '3.5', '93', 'V.G. Vaze college Mumbai University', 'Department Of Information Technology', '80', '100', '0'), (2209, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (2210, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '590', '460', '1050', 'None', 'None', 'None', '0', '0', '0', '0'), (2211, '4', 'Admit', 'MS', 'mba', 'Fall', 'None', '46', '31', '77', '4', '106', 'MGIT', 'ECE', '71.72', '100', '0'), (2212, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', 'None', 'Pune University', 'Computer', '61.27', '100', '0'), (2213, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '400', '1160', '3', '89', 'JNTU', 'COMPUTER SCIENCE', '80.4', '100', '0'), (2214, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '145', '306', '3.5', '101', 'Acharya Institute of Technology', 'Electrical and Electronics', '80.3', '100', '6'), (2215, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '590', '1330', '3', '102', 'MU', 'computer', '55', '100', '0'), (2216, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (2217, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (2218, '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0'), (2219, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (2220, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (2221, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (2222, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '160', '150', '310', '3.5', '111', 'VESIT', 'Instrumentation', '62', '100', '0'), (2223, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (2224, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (2225, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (2226, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (2227, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '730', '560', '1290', '4', '280', 'SVCE', 'ECE', '65', '100', '0'), (2228, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (2229, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '3.5', '111', 'CBIT', 'Computer Science', '76.5', '100', '0'), (2230, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0'), (2231, '4', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0'), (2232, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Osmania University', 'ece', '80', '100', '0'), (2233, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (2234, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (2235, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (2236, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (2237, '4', 'Admit', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (2238, '4', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (2239, '4', 'Admit', 'MS', 'Chemical Engineering', 'Spring ', '2012', '800', '360', '1160', '3', '103', 'NIT Jalandhar', 'Chemical Engineering', '7.61', '10', '0'), (2240, '4', 'Admit', 'MS', 'software engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2241, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'JNTU', 'ECE', '72', '100', '46'), (2242, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (2243, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (2244, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '151', '311', '3', '104', 'BITS Goa', 'Mathematics & Mechanical', '6.7', '10', '0'), (2245, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (2246, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '111', 'MSU', 'Computer Science & Engineering', '3.64', '4', '0'), (2247, '4', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2013', '160', '159', '319', '3', '108', "St Joseph's College of Engineering", 'Biotechnology', '82', '100', '0'), (2248, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (2249, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '157', '148', '305', '3', 'None', 'MDU', 'Computer SC', '67.4', '100', '0'), (2250, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3.5', '100', 'VTU', 'Information Science', '75', '100', '0'), (2251, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '143', '306', '3', 'None', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.2', '10', '24'), (2252, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '158', '320', '3.5', '112', 'University of Pune', 'Electronics and Telecommunication', '61.8', '100', '0'), (2253, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (2254, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (2255, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '3.56', '4', '0'), (2256, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '148', '309', '4', '104', 'Lakshmi Narain College of Technology', 'Electrical & Electronics Engineering', '74.4', '100', '0'), (2257, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (2258, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (2259, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '142', '299', '3', '100', 'RMK Engineering College', 'Computer Science', '84', '100', '42'), (2260, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '147', '146', '293', '3', '90', 'Gogte Institute of Technology', 'Electronics and communication', '67', '100', '0'), (2261, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '620', '470', '1090', '2.5', '101', 'Velammal Engineering College', 'EIE', '83.4', '100', '0'), (2262, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (2263, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '146', '301', '3', '88', 'New Horizon College of Engineering', 'computer science', '74', '100', '0'), (2264, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '144', '305', '3', '102', 'Ramakrishna College of Engineering', 'Mechanical', '8', '100', '0'), (2265, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (2266, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (2267, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (2268, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (2269, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (2270, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '153', '312', '3', '110', 'Anna University', 'CSE', '73', '100', '0'), (2271, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '710', '1510', '4', '113', 'IP University Delhi', 'Computer Science', '80', '100', '0'), (2272, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (2273, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Dr Mahalingam College of Engineering and Technology', 'Information Technology', '82', '100', '0'), (2274, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '730', '480', '1210', '3.5', '107', 'S.A.Engineering college.Anna university.', 'computer science', '81.67', '100', '0'), (2275, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (2276, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '440', '1220', '3.5', '108', 'SRM', 'CSE', '9.3', '10', '0'), (2277, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '156', '142', '298', '2.5', '98', 'Pune University', 'IT', '68', '100', '0'), (2278, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (2279, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '165', '144', '309', '3.5', '97', 'BITS Pilani', 'B.E. EEE & MSc. Economics', '7.7', '10', '0'), (2280, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2281, '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2014', '163', '155', '318', '3.5', '112', 'Institute of Engineering and Management', 'IT', '7.83', '10', '0'), (2282, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (2283, '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2015', '160', '149', '309', '3', 'None', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '45'), (2284, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '490', '1270', '3.5', '107', 'Thakur College of Engineering and Technology', 'Information Technology', '60.14', '100', '0'), (2285, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '570', '1310', '4', '108', 'Gujarat Technological University', 'Mechanical Engineering', '63', '100', '0'), (2286, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (2287, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '750', '430', '1180', '3', 'None', 'MU', 'Information Technology', '65', '100', '0'), (2288, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '145', '311', 'None', '97', 'MSU', 'CS', '3.93', '4', '0'), (2289, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '540', '1280', 'None', '96', 'MU', 'IT', '61', '100', '0'), (2290, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (2291, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (2292, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '151', '313', '4', '110', 'SIES Graduate School of Technology', 'Computer Engineering', '62', '100', '0'), (2293, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (2294, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '156', '152', '308', '3', '103', 'MSRIT', 'Information Science and Engineering', '8.88', '10', '0'), (2295, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (2296, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (2297, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (2298, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (2299, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (2300, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (2301, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '153', '316', '3', '108', 'JSS Noida', 'Computer Science', '69', '100', '0'), (2302, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (2303, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (2304, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '500', '1280', '5', '110', 'University of Pune', 'Computer Engineering', '68.8', '100', '0'), (2305, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', '109', 'MU', 'Electronics and Telecomm', '64', '100', '0'), (2306, '4', 'Admit', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (2307, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (2308, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (2309, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2310, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '560', '1310', '2.5', '110', 'GGSIPU', 'ECE', '63', '100', '0'), (2311, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (2312, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (2313, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '160', '146', '306', '3.5', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (2314, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '113', 'Gujarat Technological University', 'Mechanical Engineering', '7.51', '10', '0'), (2315, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (2316, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (2317, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '4', '104', 'None', 'CS', '7.33', '10', '0'), (2318, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '44', '28', '72', '4.5', '102', 'VTU', 'CS', '67', '100', '0'), (2319, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '155', '318', '4', '107', 'Anna University', 'IT', '8.01', '10', '0'), (2320, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2321, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (2322, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '33', '80', '5', '104', 'Rajasthan Technical University', '0', '3.65', '4', '0'), (2323, '4', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall', 'None', '166', '153', '319', '3.5', '111', 'RGPV', 'Electronics', '6.8', '10', '0'), (2324, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '158', '323', '4', '108', 'Bharati Vidyapeeth', 'IT', '79.75', '100', '0'), (2325, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (2326, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '740', '620', '1360', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.72', '10', '0'), (2327, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2328, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (2329, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '530', '1260', '3', '111', 'Pune University', 'Mechanical Engineering', '0', '0', '0'), (2330, '4', 'Admit', 'MS', 'Mechanical And Aerospace', 'Spring ', '2014', '161', '151', '312', '3', 'None', 'Saurashtra University', 'Mechanical Engineering', '3.6', '4', '0'), (2331, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '155', '319', '3.5', '106', 'MU', 'Computer', '61', '100', '0'), (2332, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '146', '313', '3', '99', 'K J Somaiya College of Engiineering', 'Computer Engineering', '69.17', '100', '0'), (2333, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '159', '327', '4.5', '112', 'University of Mumbai', 'computer engineering', '67.87', '100', '42'), (2334, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (2335, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '4', '109', 'VTU', 'CSE', '81', '100', '0'), (2336, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (2337, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3.5', '112', 'University of Mumbai', 'Electronics and Telecomm', '72', '100', '0'), (2338, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '145', '304', '3', '100', 'PTU/Rayat and Bahra', 'Computer Science', '74.4', '100', '0'), (2339, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '151', '313', '3.5', '107', 'Pune University', 'Computer', '74', '100', '0'), (2340, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '145', '154', '299', '4.5', '97', 'University of Pune', 'Electronics and Telecommunication', '58', '100', '0'), (2341, '4', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '107', 'Manipal Institue of Technology', 'mechatronics', '8', '10', '0'), (2342, '4', 'Admit', 'MS', 'Networking', 'Fall ', '2013', '156', '145', '301', '3.5', '102', 'KU', 'IT', '63', '100', '0'), (2343, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '95', 'Madras Institute of Technology', 'Electronics and Instrumentation Engineering', '8.9', '10', '0'), (2344, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (2345, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Electronics', '60', '100', '0'), (2346, '4', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (2347, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'Pune University', 'Electrical Engineering', '0', '0', '0'), (2348, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3.5', '108', 'UPTU', 'Computer Science', '76', '100', '0'), (2349, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '770', '630', '1400', 'None', '107', 'MU', 'Electronics & Telecommunication', '64', '100', '0'), (2350, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (2351, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (2352, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (2353, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '316', '157', '473', '4.5', '112', 'TSEC', 'I.T', '60', '100', '0'), (2354, '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (2355, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2356, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (2357, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '149', '316', '3.5', '102', 'Osmania University', 'CSE', '80', '100', '0'), (2358, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '155', '150', '305', '305', '93', 'Dayananda Sagar College of Engineering', 'Telecommunication', '66', '100', '0'), (2359, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '148', '311', '3.5', '106', 'VTU', 'Instrumentation', '7.82', '10', '0'), (2360, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (2361, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '154', '314', '3', '107', 'None', '0', '74', '100', '0'), (2362, '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (2363, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '152', '306', '3', '104', 'None', '0', '0', '0', '0'), (2364, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', '94', 'Sinhgad College of Engineering', 'Computer Sciences', '60.05', '100', '0'), (2365, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '670', '1470', '5', '118', 'Anna University', 'MCA', '9.6', '10', '0'), (2366, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (2367, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (2368, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (2369, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (2370, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (2371, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '570', '1330', '5', '290', 'Atharva College', 'computer engineering', '64.13', '100', '0'), (2372, '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '158', '150', '308', '4', '102', 'VTU', 'Computer Science', '8.07', '10', '0'), (2373, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '600', '1400', '4.5', '111', 'Pune University', 'Computers', '0', '0', '0'), (2374, '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (2375, '4', 'Admit', 'MS', 'Computational Science', 'Spring ', '2011', '780', '340', '1120', '3', '92', 'JNTU', 'ECE', '79.79', '100', '0'), (2376, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '670', '1460', '3', '103', 'GITAM', 'INFORMATION TECHNOLOGY', '9.03', '10', '0'), (2377, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '143', '301', '3', '98', 'SASTRA', 'ECE', '7.29', '10', '0'), (2378, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '500', '1270', '4', 'None', 'Institute of Engineering and Technology DAVV', 'Computer Science', '78', '100', '0'), (2379, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (2380, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '710', '560', '1270', '3.5', '113', 'SRM', 'Computer Science', '8.496', '10', '0'), (2381, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4', '257', 'Shah And anchor Kutchhi Engineering College', 'Computer', '64', '100', '0'), (2382, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '116', 'University of Mumbai', 'Information Technology', '64', '100', '0'), (2383, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '470', '1240', '4', '104', 'Amrita School of Engineering', 'Computer Science', '7.33', '10', '0'), (2384, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '149', '306', '3', '110', 'Fore School of Management', 'Computer Science', '3.78', '4', '54'), (2385, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '640', '520', '1160', '3', 'None', 'VIT', '0', '7.4', '10', '0'), (2386, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', 'None', '102', 'Pondicherry Engineering College', 'Information Technology', '833', '100', '0'), (2387, '4', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (2388, '4', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2014', '161', '152', '313', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Electronics and Communication', '3.68', '4', '0'), (2389, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'MDU', 'Computer Science', '74', '100', '0'), (2390, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (2391, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '400', '1200', '3.5', '277', 'Anna University', 'Electrical and Instumentation Engineering', '86.6', '100', '0'), (2392, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '710', '590', '1300', '3.5', '253', 'University of Mumbai', 'Electronins and Telecommunication', '56', '100', '0'), (2393, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (2394, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (2395, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (2396, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (2397, '4', 'Admit', 'MS', 'CS/SE', 'Fall ', '2012', '160', '149', '309', '4', '105', 'Sona College', 'Information Technology', '76', '100', '0'), (2398, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '111', 'CBIT', 'Computer Science', '77', '100', '0'), (2399, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (2400, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '149', '161', '310', '5', '105', 'MITS', 'E&C;', '7.5', '10', '0'), (2401, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '750', '570', '1320', '3.5', '110', 'Silicon Inst of Technology', 'electronics and Telecommunication', '8.29', '10', '0'), (2402, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '580', '1370', '4', '113', 'None', '0', '0', '0', '0'), (2403, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (2404, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (2405, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3', '94', 'VTU', 'Computer Science Engineering', '74.21', '100', '0'), (2406, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (2407, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '760', '650', '1410', '4', '290', 'Anna University', 'ECE', '76', '100', '0'), (2408, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (2409, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '158', '149', '307', '3', '107', 'Anna University', 'Aeronautical', '7.5', '10', '0'), (2410, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (2411, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '330', '1130', '3', '93', 'KLCE', 'IST', '84', '100', '0'), (2412, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (2413, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (2414, '4', 'Admit', 'MS', 'MIS', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2415, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '3.5', '91', 'MU', 'extc', '62', '100', '0'), (2416, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (2417, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (2418, '4', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2008', '790', '480', '1270', '4', '113', 'MU', 'ECE', '66', '100', '0'), (2419, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (2420, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '610', '1410', '3.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (2421, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3.5', '101', 'SVITS', 'Computer Science', '73.19', '100', '29'), (2422, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2009', '760', '470', '1230', '3.5', '108', 'MU', 'computer', '0', '0', '0'), (2423, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '600', '1350', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '62', '100', '0'), (2424, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '620', '1380', 'None', '260', 'Mysore University', 'CS', '76', '100', '0'), (2425, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (2426, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (2427, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '600', '1400', '3', '101', 'MU', 'Computer', '0', '0', '0'), (2428, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '162', '324', '4', '115', 'University of Texas at Dallas', 'Arts and Technology', '0', '0', '0'), (2429, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (2430, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (2431, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (2432, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '580', '1310', '3', '103', 'MU', 'EXTC', '73', '100', '0'), (2433, '4', 'Admit', 'MS', 'Finance', 'Fall ', '2012', '41', '25', '66', '4.5', '101', 'MU', 'Commerce', '0', '0', '0'), (2434, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (2435, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3.5', '110', 'MU', 'Information Technology', '69', '100', '0'), (2436, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '150', '311', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '73', '100', '24'), (2437, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '790', '520', '1310', '4', '106', 'University of Mumbai', 'Electronics', '0', '0', '0'), (2438, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (2439, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '162', '149', '311', '3.5', '102', 'Don Bosco Institute of Technology', 'Electronics and Telecommunication', '66.2', '100', '0'), (2440, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (2441, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (2442, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '500', '1280', '3.5', '257', 'GTBIT', 'IT', '72', '100', '0'), (2443, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '590', '1300', '3.5', '100', 'MU', 'Electronics', '74', '100', '0'), (2444, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '149', '306', '4', '114', 'VTU', 'CSE', '8.88', '10', '36'), (2445, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4.5', '105', 'University of Mumbai', 'I.T', '65', '100', '0'), (2446, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (2447, '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56'), (2448, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '156', '312', '2.5', '106', 'College Of Engineering Roorkee', 'Information Technology', '66', '100', '0'), (2449, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '42', '31', '73', '5', '109', 'None', '0', '0', '0', '0'), (2450, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (2451, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (2452, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '630', '640', '1270', '3', '112', 'Pune University', 'Computer Science', '60', '100', '0'), (2453, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '580', '1350', '4', '108', 'Govt Model Engg College', 'Computer Sc & Engineering', '76.6', '100', '0'), (2454, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '680', '1410', '4', '113', 'Pune University', 'IT', '53', '100', '0'), (2455, '4', 'Admit', 'MS', 'MIS/CS', 'Fall ', '2014', '162', '155', '317', '4', '107', 'SSN College of Engineering', 'CSE', '7.83', '10', '0'), (2456, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '570', '1300', '3', '109', 'PESIT', 'ISE', '75', '100', '0'), (2457, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '760', '520', '1280', '2.5', '97', 'Veermata Jijabai Technological Institute', 'mechanical', '6.1', '10', '0'), (2458, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (2459, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (2460, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (2461, '4', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (2462, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '98', 'None', 'Electronics', '68', '100', '0'), (2463, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (2464, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (2465, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2466, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '155', '317', '3.5', '113', 'MU', 'E & TC', '70', '100', '0'), (2467, '4', 'Admit', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (2468, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (2469, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (2470, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (2471, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '390', '1170', '4', '110', 'MH Saboo Siddik college of Engg', 'Information Technology', '0', '0', '0'), (2472, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (2473, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (2474, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '670', '430', '1100', '3.5', '98', 'SNIST', 'BS-EET', '3.4', '4', '0'), (2475, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (2476, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '410', '1120', '4', 'None', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (2477, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '93', '49', '142', '3.5', '113', 'University of Mumbai', 'IT', '66', '100', '8'), (2478, '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '800', '530', '1330', '3.5', '102', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.58', '10', '0'), (2479, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '770', '500', '1270', '4', '109', 'VIT', 'Information Technology', '8.52', '10', '0'), (2480, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (2481, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '46', '27', '73', '6', 'None', 'GGSIPU', 'computer science', '8.4', '10', '0'), (2482, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (2483, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (2484, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (2485, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '148', '309', '3.5', '91', 'MVSR', 'CSE', '80', '100', '0'), (2486, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '790', '560', '1350', '3.5', '104', 'Syracuse University', 'Information Management', '3.8', '4', '0'), (2487, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '4', '97', 'Yeditepe University', 'Electrical-Electronics Engineering', '3.46', '4', '0'), (2488, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '49', '30', '79', '5', '100', 'Pune University', 'Mechanical', '58', '100', '0'), (2489, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (2490, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (2491, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '270', '970', '3', '78', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (2492, '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (2493, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (2494, '4', 'Admit', 'MS', 'Forensic Science', 'Fall', 'None', '153', '142', '295', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '8.2', '10', '0'), (2495, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (2496, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '156', '318', '3.5', '114', 'Sikkim Manipal Institute of Technology', 'electronics and communication', '8.15', '10', '0'), (2497, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '4', '114', 'K J Somaiya College of Engiineering', 'Computer Engineering', '63.52', '100', '0'), (2498, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (2499, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (2500, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '106', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2501, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '740', '400', '1140', '4', '106', 'VTU', 'e&c;', '0', '0', '0'), (2502, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '145', '306', '3', '92', 'Sreenidhi Institute of Science & Technology', 'ECM', '81', '100', '0'), (2503, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', 'None', 'None', '0', '3.5', '109', 'None', '0', '0', '0', '0'), (2504, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '152', '146', '298', 'None', '100', 'MU', 'I.T', '73.11', '100', '0'), (2505, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (2506, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (2507, '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (2508, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (2509, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (2510, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (2511, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (2512, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (2513, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '158', '319', '4', '107', 'MU', 'Computer Engg', '3.14', '4', '0'), (2514, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (2515, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '3', '86', 'Kakatiya University', 'Computer Science and Engineering', '77', '100', '0'), (2516, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '590', '1390', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer', '69.5', '100', '0'), (2517, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (2518, '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (2519, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (2520, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '37', '84', '5.5', '117', 'Amrita School of Engineering', 'ece', '8.1', '10', '0'), (2521, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (2522, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3', '108', 'NIT-Calicut', 'Computer Science', '7.93', '10', '0'), (2523, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (2524, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (2525, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '750', '510', '1260', '3.5', '116', 'VIT Mumbai University', 'EXTC', '63', '100', '0'), (2526, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', 'Engineering(I.T)', '0', '0', '0'), (2527, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (2528, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (2529, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '800', '670', '1470', '5', '112', 'VTU', 'ECE', '68', '10', '0'), (2530, '4', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '157', '145', '302', '3', '87', 'Banasthali University', 'Computer Science', '79', '100', '88'), (2531, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (2532, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '2.5', '96', 'BITS Pilani', 'Computer science', '7.8', '10', '0'), (2533, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '640', '1400', '3', '98', 'Bharati Vidyapeeth', 'Comp Science', '54', '100', '0'), (2534, '4', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '156', '136', '292', '3', '96', 'Sarvajanik College of Engineering & Technology', 'civil engineering', '7.5', '10', '0'), (2535, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '168', '156', '324', '3.5', '110', 'VESIT', 'Electronics and Telecommunication', '70.8', '100', '0'), (2536, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '4.5', '105', 'Sardar Patel University', 'Computer Science', '77', '100', '0'), (2537, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2538, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0'), (2539, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '490', '1280', '4', '102', 'BMSCE', 'Telecommunication', '0', '0', '0'), (2540, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '630', '1340', '3.5', '116', 'MU', 'Computer Engineering', '57', '100', '0'), (2541, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (2542, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (2543, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4.5', '112', 'UPTU', 'computer science', '80.8', '100', '0'), (2544, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (2545, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (2546, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '730', '440', '1170', 'None', 'None', 'Valliammai Engineering College', 'Computers', '79', '100', '0'), (2547, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '152', '317', '3', '112', 'BIT Mesra', 'Civil Engineering', '7.1', '10', '0'), (2548, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '4', '110', 'Sinhgad College of Engineering', 'IT', '60.04', '100', '0'), (2549, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '155', '310', '3', 'None', 'Pune University', 'Civil Engineering', '54', '100', '0'), (2550, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '350', '1150', '2.5', '86', 'Koneru Lakshmaiah College of Engineering', 'Information Science And Technologyu', '89.2', '100', '0'), (2551, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (2552, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '162', '316', '3.5', '106', 'Sinhgad College of Engineering', 'IT', '63', '100', '0'), (2553, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (2554, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2555, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '154', '149', '303', '3', '7', 'None', 'I.T', '67', '100', '0'), (2556, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '148', '309', '3.5', '98', 'Anna University', 'ECE', '7.85', '10', '42'), (2557, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (2558, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '3', '95', 'MU', 'Computer', '70', '100', '0'), (2559, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (2560, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (2561, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '142', '300', '3', '96', 'VTU', 'EC', '75', '100', '0'), (2562, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (2563, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '570', '1320', '3', '112', 'Galgotias College of Engineering & Technology(Uttar Pradesh Technical University)', 'Information Technology', '70', '100', '0'), (2564, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '4', '96', 'Arya Institute of Engg and Tech', 'Computer Science', '77.7', '100', '0'), (2565, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '500', '1230', '3.5', '98', 'MU', 'electronics', '69.74', '100', '0'), (2566, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '600', '1330', '3.5', '106', 'University of Mumbai', 'IT', '62.5', '100', '0'), (2567, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (2568, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '770', '520', '1290', '3.5', '106', 'Vishwakarma Institute of Technology', 'E&Tc;', '8.9', '10', '0'), (2569, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (2570, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2009', '800', '640', '1440', 'None', '101', 'MNIT', 'Electrical Engineering', '7.1', '10', '0'), (2571, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '152', '310', '4.5', '109', 'VTU', 'Telecomm', '66', '100', '0'), (2572, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (2573, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (2574, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '102', 'None', '0', '77.5', '100', '0'), (2575, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '154', '311', '3', '105', 'MU', 'Computer', '60', '100', '0'), (2576, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '154', '316', '3', '99', 'GCET', 'Mechanical', '8.89', '10', '0'), (2577, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (2578, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (2579, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '162', '320', '4', '109', 'SASTRA', 'Bioinformatics', '8.68', '10', '32'), (2580, '4', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (2581, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '152', '146', '298', '3.5', '6', 'VTU', 'electronic and communication', '81', '100', '0'), (2582, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (2583, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (2584, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (2585, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (2586, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '670', '540', '1210', '3', '103', 'D J Sanghvi', 'IT', '55', '100', '0'), (2587, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '440', '1150', '3', '105', 'None', '0', '0', '0', '0'), (2588, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '152', '303', '4', '111', 'B M S College of Engineering', 'Telecommunication engineering', '71.4', '100', '0'), (2589, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '152', '157', '309', '4', '107', 'Bharathiar University', 'Computer Science', '61', '100', '0'), (2590, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '154', '315', '4', '106', 'SRM', 'Computer Science Engineering', '8.95', '10', '0'), (2591, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '95', 'Anna University', 'CS', '7', '10', '0'), (2592, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (2593, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '156', '313', '4.5', 'None', 'Nirma Institute of Technology', 'electronics and communications', '8.12', '10', '0'), (2594, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (2595, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '153', '152', '305', '4', '104', 'Nagpur University', 'BE in IT', '61', '100', '70'), (2596, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (2597, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (2598, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (2599, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '154', '321', '3.5', '107', 'COEP', 'Computer Engineering', '7.78', '10', '0'), (2600, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (2601, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (2602, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '570', '1300', '3.5', '99', 'Pune University', 'Computer', '60', '100', '0'), (2603, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '107', 'NITK Surathkal', 'EEE', '7.17', '10', '0'), (2604, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '144', '305', '3', '81', 'Osmania University', 'Computer Science', '84.57', '100', '0'), (2605, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (2606, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '152', '313', '4', '106', 'CEG', 'B.Tech Information Technology', '8.01', '10', '29'), (2607, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (2608, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '3', 'None', 'Chaitanya Bharathi Institute of Technology', 'Electronics and Communications', '85.5', '100', '0'), (2609, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '430', '1180', '4', '107', 'Sathyabama University', 'Computer Science Engineering', '77.36', '100', '0'), (2610, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '600', '1320', 'None', '108', 'Anna University', 'IT', '81', '100', '0'), (2611, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '3.5', '101', 'Pune University', 'Computer', '54', '100', '0'), (2612, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (2613, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (2614, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '510', '1240', '3.5', '104', 'bombay University', 'Computer Science', '61', '100', '0'), (2615, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (2616, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '163', '157', '320', '4', '114', 'None', 'BE Computer Science', '66.2', '100', '0'), (2617, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (2618, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (2619, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (2620, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '640', '1420', '4.5', '117', 'MU', 'Computer Engg', '59', '100', '0'), (2621, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (2622, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (2623, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0'), (2624, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '159', '321', '4', '116', 'GGSIPU', 'Mechanical', '78.8', '100', '0'), (2625, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (2626, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '340', '1090', '3', '96', 'Jaya Engineering college', 'CSE', '88', '100', '0'), (2627, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (2628, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (2629, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '157', '318', '3.5', '112', 'Sinhgad College of Engineering', 'MBA', '68', '100', '0'), (2630, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3.5', '104', 'Pune University', 'B.E.(Information Technology)', '64.2', '100', '0'), (2631, '4', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (2632, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (2633, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (2634, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '143', '305', '3', '101', 'VTU', 'Telecommunication Engineering', '65.13', '100', '0'), (2635, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (2636, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '320', '1040', '3', '99', 'Amrita School of Engineering', 'CSE', '7.64', '10', '0'), (2637, '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2013', '160', '149', '309', '2.5', '107', 'Maharishi Dayanand University', 'Computer Science', '70', '100', '0'), (2638, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (2639, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (2640, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '153', '312', '3', '110', 'MU', 'Information Technology', '3.79', '4', '0'), (2641, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', '3', '88', 'Sinhgad College of Engineering', 'Electronics and Telecommunications', '62.13', '100', '0'), (2642, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (2643, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2644, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (2645, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (2646, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '700', '630', '1330', '4.5', '270', 'VESIT', 'Info Tech', '64.3', '100', '0'), (2647, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '168', '155', '323', '4.5', '101', 'VTU', 'Telecommunication', '75', '100', '0'), (2648, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '149', '314', '3', '99', 'NIT Bhopal', 'Computer Science', '3.11', '4', '0'), (2649, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (2650, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (2651, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (2652, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (2653, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '150', '311', '3', '98', 'University of Mumbai', 'IT', '60', '100', '0'), (2654, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '4', '112', 'University of Mumbai', 'Information Technology', '58.13', '100', '0'), (2655, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '540', '1340', '3.5', '107', 'D J Sanghvi', 'Computer', '64', '100', '0'), (2656, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2009', '800', '360', '1160', '3', '95', 'Anna University', 'ECE', '73', '100', '0'), (2657, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '155', '315', '3', '109', 'VIT', 'ECE', '69', '100', '0'), (2658, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (2659, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (2660, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (2661, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '151', '307', '4', '115', 'BPUT', 'Electronics and Communication', '8.39', '10', '29'), (2662, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (2663, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (2664, '4', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '152', '313', '3.5', '107', 'VESIT', 'Computer Engineering', '65', '100', '0'), (2665, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (2666, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Syracuse University', 'Electrical Engiineering', '3.4', '4', '0'), (2667, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '4', '91', 'MVSR', 'computer science engineering', '72.3', '100', '0'), (2668, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '3.5', '106', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '72.8', '100', '66'), (2669, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (2670, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (2671, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (2672, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (2673, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (2674, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '148', '303', '4', '111', 'JSSATE VTU', 'Instrumentation Tech', '65', '100', '0'), (2675, '4', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (2676, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '143', '300', '3.5', '110', 'SCSVMV University', 'Computer Science', '8.06', '10', '0'), (2677, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '107', 'Shah And anchor Kutchhi Engineering College', 'IT', '60.3', '100', '0'), (2678, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', 'None', 'None', 'NIT-Bhopal', 'Information Technology', '8.49', '10', '0'), (2679, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '114', 'University of Pune', 'Conputer Science', '59', '100', '15'), (2680, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2012', '770', '620', '1390', '3', '109', 'Kalinga Institute of Industrial Technology', 'Electronics &Telecom;', '7.1', '10', '0'), (2681, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '320', '1060', '2.5', '86', 'Anna University', 'CSE', '75', '100', '0'), (2682, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (2683, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3', '99', 'Atharva College', 'ELECTRONICS', '70', '100', '0'), (2684, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '5.5', '117', 'Manipal Institue of Technology', 'E&C;', '8.2', '10', '0'), (2685, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '100', 'IIIT Allahabad', 'IT', '7.5', '10', '0'), (2686, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (2687, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (2688, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (2689, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '105', 'VTU', 'Computer Sciece and Engineering', '71', '100', '0'), (2690, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '5', '106', 'None', '0', '0', '0', '0'), (2691, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '660', '1350', '3', '102', 'Sri Venkateswara College of Engineering', 'Computer science Engg', '83', '100', '0'), (2692, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '4', '104', 'None', '0', '72', '100', '0'), (2693, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (2694, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (2695, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (2696, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Nirma Institute of Technology', '0', '0', '0', '0'), (2697, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (2698, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '4', '115', 'VIT Pune', 'e&tc;', '7.5', '10', '0'), (2699, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '144', '304', '3.5', '113', 'CITM Faridabad', 'CSE', '64', '100', '0'), (2700, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (2701, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '750', '560', '1310', '3.5', '260', 'SVIT Vasad (Gujarat University)', 'IT', '63', '100', '0'), (2702, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '640', '1440', '5', 'None', 'SVNIT Surat', 'Electronics', '76', '100', '0'), (2703, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '151', '148', '299', '3', '93', 'S.S.P.M college of Engineering-mumbai university', 'E&TC;', '0', '0', '0'), (2704, '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '700', '450', '1150', '3', '99', 'Walchand College Of Engineering', 'Electronics Engineering', '66', '100', '0'), (2705, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '100', 'MU', 'Computer Engineering', '60.44', '100', '0'), (2706, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '71', '100', '0'), (2707, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (2708, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '100', 'MU', 'Computer Engineering', '70', '100', '0'), (2709, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '5', '277', 'MANIT', 'Electrical', '76', '100', '0'), (2710, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2', '159', '149', '308', 'None', '109', 'Rajiv Gandhi Institute Of Technology', 'BE EXTC', '63', '100', '0'), (2711, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '104', 'University of Pune', 'Information Technology', '8.74', '10', '0'), (2712, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '146', '301', '3', '101', 'SASTRA', 'ECE', '7', '10', '0'), (2713, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (2714, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '49', '26', '75', '5', '99', 'Amrita Vishwa Vidhyapeetham', 'EEE', '8.46', '100', '0'), (2715, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (2716, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '167', '154', '321', '4', '112', 'IIT Kharagpur', 'Architecture', '8.05', '10', '0'), (2717, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (2718, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (2719, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '410', '1200', '4', '107', 'Nirma Institute of Technology', 'mechanical engg', '8.51', '10', '0'), (2720, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (2721, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2007', '710', '620', '1330', '4.5', '283', 'Maharishi Dayanand University', 'IT', '80', '100', '0'), (2722, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (2723, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3.5', '112', 'Pune University', 'Information Technology', '65', '100', '0'), (2724, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '720', '650', '1370', '4', '113', 'MU', 'Chemical', '60', '100', '0'), (2725, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (2726, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '148', '142', '290', '3', '86', 'GITAM', 'cse', '8.15', '10', '0'), (2727, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (2728, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '142', '159', '301', '3.5', '98', 'SRM', 'ECE', '9.5', '10', '0'), (2729, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '760', '720', '1480', '4', '102', 'University of Mumbai', 'Computer', '68.38', '100', '0'), (2730, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (2731, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '143', '302', '3.5', '85', 'None', 'ECE', '79', '100', '0'), (2732, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '156', '151', '307', '3.5', '106', 'MU', 'IT', '69', '100', '0'), (2733, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '600', '1240', 'None', '107', 'Pune University', 'Computer', '61', '100', '0'), (2734, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '112', 'SGGS institute of engg nanded', 'Electronics and Telecommunications', '8.53', '10', '0'), (2735, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '152', '314', '3.5', '106', 'Punjab Technical University', 'Computer Science', '78.1', '100', '0'), (2736, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '161', '158', '319', '3', '101', 'MG University', 'ECE', '69.4', '100', '0'), (2737, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (2738, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (2739, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (2740, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '158', '140', '298', '3', '92', 'University of Pune', '0', '76.2', '100', '0'), (2741, '4', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0'), (2742, '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '690', '610', '1300', '3.5', '94', 'Priyadarshini College of Engineering', 'Comp.Tech', '62.96', '100', '0'), (2743, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '151', '310', '3', '103', 'PESIT', 'C.S', '69', '100', '0'), (2744, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (2745, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '145', '301', '3', '104', 'BMSCE', 'Computer Science', '9.3', '10', '0'), (2746, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '144', '307', '3.5', '98', 'Nagarjuna University', 'ECE', '8.55', '10', '0'), (2747, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '152', '308', '3.5', '105', 'VTU', 'EE', '78', '100', '0'), (2748, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (2749, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (2750, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '160', '326', '4', '114', 'Pondicherry Engineering College', 'Computer Science', '8.35', '10', '0'), (2751, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '108', 'VIT University', 'ECE', '8.15', '10', '0'), (2752, '4', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2013', '152', '152', '304', '3', '101', 'Anna University', 'Biotechnology', '8.5', '10', '0'), (2753, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (2754, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3.5', '109', 'VTU', 'CS & E', '81', '100', '0'), (2755, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (2756, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (2757, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (2758, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (2759, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (2760, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '34', '84', '5.5', '98', 'BESU Shibpur', 'Electrical Engineering', '61', '100', '0'), (2761, '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (2762, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '680', '640', '1320', '3', '106', 'None', 'Instrumentation', '73', '100', '0'), (2763, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (2764, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (2765, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '7', 'GITAM', 'E.C.E', '9', '10', '0'), (2766, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (2767, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '150', '313', '4', '99', 'NIT Jalandhar', 'Industrial Engineering', '7.65', '10', '0'), (2768, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0'), (2769, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (2770, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (2771, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2772, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (2773, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '147', '311', '3', '83', 'Pune University', 'Computer Science', '63.51', '100', '0'), (2774, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '148', '308', '3', '103', 'Medicaps Institute of Science & Technology Indore', 'EE', '74.97', '100', '0'), (2775, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (2776, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '148', '305', '4', '101', 'Ramrao Adik Institute of Technology', 'IT', '63', '100', '0'), (2777, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '150', '143', '293', 'None', '94', 'Siddaganga Institue of Technology', 'Computer Science', '8.72', '10', '0'), (2778, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '650', '390', '1040', '3', '97', 'Sardar Patel College of Engineering', 'Electronics', '71.23', '100', '0'), (2779, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '111', 'VTU', 'CSE', '74', '100', '0'), (2780, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (2781, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (2782, '4', 'Admit', 'MS', 'MIS/MS CS', 'Fall ', '2013', '161', '160', '321', '4', '118', 'CEG', 'IT', '7.6', '10', '0'), (2783, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (2784, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '117', 'MU', 'Information Technology', '63', '100', '0'), (2785, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'Anna University', 'Computer Science', '8.2', '10', '0'), (2786, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (2787, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (2788, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (2789, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '159', '322', '4', '111', 'D J Sanghvi', 'Computer Science', '65', '100', '0'), (2790, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '164', '153', '317', '4', '105', 'MU', 'Computer Engineering', '68', '100', '0'), (2791, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '98', 'SRM', 'EEE', '8.324', '10', '21'), (2792, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (2793, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (2794, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (2795, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (2796, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (2797, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (2798, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '163', '149', '312', '3.5', 'None', 'NIT Durgapur', 'Mechanical Engineering', '7.93', '10', '0'), (2799, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (2800, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '150', '147', '297', '3.5', '110', 'PICT', 'Computer Engineering', '63', '100', '0'), (2801, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '690', '1490', '3.5', '111', 'University of Mumbai', 'Electronics', '57', '100', '0'), (2802, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (2803, '4', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (2804, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (2805, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3', '76', 'VTU', 'Computer Science', '70', '100', '0'), (2806, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '150', '318', '4', '108', 'SSN College of Engineering', 'EEE', '74', '100', '0'), (2807, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '257', 'MU', 'IT', '65', '100', '0'), (2808, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'Computer Engineering', '3.63', '4', '0'), (2809, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'CS', '3.63', '4', '0'), (2810, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (2811, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (2812, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '550', '1340', '3', '106', 'Punjabi University', 'University college of Engineering', '68.8', '100', '0'), (2813, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (2814, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (2815, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (2816, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '142', '299', '3.5', '88', 'NIT Kurukshetra', 'Electronics and Communication', '8.039', '10', '0'), (2817, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '106', 'Punjab Technical University', 'Computer Science', '64.73', '100', '84'), (2818, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '540', '1280', '3', '104', 'MU', 'IT', '71', '100', '0'), (2819, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (2820, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '168', '155', '323', '3.5', '109', 'SASTRA', 'CSE', '8.4', '10', '0'), (2821, '4', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '163', '152', '315', 'None', '102', 'Amity University', 'CS', '7.07', '10', '0'), (2822, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '650', '630', '1280', '4', '112', 'univeristy of mumbai', 'information technology', '57', '100', '0'), (2823, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (2824, '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2015', '157', '150', '307', '4', '107', 'GITAM', 'Electronics and Communications Engineering', '8.73', '10', '0'), (2825, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '660', '1380', '3.5', '111', 'University of Mumbai', 'computers', '59.02', '100', '0'), (2826, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (2827, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (2828, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (2829, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '96', 'Thapar University', 'Computer Science Engineering', '7.99', '10', '18'), (2830, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (2831, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '164', '150', '314', '3.5', '113', 'VESIT', 'Computers', '3.5', '4', '0'), (2832, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '4.5', '102', 'Thadomal Shahani Engineering College', 'Computers', '60', '100', '0'), (2833, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '104', 'Shivaji University', 'Computer Science and Engineering', '58', '100', '0'), (2834, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '148', '313', '3.5', '313', 'Nagpur University', 'Electronics', '74.5', '100', '0'), (2835, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '50', '34', '84', '5.5', '112', 'Nirma Institute of Technology', 'B.Tech Computer Engg.', '7.54', '10', '0'), (2836, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'D J Sanghvi', 'telecomm', '71', '100', '0'), (2837, '4', 'Admit', 'MS', 'mba', 'Fall ', '2011', '48', '28', '76', '4.5', '110', 'Anna University', 'ECE', '68', '100', '0'), (2838, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '39', '27', '66', '5', '108', 'Anna University', 'Information technology', '68', '100', '0'), (2839, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '108', 'RTM Nagpur University', 'Electronics and Telecommunication', '75.61', '100', '52'), (2840, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '590', '1370', '3', '97', 'SDM', 'E&C;', '75.5', '100', '0'), (2841, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (2842, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (2843, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '148', '310', '3', '96', 'None', '0', '67', '100', '0'), (2844, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '720', '580', '1300', 'None', '270', 'Bangalore Institute of Technology', 'Computer Science', '69.22', '100', '0'), (2845, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '164', '155', '319', '3.5', '109', 'GGSIPU', 'CS', '72', '100', '12'), (2846, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2847, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '690', '1490', '5', '300', 'ICFAI', 'Electronics and Communication', '9.82', '10', '0'), (2848, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '3', '106', 'MU', 'Information Technology', '68', '100', '0'), (2849, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '460', '1140', '4', '97', 'VIT', 'IT', '0', '0', '0'), (2850, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (2851, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (2852, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '153', '318', '4', '111', 'TSEC', 'EXTC', '58', '100', '0'), (2853, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '510', '1290', '3.5', '110', 'VESIT', 'Electronics and Telecommunications', '60', '5', '0'), (2854, '4', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '680', '700', '1380', '3.5', '113', 'Anna University', 'Bio Technology', '8.7', '10', '0'), (2855, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '159', '320', 'None', '108', 'Amrita School of Engineering', 'computer science', '7.56', '10', '0'), (2856, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (2857, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (2858, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '101', 'UPTU', 'Computer Science', '77', '100', '48'), (2859, '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (2860, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '4', '104', 'JMIT Radaur(Kurukshetra University)', 'Electronics & Communications', '72', '100', '0'), (2861, '4', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2013', '165', '157', '322', '4', '110', 'Anna University', 'IT', '82', '100', '0'), (2862, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (2863, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (2864, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (2865, '4', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (2866, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'VJTI', 'Electrical Engineering', '8.4', '10', '0'), (2867, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (2868, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '113', 'RGPV', 'Information Technology', '80', '100', '0'), (2869, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (2870, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (2871, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '273', 'PICT', 'Computer Science', '60', '100', '0'), (2872, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '148', '308', '3.5', 'None', 'BNMIT', 'Information Science', '69', '100', '0'), (2873, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '580', '1380', '3', '101', 'None', '0', '85', '100', '0'), (2874, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '153', '313', '3', '8', 'SSN College of Engineering', 'Information Technology', '79', '100', '38'), (2875, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (2876, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (2877, '4', 'Admit', 'MS', 'None', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'SUA Iran', 'Electrical Engineering', '0', '0', '0'), (2878, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (2879, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '460', '1250', '3', '107', 'RGPV', 'Electronica and Comm', '70.28', '100', '0'), (2880, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Pune University', 'Electronics & Telecom', '65', '100', '0'), (2881, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Cummins College of Engineering Pune', 'Pune University', '64.42', '100', '0'), (2882, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '660', '1460', '4.5', '293', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (2883, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (2884, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '157', '322', '3', '105', 'National Taiwan University', 'Library and Information Science', '3.54', '4', '0'), (2885, '4', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (2886, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '490', '1220', '3', '104', 'University of Mumbai', 'Electrical Engg.', '67', '100', '0'), (2887, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '96', 'Global Institute of Technology(RTU)', 'IT', '71.4', '100', '0'), (2888, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '148', '306', '3.5', '104', 'Anna University', 'ECE', '8.69', '10', '0'), (2889, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '151', '141', '292', '3', '83', 'Anna University', 'Electronics & Instrumentation', '8.01', '10', '0'), (2890, '4', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'SVCE', 'ECE', '0', '0', '0'), (2891, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (2892, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (2893, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (2894, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '154', '317', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '70.1', '100', '0'), (2895, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (2896, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (2897, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (2898, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (2899, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3', '98', 'None', '0', '0', '0', '0'), (2900, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '450', '1170', '3.5', '90', 'University of Mumbai', 'Electronics & Telecommunication', '63', '100', '0'), (2901, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (2902, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (2903, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (2904, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (2905, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (2906, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (2907, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '97', 'UPTU', 'Computer Science & Engineering', '66.4', '100', '9'), (2908, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (2909, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '49', '24', '73', 'None', 'None', 'Amrita School of Engineering', 'IT', '6.7', '10', '0'), (2910, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (2911, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (2912, '4', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (2913, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '149', '313', '3.5', '109', 'FR. CRIT Vashi', 'Information Technology', '68.8', '100', '0'), (2914, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (2915, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '310', '1020', 'None', '86', 'University of Mumbai', 'BE Information Technology', '0', '0', '0'), (2916, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (2917, '4', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (2918, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '560', '1340', '4', '104', 'VTU', '0', '61', '100', '0'), (2919, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '97', 'MU', 'Computers', '57', '100', '0'), (2920, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '146', '311', '3.5', '95', 'IET DAVV', 'IT', '3.68', '4', '0'), (2921, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (2922, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (2923, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (2924, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (2925, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (2926, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (2927, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (2928, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (2929, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (2930, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (2931, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '111', 'MU', 'Computer Engg', '67.22', '100', '0'), (2932, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (2933, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (2934, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '60.88', '100', '0'), (2935, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '680', '600', '1280', '2.5', '102', 'VTU', 'Electronics & Communication', '61', '100', '0'), (2936, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (2937, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (2938, '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '146', '305', '3', '86', 'University of Pune', 'Computer Engineering', '61.67', '100', '33'), (2939, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (2940, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (2941, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '147', '310', '2.5', '95', 'Gujarat Technological University', 'ECE', '70', '100', '77'), (2942, '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (2943, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (2944, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '530', '1280', '4', '95', 'Manipal Institue of Technology', 'Computer Science', '8.05', '10', '0'), (2945, '4', 'Reject', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (2946, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (2947, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (2948, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (2949, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '670', '410', '1080', '3', '260', 'RMK Engineering College', 'Computer Science', '70', '100', '0'), (2950, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (2951, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (2952, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '146', '300', '3.5', '89', 'NMAMIT Nitte', 'EC', '8.38', '10', '0'), (2953, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (2954, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2010', '710', '390', '1100', '3', '105', 'Anna University', 'CSE', '74', '100', '0'), (2955, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (2956, '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '158', '149', '307', '4', '109', 'GITAM', 'ECE', '7.2', '10', '0'), (2957, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (2958, '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '164', '146', '310', 'None', 'None', 'None', 'Information Technology', '6.91', '10', '0'), (2959, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', '3', '90', 'Vishwakarma Institute of Technology', 'Computer', '6.7', '10', '0'), (2960, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '570', '1320', 'None', '101', 'MIT Pune', 'Electronics and telecommunication', '69.53', '100', '0'), (2961, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '147', '304', '2.5', '87', 'Dharamsinh Desai University', 'Information Technology', '64.67', '100', '0'), (2962, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '151', '313', '4', '107', 'Anna University', 'Electronics and Instrumentation Engineering', '7', '10', '0'), (2963, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (2964, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (2965, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '158', '149', '307', '3.5', '96', 'Panjab University', 'Electrical and Electronics', '62.37', '100', '0'), (2966, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3.5', '101', 'ITM University Gurgaon', 'Computer Science (B.Tech)', '6.66', '10', '0'), (2967, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '147', '305', '3', '82', 'VTU', 'Computer Science', '67', '100', '0'), (2968, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (2969, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '145', '306', '3', '90', 'KITS Kakatiya University', 'Electrical & Electronics Engineering', '66.16', '100', '0'), (2970, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (2971, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (2972, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '570', '1300', '3', '98', 'K J Somaiya College of Engiineering', 'Computer Engg', '60', '100', '0'), (2973, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (2974, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (2975, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (2976, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '480', '1200', '3.5', '107', 'University of Pune', 'IT', '58', '100', '0'), (2977, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (2978, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (2979, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '156', '144', '300', '3', '81', 'MU', 'BE in Electronics', '57', '100', '0'), (2980, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '148', '305', '4', '88', 'University of Pune', 'Computer', '62.41', '100', '0'), (2981, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (2982, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (2983, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (2984, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '660', '1380', '3.5', 'None', 'VTU', 'computer science', '60', '100', '0'), (2985, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '6', 'None', 'I.T', '70', '100', '0'), (2986, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (2987, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '60.41', '100', '0'), (2988, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '155', '146', '301', '3', '81', 'GITAM', 'Computer Science', '8.45', '10', '0'), (2989, '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '96', 'Andhra University', 'Information Technology', '8', '10', '0'), (2990, '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '165', '149', '314', '4', '105', 'MU', 'Mechanical', '60', '100', '0'), (2991, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (2992, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '720', '430', '1150', '3.5', '105', 'MU', 'Information Technology', '64', '100', '0'), (2993, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (2994, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (2995, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (2996, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', 'None', '85', 'BITS Pilani', 'CSE', '6.75', '10', '0'), (2997, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (2998, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (2999, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '620', '580', '1200', '4', '115', 'VTU', 'ECE', '78.5', '100', '0'), (3000, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (3001, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (3002, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '400', '1140', '3', '91', 'MU', 'Computers', '63', '100', '0'), (3003, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '108', 'BIT Mesra', 'ECE', '6.93', '10', '0'), (3004, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (3005, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '3', '102', 'Pune University', 'IT', '3.6', '4', '0'), (3006, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '160', '146', '306', '3', '98', 'MU', 'EXTC', '65', '100', '0'), (3007, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (3008, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (3009, '4', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3010, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3011, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3012, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '100', 'VKIT', 'CS', '65', '100', '32'), (3013, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (3014, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (3015, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (3016, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (3017, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '143', '303', '3', 'None', 'VRSEC', 'IT', '8.45', '10', '0'), (3018, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (3019, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '106', 'RGPV', 'cs', '69.56', '100', '0'), (3020, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '156', '151', '307', '3', '101', 'UPTU', 'information technology', '74.4', '100', '0'), (3021, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '109', 'University College Of Engineering Kariavattom Trivandrum', 'Computer Science', '6.7', '10', '0'), (3022, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (3023, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '380', '1130', '3', '90', 'PESIT', 'Information Scinece and Engineering', '67', '100', '0'), (3024, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (3025, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '670', '450', '1120', '3', 'None', 'sbmjce', 'eee', '0', '0', '0'), (3026, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3027, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (3028, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '164', '150', '314', '3.3', '89', 'Wuhan University of Technology', '0', '0', '100', '0'), (3029, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '111', 'Pune University', 'Mechanical', '53', '100', '0'), (3030, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (3031, '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2011', '740', '590', '1330', '3', '100', 'Southeast University', 'Communication Engineering', '80', '100', '0'), (3032, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '2.5', '84', 'SIET affliated to JNTU', 'IT', '68.25', '100', '0'), (3033, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (3034, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '380', '1110', '3', '95', 'Velalar College of Engg & Tech Erode', 'Computer Science and Engineering', '75', '100', '0'), (3035, '4', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2011', '730', '340', '1070', 'None', '80', 'University of Mumbai', 'Electronics and Telecommunication', '69.72', '100', '0'), (3036, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (3037, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (3038, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (3039, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '390', '1180', '3.5', '112', 'Gujarat Technological University', 'Computer', '3.82', '4', '0'), (3040, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (3041, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '460', '1240', '3', '101', 'None', '0', '0', '0', '0'), (3042, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'MU', 'Computer Engineering', '62.6', '100', '15'), (3043, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (3044, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (3045, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '99', 'SSEC', 'CSE', '73', '100', '0'), (3046, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (3047, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (3048, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '680', '1460', '4.5', '105', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3049, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (3050, '4', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '50', '21', '71', '4', '88', 'ITM Gurgaon', 'CSE', '68', '100', '0'), (3051, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (3052, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (3053, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (3054, '4', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (3055, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (3056, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (3057, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', '105', 'Pune University', 'CS', '7', '10', '0'), (3058, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (3059, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (3060, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '3', '92', 'Maharashtra Academy of Engineering / University of Pune', 'Computer Engineering', '62.8', '100', '0'), (3061, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '760', '450', '1210', 'None', '97', 'Anna University', 'Computer Science', '76', '100', '0'), (3062, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (3063, '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (3064, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (3065, '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '790', '650', '1440', '3', '100', 'Jaypee Institute of Information Technology', 'CSE', '6.9', '10', '0'), (3066, '4', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (3067, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (3068, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '58.51', '100', '0'), (3069, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (3070, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', '103', 'KIIT', 'EEE', '8', '10', '0'), (3071, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '143', '303', '3', '91', 'GITAM', 'CSE', '7.87', '10', '0'), (3072, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (3073, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (3074, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (3075, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (3076, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (3077, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (3078, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (3079, '4', 'Reject', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (3080, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '520', '1210', 'None', '93', 'MU', 'Information Technology', '57', '100', '0'), (3081, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (3082, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (3083, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (3084, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '460', '1250', '4.5', '283', 'Pune University', 'Computer Engg.', '57', '100', '0'), (3085, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (3086, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (3087, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (3088, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (3089, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (3090, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '86', 'Anna University', 'CS', '7', '100', '29'), (3091, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '740', '400', '1140', '3.5', '99', 'Bharat Institute of Engineering and Technology', 'Instrumentation and Control', '79', '100', '0'), (3092, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (3093, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '2.5', '87', 'Panimalar Engineering College', 'ECE', '82', '100', '0'), (3094, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (3095, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (3096, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2009', '780', '450', '1230', '3.5', '101', 'University of Mumbai', 'CS', '0', '0', '0'), (3097, '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (3098, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '710', '390', '1100', '3', '103', 'University of Pune', 'Information Technology', '58', '100', '0'), (3099, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'Fr. agnels vashi', 'Information technology', '56.45', '100', '0'), (3100, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '530', '1240', '3', '95', 'Vishwakarma Institute of Technology', 'Electronics', '68.2', '100', '0'), (3101, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '97', 'VTU', 'electronics and communication', '71', '100', '0'), (3102, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '91', 'Walchand College Of Engineering', 'Computer Science & Engineering', '63.71', '100', '0'), (3103, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (3104, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (3105, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (3106, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (3107, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (3108, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '96', 'Anna University', 'ECE', '7.5', '10', '0'), (3109, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '145', '301', '3', '97', 'VTU', 'CSE', '3.34', '4', '0'), (3110, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (3111, '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '152', '152', '304', '3', 'None', 'PESIT', 'MECHANICAL', '6.13', '10', '0'), (3112, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '155', '145', '300', '3', '100', 'MU', 'IT', '60', '100', '8'), (3113, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '750', '440', '1190', '4', '283', 'J.S.S.A.T.E. Noida', 'Computer Science', '69', '100', '0'), (3114, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '93', 'GGSIPU', 'CSE', '70', '100', '36'), (3115, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (3116, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '530', '1190', '3.5', '96', 'Pune University', 'B.E.Computer', '74', '100', '0'), (3117, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (3118, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (3119, '4', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '690', '330', '1020', '3.5', '92', 'Shivajirao S. Jondhale College of Engineering', 'Electronics & Telecomm', '57.5', '100', '0'), (3120, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (3121, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (3122, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '153', '148', '301', 'None', '87', 'Anna University', 'Computer Science', '75', '100', '0'), (3123, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (3124, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (3125, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '87', 'CBIT', 'Mechanical', '72.2', '100', '0'), (3126, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (3127, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (3128, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (3129, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '145', '304', '3', '98', 'MU', 'E&TC;', '64', '100', '0'), (3130, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (3131, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (3132, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '4.5', '280', 'None', 'Comp Sc.', '74', '100', '0'), (3133, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'Pune University', 'Computer Engg', '54', '100', '0'), (3134, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '470', '1190', '3.5', '90', 'Gautam Buddh Technical University', 'Electrical Engineering', '66', '100', '0'), (3135, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (3136, '4', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (3137, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '460', '1190', '3.5', '108', 'MU', 'Computer', '63', '100', '0'), (3138, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (3139, '4', 'Reject', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (3140, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (3141, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (3142, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '141', '299', '3.5', 'None', 'JNTU', 'CSE', '72.56', '100', '0'), (3143, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (3144, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '770', '470', '1240', '3.5', '253', 'VJTI', 'Mechanical', '65.9', '100', '0'), (3145, '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0'), (3146, '4', 'Reject', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (3147, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (3148, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (3149, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (3150, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (3151, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (3152, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (3153, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (3154, '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '150', '309', '3.5', '108', 'VTU', 'ECE', '69', '100', '0'), (3155, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (3156, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (3157, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (3158, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '150', '305', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (3159, '4', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (3160, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (3161, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (3162, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (3163, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (3164, '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '160', '148', '308', 'None', '104', 'Symbiosis Institute of Technology', 'Computer Science', '2.68', '4', '0'), (3165, '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '550', '1340', '4', '105', 'VTU', 'Electronics and Comunication', '69', '100', '0'), (3166, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '147', '306', '3.5', '101', 'Sardar Vallabhbhai National Institute of Technology', 'Information Technology', '7.74', '10', '0'), (3167, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '105', 'Biju Patnaik University of Technology', 'CSE', '7.65', '10', '31'), (3168, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (3169, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '470', '1210', '3.5', '108', 'VTU', 'Computer Science', '74', '100', '0'), (3170, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (3171, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (3172, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '144', '298', '3.5', '93', 'APSCE VTU', 'Information Science', '64.5', '100', '0'), (3173, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '48', '34', '82', '4.5', '103', 'Manipal Institue of Technology', 'Electrical and Electronics', '6.58', '10', '0'), (3174, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3.5', '107', 'ITM Gurgaon', 'CS', '61', '100', '0'), (3175, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '97', 'IIIT Allahabad', 'IT', '6.71', '10', '0'), (3176, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (3177, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (3178, '4', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (3179, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (3180, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (3181, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '380', '1070', '2.5', '89', 'K J Somaiya College of Engiineering', 'IT', '73', '100', '0'), (3182, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (3183, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '750', '410', '1160', '4', '106', 'Anna University', 'Computer Science', '73', '100', '0'), (3184, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '143', '304', '3', 'None', 'SUNY buffalo', 'EE', '73', '100', '0'), (3185, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (3186, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (3187, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (3188, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (3189, '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '162', '143', '305', '3', '91', 'VIT', 'CSE', '8.11', '10', '0'), (3190, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '2.5', '94', 'Sri Venkateswara College of Engineering', 'ECE', '6.82', '10', '0'), (3191, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3', '112', 'SJCE', 'Electronics and Communication', '68', '100', '0'), (3192, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '460', '1230', '3', '100', 'Shivaji University', 'Mechanical Engineering', '60.47', '100', '0'), (3193, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (3194, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (3195, '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '158', '145', '303', '3.5', '92', 'SASTRA', 'Mechatronics', '7.66', '10', '24'), (3196, '4', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (3197, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (3198, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (3199, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '144', '304', '3', '102', 'University of Pune', 'Electronics and Telecommunication', '71.4', '100', '0'), (3200, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '165', '326', '3.5', '112', 'BITS Pilani', 'E.E.E', '5.73', '10', '0'), (3201, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '103', 'GNIT (JNTU-H)', 'Computer Science and Engineering', '68', '100', '0'), (3202, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (3203, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3', '101', 'BIT Mesra', 'Computer Science Enggineering', '6.21', '10', '24'), (3204, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (3205, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '148', '304', 'None', '102', 'MGM CoET Noida', 'CS', '61', '100', '0'), (3206, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (3207, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (3208, '4', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (3209, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2015', '162', '151', '313', '3.5', '105', 'Kurukshetra University', 'Information Technology', '61.4', '100', '31'), (3210, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4.5', '108', 'COEP', 'Electrical Engineering', '6.54', '10', '9'), (3211, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '390', '1090', '4', '103', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '60', '100', '0'), (3212, '4', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (3213, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (3214, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '780', '440', '1220', '3', '98', 'MU', 'Electronics and telecommunication', '53', '100', '0'), (3215, '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0'), (3216, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (3217, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '139', '302', 'None', '81', 'MU', 'Computer Engineering', '64', '100', '0'), (3218, '4', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '155', '145', '300', '3', '101', 'MU', 'Computer Science', '61', '100', '0'), (3219, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (3220, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (3221, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (3222, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (3223, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (3224, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (3225, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '152', '149', '301', '3.5', '82', 'Goa University', 'Electronics & Telecom', '69', '100', '0'), (3226, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '149', '303', '3', '98', 'Biju Patnaik University of Technology', 'Applied Electronics & Instrumentation', '7.827', '10', '48'), (3227, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '153', '313', '3', '103', 'Gujarat Technological University', 'ECE', '3.42', '4', '0'), (3228, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '4', '109', 'NIT Tirchy', 'Computer Science and Engineering', '6.82', '10', '19'), (3229, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '480', '1250', '2.5', '96', 'MU', 'information technology', '5.7', '100', '0'), (3230, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '4', '105', 'University of Pune', 'Information Technology', '55.36', '100', '0'), (3231, '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2013', '158', '151', '309', '3', '102', 'VIT', 'CSE', '7.87', '10', '0'), (3232, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '149', '312', '3', '94', 'MU', 'Information Technology', '62', '100', '0'), (3233, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '146', '303', '3.5', '97', 'University of Mumbai', 'Information Technology', '0', '0', '0'), (3234, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (3235, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '159', '318', '3', '106', 'JNTU', 'CS', '58', '100', '0'), (3236, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '151', '146', '297', '3', '85', 'VIIT', 'Computer Engg', '59', '100', '0'), (3237, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '140', '298', '2.5', '84', 'Kurukshetra University', 'Computer Science engineering', '67', '100', '0'), (3238, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '109', 'MU', 'Information Technology', '62', '100', '0'), (3239, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (3240, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '159', '144', '303', '2.5', '7', 'Amrita School of Engineering', 'Electronics and communication', '6.47', '10', '0'), (3241, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '144', '304', '4', '88', 'RGMCET', 'CSE', '73.8', '100', '0'), (3242, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (3243, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (3244, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (3245, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (3246, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (3247, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '155', '152', '307', '3.5', '110', 'UMIT SNDT UNIVERSITY', 'ELECTRONICS AND COMMUNICATION', '6.83', '10', '0'), (3248, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (3249, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (3250, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (3251, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (3252, '4', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (3253, '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2011', '740', '310', '1050', '3', '84', 'Saveetha Engineering College', 'Information Technology', '73', '100', '0'), (3254, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (3255, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (3256, '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (3257, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (3258, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (3259, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (3260, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (3261, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (3262, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '440', '1200', '3', '88', 'Coimbatore Insitute of Technology', 'Computer Science and engineering', '7.23', '10', '0'), (3263, '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '150', '309', '2.5', '94', 'SVITS', 'Electronics & Communication', '70', '100', '0'), (3264, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (3265, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '430', '1230', '3.5', '97', 'Amrita School of Engineering', 'computer science', '6.43', '10', '0'), (3266, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (3267, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '102', 'NIT Surat', 'Computer Engineeing', '7.61', '10', '0'), (3268, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (3269, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (3270, '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (3271, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '750', '470', '1220', '3', '102', 'IET DAVV', 'ELECTRONICS', '67', '100', '0'), (3272, '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '163', '153', '316', '4', '114', 'MU', 'Electrical Engineering', '60', '100', '0'), (3273, '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2015', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '51'), (3274, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (3275, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (3276, '4', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '380', '1150', '3.5', '92', 'MU', 'Computer', '65', '100', '0'), (3277, '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (3278, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (3279, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (3280, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (3281, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (3282, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (3283, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (3284, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (3285, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '560', '1270', '3', '94', 'MU', 'computer', '63', '100', '0'), (3286, '4', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '580', '1380', '4.5', '104', 'MU', 'Computer Engineering', '59.86', '100', '0'), (3287, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '450', '1200', '3.5', '85', 'PICT', 'Computer Engineering', '0', '0', '0'), (3288, '4', 'Reject', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (3289, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (3290, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '156', '146', '302', '3.5', '101', 'Sapthagiri College of Engineering', 'Computer Science', '76.13', '100', '26'), (3291, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (3292, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (3293, '4', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (3294, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '520', '1280', '3', '97', 'Institute of Engineering & Technology DAVV Indore', 'Computer Engineering', '77', '100', '0'), (3295, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (3296, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (3297, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (3298, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (3299, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (3300, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3301, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (3302, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (3303, '4', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '161', '147', '308', '3', '96', 'Gayatri Vidya Parishad College of Engineering', 'computer science and engineering', '74.7', '100', '0'), (3304, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '430', '1190', '3.5', '111', 'JNTU', 'Computer Science', '70', '100', '0'), (3305, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (3306, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (3307, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (3308, '4', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (3309, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '3.5', '102', 'VTU', 'Computer Science and Engineering', '71', '100', '0'), (3310, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (3311, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (3312, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '3', '99', 'VTU', 'Information Science', '70', '100', '0'), (3313, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', 'None', 'None', 'CMRIT', 'IT', '63', '100', '0'), (3314, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '710', '370', '1080', '3', '102', 'Sree Sastha Institute of Engineering and Technology', 'Computer Science and Engineering', '75.29', '100', '0'), (3315, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '4', '109', 'MU', 'Computer Science', '61.6', '100', '0'), (3316, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '740', '510', '1250', '4', '104', 'MU', 'computer science', '55', '100', '0'), (3317, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (3318, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '3.5', 'None', 'GITAM', 'Computer Science and Engineering', '7.9', '10', '0'), (3319, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '710', '410', '1120', '3', '108', 'MU', 'Information Technology', '58', '100', '0'), (3320, '4', 'Reject', 'MS', 'Textile Science & Technology', 'Fall ', '2013', '152', '149', '301', '3', '101', 'Anna University', 'textile', '8.24', '10', '0'), (3321, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '670', '500', '1170', '2.5', '89', 'Pune University', 'Computer Engineering', '62.4', '100', '0'), (3322, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (3323, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '155', '145', '300', '3', '99', 'Osmania University', 'EEE', '66', '100', '0'), (3324, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (3325, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (3326, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (3327, '4', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2014', '157', '147', '304', '3', '97', 'Pune University', 'Computer Engg', '57.4', '100', '57'), (3328, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (3329, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '410', '1100', '3', 'None', 'RAIT', 'Computer Engineering', '65', '100', '0'), (3330, '4', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24'), (3331, '4', 'Reject', 'MS', 'CS/MIS', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'None', 'Computer Engineering', '6.85', '10', '0'), (3332, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (3333, '4', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2014', '158', '149', '307', '2.5', '93', 'MU', 'IT', '58', '100', '0'), (3334, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (3335, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (3336, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3337, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '150', '312', '3.5', '96', 'Narsee Monjee Institute of Management studies', 'Computer Science', '3.1', '4', '0'), (3338, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (3339, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '480', '1210', '3.5', '108', 'VTU', 'Information Science', '67.2', '100', '0'), (3340, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (3341, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (3342, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (3343, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (3344, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '98', 'B M S College of Engineering', 'CS', '8.28', '10', '0'), (3345, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', 'None', '97', 'JNTU', 'CSE', '65', '100', '0'), (3346, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (3347, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '146', '302', '4', '115', 'Anna University', 'Biomedical Engineering', '65', '100', '0'), (3348, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (3349, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (3350, '4', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '770', '480', '1250', '3.5', '109', 'MU', 'Computer Engineering', '0', '0', '0'), (3351, '4', 'Reject', 'MS', 'None', 'Fall ', '2012', '158', '149', '307', '3.5', '99', 'None', '0', '6.6', '100', '0'), (3352, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (3353, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (3354, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (3355, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (3356, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (3357, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (3358, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (3359, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '610', '500', '1110', '4.5', '293', 'K J Somaiya College of Engiineering', 'Computer', '61', '100', '0'), (3360, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (3361, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (3362, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (3363, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3364, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (3365, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3', '93', 'RGTU', 'Computer Science', '76', '100', '0'), (3366, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (3367, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '340', '1050', '3', '92', 'Pune University', 'IT', '73', '100', '0'), (3368, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '2.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (3369, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (3370, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (3371, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (3372, '4', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '153', '151', '304', '3', '107', 'Gvp College Of Engineering', 'Information Technology', '77', '100', '0'), (3373, '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2012', '159', '143', '302', '3.5', '85', '-1', 'ECE', '79', '100', '0'), (3374, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '630', '1390', '4.5', '115', 'Anna University', 'EE', '82', '100', '0'), (3375, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '153', '323', '3.5', '105', 'CoE Trivandrum', 'CSE', '7.9', '10', '0'), (3376, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '158', '322', '4', '108', 'TSEC', 'Information Technology', '64.2', '100', '0'), (3377, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '169', '151', '320', '3', '101', 'NIET', 'ECE', '71', '100', '0'), (3378, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (3379, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (3380, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '170', '150', '320', '3', '100', 'IIIT Gwalior', 'Information Technology', '7', '10', '21'), (3381, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '155', '325', '4', '118', 'M.S.U.', 'Electronics engineering', '3.98', '4', '0'), (3382, '6', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (3383, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '160', '150', '310', '3', 'None', 'VIT', 'Civil', '8.69', '10', '0'), (3384, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (3385, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'R V College of Engineering', 'INFORMATION TECHNOLOGY', '8.39', '10', '0'), (3386, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '590', '1290', '2', '102', 'National Institute Of Engineering', 'Computer Science', '8.86', '10', '0'), (3387, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', '98', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunications', '8.77', '10', '0'), (3388, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '148', '311', '3', '98', 'SPCE', 'Electrical', '76', '100', '0'), (3389, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3390, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3391, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (3392, '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (3393, '6', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '163', '150', '313', '3.5', 'None', 'K J Somaiya College of Engiineering', 'Information Technology', '66', '100', '48'), (3394, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '147', '312', '3.5', '96', 'IIT Patna', 'Electrical Engineering', '8.62', '10', '0'), (3395, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '150', '314', '4', '102', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.968', '10', '0'), (3396, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (3397, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '400', '1200', '3.5', '102', 'NIT-K Surathkal', 'Electrical', '8.1', '10', '0'), (3398, '6', 'Admit', 'MS', 'renewable energy', 'Fall', 'None', '161', '151', '312', '4.5', 'None', 'None', '0', '0', '0', '0'), (3399, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (3400, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '4.5', '114', 'UPTU', 'CSE', '70.8', '100', '0'), (3401, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '95', 'Acharya Nagarjuna University', 'cse', '87.6', '100', '0'), (3402, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '103', 'WBUT', 'Mechanical', '8.38', '10', '0'), (3403, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (3404, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (3405, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (3406, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '150', '320', '3.5', '102', 'NIT Rourkela', 'Electronics And Communication Engg', '9.06', '10', '40'), (3407, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '145', '311', '3', '95', 'IP University Delhi', 'Information Technology', '73.4', '100', '24'), (3408, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (3409, '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (3410, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (3411, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (3412, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '108', 'Anna University', 'Computer Science', '8.6', '10', '0'), (3413, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '680', '1470', '3.5', '105', 'Manipal Institue of Technology', 'ECE', '7.08', '10', '0'), (3414, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '101', 'B M S College of Engineering', 'Computer Science', '9.5', '10', '33'), (3415, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (3416, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '410', '1210', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.01', '10', '0'), (3417, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (3418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (3419, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (3420, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '790', '360', '1150', '3', '102', 'VIT Pune', 'Electronics', '9', '10', '0'), (3421, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (3422, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '156', '318', '3', '101', 'Pune University', 'INDUSTRIAL ENGG.', '8.49', '10', '0'), (3423, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (3424, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (3425, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (3426, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2015', '154', '148', '302', '3', '92', 'Chhattisgarh Swami Vivekanand Technical University', 'Civil', '7.7', '10', '12'), (3427, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (3428, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (3429, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (3430, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '4', '110', 'IIIT Hyderabad', 'Information Technology', '8.9', '10', '29'), (3431, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '104', 'VTU', 'Electrical & Electronics', '69', '100', '27'), (3432, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3433, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '157', '324', '4', '114', 'SRM', 'EEE', '8.5', '10', '0'), (3434, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '310', '1060', '3', '90', 'Dharamsinh Desai University', 'Electronics and Communications', '68', '100', '0'), (3435, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '4', '100', 'VTU', 'Electronics & Communications', '78.38', '100', '0'), (3436, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (3437, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4', '103', 'R V College of Engineering', 'Telecommunication', '9.01', '10', '0'), (3438, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '144', '306', '2', 'None', 'VTU', 'electronics and communication', '87.15', '100', '0'), (3439, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3.5', '108', 'VTU', 'Computer Science', '8.45', '10', '0'), (3440, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '600', '1380', '3.5', '115', 'VTU', 'Electrical and Electronics Engineering', '77.4', '100', '0'), (3441, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (3442, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (3443, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '670', '1470', '2.5', '96', 'VIT University', 'ECE', '8.1', '10', '0'), (3444, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (3445, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '146', '305', '3', '104', 'MSRIT', 'Mechanical', '9.66', '10', '0'), (3446, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '152', '313', '4', '111', 'SRM', 'Mechanical', '9.1', '10', '0'), (3447, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (3448, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3', '100', 'NIT Jamshedpur', 'COMPUTER SCIENCE AND ENGINEERING', '8.4', '10', '0'), (3449, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (3450, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '154', '319', '3.5', '105', 'NIT-warangal', 'EEE', '7.01', '10', '27'), (3451, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '165', '152', '317', '3.5', '105', 'VIT', 'School of Electrical Engineering', '8.65', '10', '0'), (3452, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (3453, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (3454, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '510', '1250', '3', 'None', 'Maharashtra Institute of Technology', 'Electronics and telecommunications', '62.12', '100', '0'), (3455, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '154', '318', '3.5', '100', 'NIT Hamirpur', 'Mechanical Engineering', '7.34', '10', '0'), (3456, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (3457, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (3458, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '111', 'Nagpur University', 'Computer Tech', '67', '100', '0'), (3459, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2008', '770', '460', '1230', '3.5', '110', 'VIT', 'E&I;', '8.76', '10', '0'), (3460, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '770', '390', '1160', '3.5', '107', 'VTU', 'Electronics and Communication', '76.46', '100', '0'), (3461, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'VIT', 'Telecommunication Engineering', '8.17', '10', '0'), (3462, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (3463, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (3464, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '88', 'Anna University', 'Electronics and communication enginnering', '8.1', '10', '0'), (3465, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '156', '317', '4', '106', 'Coimbatore Insitute of Technology', 'Computer Science', '9.4', '10', '30'), (3466, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (3467, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'SVCE', 'Electronics and Communication Engineering', '7.7', '10', '0'), (3468, '6', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (3469, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (3470, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '147', '312', '3', '105', 'VNIT Nagpur', 'Electrical and Electronics', '8.86', '10', '14'), (3471, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '149', '307', '3', '102', 'Sri Sairam Engineering College', 'CSE', '84', '100', '0'), (3472, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (3473, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '105', 'ITME', 'Computer Science Engg', '8.08', '10', '0'), (3474, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '460', '1220', '3', '108', 'Sri Sairam Engineering College', 'Mechanical Engineering', '8.15', '10', '0'), (3475, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.53', '10', '0'), (3476, '6', 'Admit', 'MS', 'renewable energy', 'Fall ', '2015', '160', '154', '314', '4', '114', 'BMSCE', 'ECE', '8.1', '10', '0'), (3477, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '650', '1440', '2.5', '106', 'NIT Jalandhar', 'Civil Engineering', '6.22', '10', '0'), (3478, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (3479, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'University of Pune', 'Electronics and Telecommunication', '73', '100', '0'), (3480, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '144', '302', '2.5', '81', 'Gujarat Technological University', 'Mechanical Engineeirng', '8.4', '10', '0'), (3481, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (3482, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (3483, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (3484, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (3485, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '147', '305', '3', '95', 'JNTU', 'ece', '80', '100', '0'), (3486, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '152', '316', '3', '106', 'IIT Hyderabad', 'Electrical Engineering', '8.5', '10', '0'), (3487, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (3488, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '4', '113', 'VIT Pune', 'Electronics & Telecom', '8.93', '10', '0'), (3489, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (3490, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (3491, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '108', 'BITS Goa', 'Mechanical', '8.56', '10', '0'), (3492, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '109', 'MU', 'EnT', '71', '100', '0'), (3493, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'Future Institute of Engineering and Management', 'E.C.E', '7.98', '10', '0'), (3494, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '4', '100', 'ssec anna university', 'cse', '8.1', '10', '0'), (3495, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '106', 'MU', 'Computers', '66', '100', '0'), (3496, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '96', 'MU', 'Information Technology', '71', '100', '42'), (3497, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '3', 'None', 'Anna University', 'Mechanical', '71.33', '100', '0'), (3498, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (3499, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (3500, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '154', '319', '3.5', '103', 'PESIT', 'Mechanical', '9.55', '10', '0'), (3501, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', 'None', 'None', 'COEP', 'Electrical', '6.2', '10', '0'), (3502, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3', '103', 'JSS Noida', 'electrical', '65', '100', '0'), (3503, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (3504, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'NIT Surat', 'Computer Engg.', '7.54', '10', '0'), (3505, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'COEP', 'mechanical engineering', '7.98', '10', '6'), (3506, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '144', '310', '3.5', '110', 'Pune University', 'Computer Engineerinmg', '9.17', '10', '0'), (3507, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '94', 'GITAM', 'ECE', '79.1', '100', '0'), (3508, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (3509, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (3510, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '116', 'University of Mumbai', 'EXTC', '72.48', '100', '0'), (3511, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '540', '1300', '3.5', '102', 'VJTI', 'Information Technology', '8.4', '10', '0'), (3512, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (3513, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '4', '104', 'VTU', 'Information Science and engineering', '78', '100', '0'), (3514, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '153', '314', '4.5', '103', 'PESIT', 'Mechanical Engineering', '8.57', '100', '0'), (3515, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'Manipal Institue of Technology', 'ECE', '9.7', '10', '0'), (3516, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '720', '1510', '4.5', 'None', 'NIT Durgapur', 'Computer Science and Engineering', '8.28', '10', '0'), (3517, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (3518, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '164', '151', '315', '5', '110', 'None', 'Biomedical Engg', '8.1', '10', '0'), (3519, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '153', '316', '4', '114', 'Anna University', 'EEE', '9.25', '10', '12'), (3520, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', 'None', 'VJTI', 'computer science', '8.4', '10', '0'), (3521, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (3522, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '163', '326', '4.5', '112', 'None', '0', '0', '0', '0'), (3523, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '149', '314', '4', '106', 'IIITDM Kancheepuram', 'Computer Engineering', '8.61', '10', '0'), (3524, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '167', '322', '3.5', '102', 'NIT Hamirpur', 'Electrical Engg', '7.38', '10', '56'), (3525, '6', 'Admit', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (3526, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (3527, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (3528, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (3529, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '147', '311', '3', '102', 'PICT', 'EnTC', '3', '4', '0'), (3530, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '550', '1350', '4.5', '109', 'K J Somaiya College of Engiineering', 'computer', '72', '100', '0'), (3531, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (3532, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '3.5', '114', 'Osmania University', 'IT', '73', '100', '0'), (3533, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '167', '149', '316', '3', '98', 'NIT Hamirpur', 'Computer Science and Engineering', '8.11', '10', '0'), (3534, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (3535, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (3536, '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (3537, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '147', '312', '3', '91', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICAION', '9.48', '10', '0'), (3538, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '90', 'JSS Noida', 'INDUSTRIAL ENGINEERING AND MANAGEMENT', '71.4', '100', '16'), (3539, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (3540, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '97', 'IIIT Hyderabad', 'Computer Science', '8.22', '10', '0'), (3541, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '105', 'SASTRA', 'ICT', '9.11', '10', '0'), (3542, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (3543, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '400', '1200', '3.5', '108', 'YCCE', 'Electronics and Telecommunication', '78.91', '100', '0'), (3544, '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall', 'None', '154', '146', '300', 'None', '94', 'None', '0', '0', '0', '0'), (3545, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '640', '1430', '5', '117', 'PESIT', 'Electronics and Communication', '85', '100', '0'), (3546, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '153', '316', '4', '111', 'RNSIT', 'Computer Science', '84.17', '100', '0'), (3547, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (3548, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (3549, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '580', '1360', '3', '98', 'SRM', 'Mechanical Engineering', '7.74', '10', '0'), (3550, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3551, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (3552, '6', 'Admit', 'MS', 'Computational Science', 'Spring ', '2015', '164', '148', '312', '3.5', '106', 'Amrita School of Engineering', 'CSE', '7.81', '10', '36'), (3553, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', '111', 'Mahatma Gandhi University Kerala', 'Computer Science And Engineering', '75', '100', '0'), (3554, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2006', '800', '650', '1450', '4', '283', 'CEG', 'ECE', '8.6', '10', '0'), (3555, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '95', 'CEG', 'Computer Science', '8.33', '10', '60'), (3556, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '99', 'Northern India Engg College (GGSIPU)', 'Information Technology', '77.45', '100', '29'), (3557, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2013', '770', '440', '1210', '3', '97', 'Valliammai Engineering College', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '8.59', '10', '0'), (3558, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '160', '146', '306', '3.5', '101', 'Osmania University', 'Mechanical(Industrial Production Engineering)', '70', '100', '0'), (3559, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '450', '1230', '3', '92', 'SASTRA', 'ECE', '7.39', '10', '0'), (3560, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '3.5', '108', 'Walchand College Of Engineering', 'Computer Science and Engg', '7.5', '10', '0'), (3561, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (3562, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '350', '1150', '3.5', '273', 'Anna University', 'Electronics and Communication', '78', '100', '0'), (3563, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '570', '1320', '3.5', '97', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '8.47', '10', '0'), (3564, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (3565, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (3566, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3567, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (3568, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (3569, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '106', 'Chaitanya Bharathi Institute of Technology', 'MECHANICAL', '83.91', '100', '0'), (3570, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '3', '110', 'VJTI', 'Computer', '8.1', '10', '0'), (3571, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (3572, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '161', '320', '3.5', '113', 'West Bengal University Of Technology', 'ECE', '8.7', '10', '0'), (3573, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '148', '304', '3', '101', 'PICT', 'Information Technology', '3.63', '4', '0'), (3574, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '550', '1330', '3.5', '103', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '0'), (3575, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (3576, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '3.5', '115', 'Biju Patnaik University of Technology', 'Electronics and Telecommunication', '9.07', '10', '0'), (3577, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '770', '460', '1230', '1230', '270', 'VTU', 'Instrumentation Technology', '82.4', '100', '0'), (3578, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (3579, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (3580, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4', '111', 'SASTRA', 'Information Technology', '7.99', '10', '0'), (3581, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '103', 'IIT Guwahati', 'Mechaanical', '8.6', '10', '3'), (3582, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '148', '307', '3', '307', 'Osmania University', 'CSE', '85', '100', '0'), (3583, '6', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (3584, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '110', 'NITK Surathkal', 'Computer Engineering', '0', '0', '0'), (3585, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (3586, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '168', '152', '320', '3.5', '106', 'None', '0', '8.56', '10', '0'), (3587, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (3588, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (3589, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (3590, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '3', '106', 'NIT Calicut', 'ECE', '8.34', '10', '0'), (3591, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (3592, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '157', '320', '3', '97', 'YMCA', 'Electronics & Instrumentation & Control', '8.44', '10', '36'), (3593, '6', 'Admit', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '680', '620', '1300', '4.5', '115', 'Mahrishi Dayanand University', 'Instrumentation and controls engg.', '69.58', '100', '0'), (3594, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'Panjab University', 'Dr SSB university Inst. of Chemical Engg. and Tech.', '9.098', '10', '0'), (3595, '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (3596, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '108', 'Delhi College Of Engineeing', 'Mechanical Engineering', '74.33', '100', '0'), (3597, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '143', '309', '3', '92', 'VTU', 'Electronics and Communication', '87', '100', '0'), (3598, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '800', '620', '1420', '3.5', '103', 'MSRIT', 'Mechanical', '9.34', '10', '0'), (3599, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (3600, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '480', '1240', 'None', '113', 'GGSIPU', 'Mechanical and Automation', '0', '0', '0'), (3601, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (3602, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '101', 'IP University Delhi', 'Computer Science', '83', '100', '0'), (3603, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '510', '1280', '4.5', '273', 'Atharva College', 'Computer Engineering', '60.11', '100', '0'), (3604, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (3605, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (3606, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (3607, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (3608, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (3609, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (3610, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '159', '151', '310', '3', '99', 'GGSIPU', 'Chemical Engineering', '72.53', '100', '26'), (3611, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '148', '316', '3', '102', 'VIT', 'ECE', '9.14', '10', '0'), (3612, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (3613, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '660', '1410', '4', '113', 'NIT', 'computer', '8.92', '10', '0'), (3614, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (3615, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (3616, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (3617, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4.5', '100', 'Chandigarh Engineering College Landran', 'Information Technology', '73', '100', '0'), (3618, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (3619, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '114', 'VTU', 'CSE', '74.6', '100', '24'), (3620, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (3621, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (3622, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '620', '1360', '3.5', '104', 'MU', 'Mechanical', '59.29', '100', '0'), (3623, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4.5', '112', 'GITAM', 'Civil engineering', '7.48', '10', '0'), (3624, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '317', '155', '472', '3', '106', 'MS uni', 'electronics', '3.91', '4', '0'), (3625, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (3626, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (3627, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'University of Kerala', 'Electrical & Electronics Engineering', '9.06', '10', '0'), (3628, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '147', '311', '2.5', '99', 'Osmania University', 'mechanical engineering', '8.3', '10', '0'), (3629, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (3630, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (3631, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (3632, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (3633, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '94', 'CVRCE', 'ECE', '84', '100', '0'), (3634, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (3635, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '151', '314', '3.5', '116', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (3636, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '142', '303', '3.5', '95', 'VTU', 'CS', '8.57', '10', '0'), (3637, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (3638, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (3639, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '161', '328', '4', '108', 'IIT Kharagpur', 'Industrial Engineering', '8.09', '10', '0'), (3640, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '560', '1360', '4.5', '111', 'None', '0', '0', '0', '0'), (3641, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (3642, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (3643, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '165', '322', '4', '110', 'PESIT', 'CSE', '8.34', '10', '0'), (3644, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (3645, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '630', '1380', '3', '97', 'University of Enngineering and Technology Taxila', 'Electrical', '90.5', '100', '0'), (3646, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '154', '322', '4', '112', 'VTU', 'Computer Science', '70', '100', '45'), (3647, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '277', 'PESIT', 'EC', '77', '100', '0'), (3648, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '440', '1180', '3', '103', 'Anna University', 'ece', '82', '100', '0'), (3649, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (3650, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '107', 'NIT Nagpur', 'Metallurgy and Material Science', '8.86', '10', '0'), (3651, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '115', 'K J Somaiya College of Engiineering', 'Computer Science', '74.5', '100', '0'), (3652, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (3653, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '740', '520', '1260', 'None', '86', 'BMSCE', 'E&C;', '79.45', '100', '0'), (3654, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (3655, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (3656, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '4', '109', 'WBUT', 'CSE', '8.18', '10', '62'), (3657, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3.5', '104', 'VTU', 'Computer Science', '76', '100', '0'), (3658, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '710', '510', '1220', '4', '270', 'Punjab Technical University', 'PRODUCTION ENGINEERING', '76', '100', '0'), (3659, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '530', '1300', '4', '93', 'Punjab Engineering College', 'Mechanical Engineering', '8.04', '10', '0'), (3660, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '155', '315', '4', '101', 'Guru Gobind Singh Indraprashta University', 'Mechanical & Automation Engineering', '75', '100', '0'), (3661, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '4', '107', 'WBUT', '0', '7.7', '10', '0'), (3662, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '154', '322', '3', '103', 'Institute of Engineering & Management', 'Computer Science & Engineering', '8.2', '10', '0'), (3663, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '94', 'Uttarakhand Technical University', 'Computer Science Engineering', '75.2', '100', '0'), (3664, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (3665, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (3666, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (3667, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (3668, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (3669, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', 'None', 'SSN College of Engineering', 'CSE', '77.3', '100', '0'), (3670, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '113', 'The LNM Institute of Information Technology', 'Electrocnics and Communication', '9.2', '10', '0'), (3671, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (3672, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (3673, '6', 'Admit', 'MS', 'Materials Science', 'Fall ', '2015', '166', '151', '317', '3', '108', 'BITS Pilani', 'Mechanical &Physics;', '6.26', '10', '0'), (3674, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (3675, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (3676, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '800', '540', '1340', '3', '106', 'RTM Nagpur University', 'Electronics', '73.63', '100', '0'), (3677, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '440', '1200', '4', '107', 'Rajarshi Shahu College of Enginneering', 'Computer Science', '66', '100', '0'), (3678, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (3679, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (3680, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (3681, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '159', '327', '3.5', '115', 'Anna University', 'Electronics and Communication Engineering', '7.9', '10', '0'), (3682, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (3683, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (3684, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (3685, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', '3.5', '104', 'MNMJEC', 'CSE', '8.48', '10', '0'), (3686, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', 'None', 'SASTRA', 'ICT', '7.17', '100', '0'), (3687, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (3688, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (3689, '6', 'Admit', 'MS', 'Computer Engineering', 'Summer ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3690, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (3691, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', 'None', 'CEG', 'Computer Science', '8.59', '10', '0'), (3692, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3.5', 'None', "St Joseph's College of Engineering", 'electronics and instrumentation engg', '8.92', '10', '0'), (3693, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '510', '1200', '4', '102', 'PESIT', 'CS', '0', '0', '0'), (3694, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '145', '302', '3.5', '103', 'VIT University', 'Computer Science & Engineering', '7.85', '10', '0'), (3695, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '146', '307', 'None', '95', 'Govt. College of Engg Amravati(Autonomous Institute)', 'Computer Science & Engineering', '7.99', '10', '0'), (3696, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (3697, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '153', '317', '3', '102', 'DSCE', 'CS', '77', '100', '0'), (3698, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '159', '324', '4', '112', 'Maharaja Sayajirao University Of Baroda', 'Computer Science and Engineering', '3.74', '4', '0'), (3699, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '680', '470', '1150', '3.5', '99', 'Anna University', 'EIE', '80', '100', '0'), (3700, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (3701, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (3702, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '154', '322', '3.5', '108', 'VTU', 'Electronics and Communication', '85', '100', '0'), (3703, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (3704, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3', '110', 'University of Pune', 'Computer Science', '66.81', '100', '0'), (3705, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '101', 'Goa University', 'Information Technology', '74', '100', '0'), (3706, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '4', '105', 'Coimbatore Insitute of Technology', 'EEE', '8.4', '10', '0'), (3707, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '113', 'SJCE', 'EEE', '74', '100', '0'), (3708, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (3709, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (3710, '6', 'Admit', 'MS', 'MSIM', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3711, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'JNTU', 'CS', '76', '100', '0'), (3712, '6', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (3713, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (3714, '6', 'Admit', 'MS', 'ASTRONOMY / ASTROPHYSICS', 'Fall ', '2013', '780', '610', '1390', 'None', '112', 'Univ of Mumbai', 'Mech. Eng.', '0', '0', '0'), (3715, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '600', '1330', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.73', '10', '0'), (3716, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (3717, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '580', '1280', '3.5', '108', 'SSN College of Engineering', 'Computer Science', '78.5', '100', '0'), (3718, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (3719, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (3720, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (3721, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '510', '1310', '4', '270', 'Kerala University', 'Electronics and Communication', '79', '100', '0'), (3722, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (3723, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3', '110', 'NIT Silchar', 'Computer Science', '7.52', '10', '0'), (3724, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (3725, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (3726, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (3727, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (3728, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (3729, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3730, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '91', 'CBIT', 'Computer Science', '84.3', '100', '12'), (3731, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '151', '315', '4', 'None', 'None', 'CS', '9.26', '10', '0'), (3732, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (3733, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (3734, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '143', '305', '3.5', '99', 'GITAM', 'ECE', '8.74', '10', '0'), (3735, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '152', '320', '3.5', '113', 'PSG College of Technology', 'MEchanical', '8.4', '10', '4'), (3736, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (3737, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (3738, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '112', 'BITS Pilani', 'Electronics and Instrumentation', '7.76', '10', '0'), (3739, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (3740, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (3741, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '790', '430', '1220', '3', '93', 'VIT University', 'ECE', '8.62', '10', '0'), (3742, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (3743, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '104', 'SRM', 'Electronics and Communication', '7.72', '10', '35'), (3744, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '149', '312', '2.5', '91', 'Institute of Technology Nirma University', 'Computer Science', '7.49', '10', '0'), (3745, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '90', 'VJTI', 'Mechanical', '8', '10', '0'), (3746, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (3747, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '151', '313', '4', '109', 'Anna University', 'IT', '7.92', '10', '0'), (3748, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (3749, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (3750, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (3751, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'CS', '77', '100', '0'), (3752, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3', '93', 'SLC', 'ECE', '84.2', '100', '0'), (3753, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2011', '800', '500', '1300', '3.5', '100', 'West Bengal University Of Technology', 'ECE', '8.53', '10', '0'), (3754, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'SSN College of Engineering', 'Biomedical Engineering', '8.38', '10', '0'), (3755, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (3756, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (3757, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (3758, '6', 'Admit', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (3759, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (3760, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (3761, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '4', '113', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (3762, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '150', '316', '3.5', 'None', 'NITK Surathkal', '0', '8.73', '10', '0'), (3763, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '108', 'VTU', 'Computer Science', '78', '100', '0'), (3764, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '560', '1290', '4', '115', 'SSN College of Engineering', 'ECE', '80', '100', '0'), (3765, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (3766, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '100', 'Anna University', 'Electronics and Communication', '81.74', '100', '0'), (3767, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '109', 'NIT Karnataka', 'Electrical and Electronics', '7.81', '10', '0'), (3768, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '105', 'Sathyabama University', 'Mechanical Engineering', '7.456', '10', '0'), (3769, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '104', 'Anna University', 'IT', '6.82', '10', '24'), (3770, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '151', '318', 'None', '98', 'BITS Pilani', 'EEE', '6.92', '10', '0'), (3771, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (3772, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (3773, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '165', '149', '314', '3', '91', 'BITS Goa', 'EEE', '6.43', '10', '0'), (3774, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3775, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '102', 'Coimbatore Insitute of Technology', 'CSE', '8.6', '10', '20'), (3776, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'BITS Pilani', 'Electrical and Electronics', '7.95', '10', '0'), (3777, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '610', '1410', '4.5', '277', 'Crescent Engineering College', 'ECE', '84.5', '100', '0'), (3778, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (3779, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '157', '318', '3', '103', 'Anna University', 'Mechanical Engineering', '8.31', '10', '0'), (3780, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (3781, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '3', '100', 'NIT Warangal', 'Mechanical', '8.08', '10', '0'), (3782, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', '108', 'IIT Guwahati', '0', '0', '0', '0'), (3783, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '3', '102', 'VIT University', 'BTECH/CSE', '8.94', '10', '0'), (3784, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '4', '105', 'VTU', 'CSE', '74.5', '100', '0'), (3785, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '146', '307', '3', '93', 'VIT', 'ece', '7.23', '10', '18'), (3786, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (3787, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (3788, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '165', '152', '317', '3', '102', 'SASTRA', 'ECE', '8.18', '10', '0'), (3789, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (3790, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (3791, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (3792, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '4', '104', 'Kakatiya University', 'ECE', '74', '100', '0'), (3793, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '108', 'Gujarat Technological University', 'Electrical Engineering', '8.2', '10', '0'), (3794, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (3795, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (3796, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (3797, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (3798, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (3799, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '146', '306', '3', 'None', 'None', 'ECE', '74', '100', '0'), (3800, '6', 'Admit', 'MS', 'Business Analytics', 'Summer ', '2015', '165', '148', '313', '2.5', '101', 'MU', 'Telecommunication', '66', '100', '49'), (3801, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (3802, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (3803, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '106', 'NIT Nagpur', 'Civil', '7.5', '10', '0'), (3804, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cochin University of Science and Technology', 'Computer Science', '82.8', '100', '42'), (3805, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (3806, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '4', '108', 'NIT Nagpur', 'Electrical and Electronics', '8.25', '10', '0'), (3807, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Engineering', '8.82', '10', '0'), (3808, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '149', '317', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.31', '10', '0'), (3809, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (3810, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (3811, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '490', '1280', '3.5', '97', 'MU', 'Computer science', '70', '100', '0'), (3812, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (3813, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.95', '10', '0'), (3814, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '98', 'IEM/WBUT', 'CSE', '8.65', '100', '0'), (3815, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (3816, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '4', '110', 'VJTI', '0', '0', '0', '20'), (3817, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (3818, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'VTU', 'Electrical and Electronics Engineering', '70', '100', '42'), (3819, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (3820, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '4.5', '111', 'SSN College of Engineering', 'CSE', '8.25', '10', '0'), (3821, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (3822, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (3823, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (3824, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '151', '312', '4', '98', 'BITS Pilani', 'computer science', '7.08', '10', '0'), (3825, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (3826, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', 'None', '102', 'CoE Trivandrum', 'Computer Science', '83', '100', '0'), (3827, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (3828, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '142', '303', '3.5', '101', 'College of Technology Pantnagar', 'production engineering', '7.15', '10', '0'), (3829, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (3830, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '1330', '540', '1870', '3', '89', 'VESIT', 'E & TC', '75', '100', '0'), (3831, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (3832, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (3833, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (3834, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '148', '311', 'None', '103', 'RNSIT', 'Electronics and Communicati', '80', '100', '0'), (3835, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '4', '107', 'None', '0', '90', '100', '0'), (3836, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (3837, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (3838, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '162', '158', '320', '4', '116', 'Sardar Patel College of Engineering', 'Information Technology', '65.36', '100', '28'), (3839, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '94', 'Sir MVIT', 'Information Science', '70', '100', '0'), (3840, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (3841, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (3842, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4.5', '98', 'CoE Trivandrum', 'CSE', '78', '100', '0'), (3843, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (3844, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '148', '312', '3.5', '96', 'NIT ALLAHABAD', 'Electrical Engineering', '9.05', '10', '0'), (3845, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3846, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '91', 'NIT Rourkela', 'CIVIL ENGINEERING', '7.81', '10', '0'), (3847, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '4.5', '114', 'BIT Mesra', 'Computer Science Engineering', '7.5', '10', '30'), (3848, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'GITAM', 'Electrical and Electronics', '3.95', '4', '0'), (3849, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (3850, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (3851, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '163', '148', '311', '3', '96', 'MSRIT', 'CSE', '8.71', '10', '0'), (3852, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '91', 'Anna University', 'Computer Science', '8.17', '10', '30'), (3853, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (3854, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '580', '1330', '3', '101', 'Pune University', 'Electonics and telecommunication', '72', '100', '0'), (3855, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (3856, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '149', '316', '4', '96', 'Mahatma Gandhi University Kerala', 'MECHANICAL ENGINEERING', '7.42', '10', '0'), (3857, '6', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '162', '151', '313', '3', '91', 'Anna University', 'Mechanical', '7.26', '10', '30'), (3858, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (3859, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (3860, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '142', '305', '3.5', '100', 'NIT Allahabad', 'Mechanical', '9.11', '10', '0'), (3861, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '165', '147', '312', '3.5', '100', 'Lakshmi Narain College of Technology', 'Computer Science and Engineering', '74.75', '100', '52'), (3862, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '620', '1410', '3.5', '118', 'Anna University', 'EEE', '81', '100', '0'), (3863, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '750', '600', '1350', '3.5', '113', 'Anna University', 'EEE', '8.274', '10', '0'), (3864, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '146', '303', '3', '107', 'RNSIT', 'Electronics and communication', '76.5', '100', '0'), (3865, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (3866, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3867, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '48', '32', '80', '5.5', '113', 'University of Pune', 'ENTC', '0', '0', '0'), (3868, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3869, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (3870, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '49', '35', '84', '6', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.13', '10', '0'), (3871, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '460', '1170', '3', '101', 'VTU', 'CSE', '80.5', '100', '0'), (3872, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '151', '313', '4', '109', 'VTU', 'ECE', '77', '100', '0'), (3873, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (3874, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '720', '1460', '6', '293', 'NITK Surathkal', 'EnC', '88', '100', '0'), (3875, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (3876, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4.5', '111', 'Sir MVIT', 'Info Science', '79.82', '100', '0'), (3877, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '3', '108', 'West Bengal University Of Technology', 'ECE', '8.85', '10', '0'), (3878, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '570', '1340', '3', '100', 'WBUT', 'A.E.I.E', '8', '100', '0'), (3879, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (3880, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '145', '306', '3.5', '105', 'R V College of Engineering', 'Mechanical Engineering', '7.65', '10', '0'), (3881, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0'), (3882, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3.5', '111', 'Sardar Patel College of Engineering', 'Information Technology', '68.2', '100', '17'), (3883, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (3884, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (3885, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (3886, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '102', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics Engineering', '8.34', '10', '0'), (3887, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3', '98', 'VIT', 'School of Electronics Engineering', '9.26', '10', '0'), (3888, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '3', '99', 'West Bengal University Of Technology', 'CSE', '7.3', '10', '90'), (3889, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (3890, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '650', '1440', '3', '109', 'SGSITS', 'mechanical', '78', '100', '0'), (3891, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (3892, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (3893, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '400', '1200', '4', '112', 'SRM', 'Computer Science', '9.4', '10', '0'), (3894, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3', '106', 'WBUT', 'Electrical Engineering', '8.39', '10', '0'), (3895, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (3896, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '163', '143', '306', 'None', '104', 'GGSIPU', 'biotechnology', '0', '0', '0'), (3897, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (3898, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '4.5', '110', 'BITS Pilani', 'MECHANICAL', '7.31', '100', '0'), (3899, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (3900, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '630', '1420', '3.5', '117', 'SSN College of Engineering', 'ece', '80', '100', '0'), (3901, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '540', '1310', '4.5', '104', 'UPTU', 'Computer Science', '76', '100', '0'), (3902, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '3.5', '95', 'SDM', 'Electrical Engineering', '8.8', '10', '0'), (3903, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'GITAM', 'ECE', '9.72', '10', '0'), (3904, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '154', '322', '3.5', '105', 'NIT Warangal', 'electrical and electronics', '9.43', '10', '0'), (3905, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (3906, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '163', '326', '3.5', '116', 'Institue of Engineering And Management', 'Computer science and Engineering', '9.22', '10', '0'), (3907, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (3908, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (3909, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (3910, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '93', 'VTU', 'Electronics and communication', '79', '100', '0'), (3911, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3912, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (3913, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '146', '307', '3', '100', 'BMSCE', 'CS', '74.14', '100', '0'), (3914, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '151', '309', '3.5', '107', "Hautes Etudes d'Ingenieur", 'Electrical Engineering', '3.3', '4', '0'), (3915, '6', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '148', '304', '3', 'None', 'RMK Engineering College', 'Electronics and Instrumentation', '8.97', '10', '19'), (3916, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (3917, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (3918, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '4.5', '108', 'VTU', 'IT', '69.7', '100', '0'), (3919, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (3920, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '108', 'Pune University', 'E&TC;', '70', '100', '0'), (3921, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '110', 'Kalpataru Institute of Technology', 'Computer Science', '72', '100', '0'), (3922, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '107', 'NIT Warangal', 'CIVIL ENGINEERING', '8.45', '10', '0'), (3923, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (3924, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '140', '299', '3', 'None', 'SCSVMV University', 'Mechanical engineering', '9.37', '10', '0'), (3925, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '101', 'Charotar University of Science and Technology', 'Information Technology', '7.82', '100', '0'), (3926, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (3927, '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2014', '157', '153', '310', '4', '109', 'Engineering', 'Computer Science', '3.7', '100', '0'), (3928, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '47', '35', '82', '4.5', '106', 'Bharati Vidyapeeth', 'Chemical Engineering', '68', '100', '0'), (3929, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (3930, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '12', '720', '530', '1250', '3', '101', 'Anna University', 'mechanical', '8.7', '10', '0'), (3931, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '152', '311', '4', '103', 'JNTU', 'ECE', '82.75', '100', '0'), (3932, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '620', '1370', '3.5', '93', 'Anna University', 'ECE', '78', '100', '0'), (3933, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (3934, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '3.5', '95', 'Pune University', 'Mechanical Engineering', '78', '100', '0'), (3935, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (3936, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (3937, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (3938, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (3939, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '3', '103', 'MU', 'Electronics', '70.3', '100', '0'), (3940, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '166', '332', '4', '114', 'West Bengal University Of Technology', 'Information Technology', '81.6', '100', '0'), (3941, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '640', '1440', '5', '287', 'SVCE', 'EEE', '85', '100', '0'), (3942, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '105', 'VJTI', 'Computer Engineering', '6.4', '10', '29'), (3943, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '390', '800', '1190', '4', '107', 'Gayatri Vidya Parishad College of Engineering', 'Comp Science Engg', '76.67', '100', '0'), (3944, '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Spring ', '2016', '167', '155', '322', '4', '114', 'PEC University of Technology', 'Electronics and Electrical Communication', '7.82', '10', '0'), (3945, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '115', 'SASTRA', 'Computer Science', '9.6', '10', '0'), (3946, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '111', 'LD Engineering Gujarat University', 'Computer Engineering', '70', '100', '0'), (3947, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '460', '1180', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (3948, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '113', 'Sri Venkateswara College of Engineering', 'Chemical Engg', '8.4', '10', '0'), (3949, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '104', 'VIT', 'BTech-EEE', '8.89', '10', '24'), (3950, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '164', '160', '324', '3.5', '107', 'Manipal Institue of Technology', 'Mechanical & Manufacturing (Mechatronics)', '6.96', '10', '0'), (3951, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (3952, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (3953, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '106', 'Coimbatore Insitute of Technology', 'Mechanical Engineering', '8.37', '10', '0'), (3954, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '750', '340', '1090', '2.5', '93', 'Anna University', 'EEE', '79.91', '100', '0'), (3955, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3.5', '110', 'None', '0', '81', '100', '0'), (3956, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '107', 'Crescent Engineering College', 'Electronics & Communication', '0', '0', '0'), (3957, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (3958, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (3959, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '156', '159', '315', '3.5', 'None', 'Chaitanya Bharathi Institute of Technology', 'Biotechnology', '77', '100', '0'), (3960, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '600', '1360', '3.5', '110', 'RIT Shivaji University', 'Mechanical', '74', '100', '0'), (3961, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '170', '165', '335', '4.5', '109', 'None', '0', '70', '100', '0'), (3962, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4', '104', 'COEP', 'Civil Engineering', '7.51', '10', '21'), (3963, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'Manipal Institue of Technology', 'electronics and communication', '8.71', '10', '0'), (3964, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (3965, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '590', '1370', '4', '115', 'None', '0', '0', '0', '0'), (3966, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '162', '150', '312', '3.5', '100', 'None', 'Electronics', '9.6', '10', '0'), (3967, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (3968, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '152', '309', '4.5', '111', 'SRM', 'ECE', '9.1', '10', '0'), (3969, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (3970, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3971, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '101', 'Kurukshetra University', 'Computer Science', '3.26', '4', '106'), (3972, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '142', '304', '3.5', '92', 'None', '0', '9.02', '10', '0'), (3973, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '153', '315', '3.5', 'None', 'Manipal Institue of Technology', 'Electronics and Communication Engineering Department', '9.3', '10', '0'), (3974, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '430', '1230', '3', '93', 'DA-IICT', 'Information & Comm. Tech', '8.27', '10', '0'), (3975, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '87', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.57', '10', '0'), (3976, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '148', '315', '3', '82', 'BITS Goa', 'Electrical and Electronics', '8.67', '10', '0'), (3977, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (3978, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '151', '314', '4.5', '108', 'SRM', 'Mechatronics', '7.932', '10', '0'), (3979, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (3980, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3', '106', 'Indraprastha University', 'Computer Science', '81', '100', '0'), (3981, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '114', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication Engineering', '79.5', '100', '0'), (3982, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (3983, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '103', 'Sardar Vallabhbhai National Institute of Technology', 'Civil Engineering', '6.95', '10', '0'), (3984, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (3985, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (3986, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '152', '321', '3.5', '105', 'National Institue Of Technology Karnataka Surathkal', 'Computer Engineering', '8.24', '10', '0'), (3987, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '650', '550', '1200', '3', '102', 'MU', 'electrical', '64', '100', '0'), (3988, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'VIT University', 'IT', '9.12', '10', '0'), (3989, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (3990, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (3991, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3992, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '103', 'JNTU', 'EEE', '82', '100', '0'), (3993, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '163', '146', '309', '3.5', '100', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '9.05', '10', '0'), (3994, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '151', '315', '3', '92', 'PSG College of Technology', 'ECE', '8.96', '10', '0'), (3995, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '690', '660', '1350', '3', '103', 'Anna University', 'Biomedical Engineering', '84', '100', '0'), (3996, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2011', '720', '490', '1210', '3', '109', 'Anna University', 'Electrical and Electronics Engineering', '85.19', '100', '0'), (3997, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '640', '1430', '4.5', '112', 'Thapar University', 'Electrical Engineering', '9.23', '10', '0'), (3998, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (3999, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '740', '1520', '4.5', 'None', 'NIT Calicut', 'Electronics & Communication', '7.49', '10', '0'), (4000, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '159', '148', '307', '3.5', '98', 'Cochin University of Science and Technology', 'Computer Science And Engineering', '68.5', '100', '0'), (4001, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '157', '314', '4', '110', 'MU', 'Computer Engineering', '69', '100', '0'), (4002, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', 'None', '100', 'NIT Allahabad', 'ECE', '9.08', '10', '36'), (4003, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (4004, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '155', '317', '3.5', '104', 'VITU', 'ECE', '7.81', '10', '0'), (4005, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (4006, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (4007, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (4008, '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '9.14', '10', '0'), (4009, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (4010, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '340', '1130', '4', '103', 'None', '0', '0', '0', '0'), (4011, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '101', 'Punjab Technical University', 'Computer Science & Engineering', '71', '100', '0'), (4012, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', 'None', 'JNTU', 'Mechanical', '83.1', '100', '0'), (4013, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '151', '314', '4.5', '113', 'SRM', 'Electonrics and Communication', '9.52', '10', '0'), (4014, '6', 'Admit', 'MS', 'Telecom management', 'Fall ', '2012', '790', '480', '1270', '3', '106', 'Anna University', 'ECE', '7.872', '10', '0'), (4015, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '92', 'CEG', 'CSE', '8.76', '10', '0'), (4016, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '144', '305', '3.5', '95', 'SSN College of Engineering', 'Computer Science', '74', '100', '52'), (4017, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '370', '1160', '3', '102', 'Anna University', 'B.Tech-Information Technology', '79', '100', '0'), (4018, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '160', '322', '3', '105', 'BITS Pilani', 'ECE', '8.7', '10', '0'), (4019, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (4020, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (4021, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '109', 'Guru Nanak Dev University Amritsar', 'Electronics Technology', '7.57', '10', '11'), (4022, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (4023, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (4024, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '660', '1460', '800', '290', 'MU', 'EE', '72', '100', '0'), (4025, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (4026, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (4027, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '107', 'VTU', 'ECE', '84', '100', '0'), (4028, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '106', 'None', 'computer science', '72', '100', '0'), (4029, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (4030, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '790', '350', '1140', '3.5', '104', 'Anna University', 'IT', '82', '100', '0'), (4031, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '106', 'CoE Trivandrum', 'Electronics and Instrumentation', '7.7', '10', '0'), (4032, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '147', '307', '3', '98', 'VIT University', 'ECE', '9.03', '10', '2'), (4033, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (4034, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (4035, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (4036, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (4037, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '149', '314', '3.5', '100', 'Sairam engg college(Anna University)', 'CSE', '7.79', '10', '30'), (4038, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (4039, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '95', 'IIIT Allahabad', 'IT', '7.95', '10', '0'), (4040, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (4041, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'ICFAI', 'Computer Science Engineering', '9.48', '10', '0'), (4042, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (4043, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '150', '318', '3.5', '111', 'NIT Hamirpur', 'cse', '7.98', '10', '24'), (4044, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (4045, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '112', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '68', '100', '0'), (4046, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '73', '100', '0'), (4047, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3', '93', 'SASTRA', 'ECE', '8.02', '10', '0'), (4048, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0'), (4049, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '149', '316', '3', '7', 'Manipal Institue of Technology', 'ECE', '6.31', '10', '0'), (4050, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (4051, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '3', '88', 'Kakatiya University', 'ECE', '82', '100', '0'), (4052, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '113', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Computers', '8.2', '10', '0'), (4053, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (4054, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '3.5', 'None', 'Naional Institute of Technology Raipur', 'Electronics & Telecommunication', '77.1', '100', '0'), (4055, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (4056, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '3', '106', 'Sreenidhi Institute of Science & Technology', 'cse', '81.7', '100', '0'), (4057, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (4058, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (4059, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '101', 'R V College of Engineering', 'electronics', '9.28', '10', '0'), (4060, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (4061, '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0'), (4062, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (4063, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (4064, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '154', '316', '3.5', '107', 'NIT Allahabad', 'Chemical Engineering', '7.39', '10', '18'), (4065, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'NITK Surathkal', 'EEE', '7.97', '10', '0'), (4066, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (4067, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'VIT', 'Mechanical Engineering', '8.81', '10', '0'), (4068, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '570', '1300', '5', '110', 'CEC', 'CS', '83', '100', '0'), (4069, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '114', 'WBUT', 'Computer Science and Engineering', '8.47', '10', '0'), (4070, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '167', '152', '319', '3.5', '95', 'VTU', 'EEE', '69', '100', '0'), (4071, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (4072, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '560', '1360', '4', '111', 'JNTU', 'EEE', '81.4', '100', '0'), (4073, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '370', '1150', '3.5', '1004', 'None', '0', '0', '0', '0'), (4074, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '660', '490', '1150', '2.5', '80', 'MU', 'Production', '0', '0', '0'), (4075, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (4076, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (4077, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '3', '93', 'Sardar Patel College of Engineering', 'IT', '70', '100', '0'), (4078, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (4079, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '162', '153', '315', '4.5', '111', 'None', '0', '0', '0', '0'), (4080, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (4081, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '146', '316', '3.5', '97', 'JNTU', 'Electronics and Communication Engineering', '87.8', '100', '0'), (4082, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '100', 'UPTU', 'Electronics and Telecommunication', '69.4', '100', '0'), (4083, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2016', '160', '140', '300', '3', 'None', 's.r.k.r engineering college', 'civil engineering', '7.7', '10', '0'), (4084, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2011', '740', '580', '1320', '4', '113', 'Gujarat Technological University', 'Electronics & Communication', '74', '100', '0'), (4085, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '4', '106', 'MU', 'Computer Engineering', '76', '100', '0'), (4086, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (4087, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '147', '310', '4', '110', 'Amrita School of Engineering', 'Civil', '7.29', '10', '0'), (4088, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (4089, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '147', '311', '3', '93', 'BMSCE', 'Electronics and Commuications', '9.42', '10', '22'), (4090, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (4091, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (4092, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '153', '316', '3.5', '110', 'None', 'ECE', '8', '10', '0'), (4093, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (4094, '6', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (4095, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '450', '1250', '3.5', '100', 'NIT Warangal', 'Electronics and Communications Engineering', '7.89', '10', '0'), (4096, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '460', '1260', '3', '103', 'Pune University', 'Mechanical engineering', '60', '100', '0'), (4097, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (4098, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (4099, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (4100, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (4101, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '3.5', '100', 'VTU', 'Telecommunication engineering', '8.9', '10', '0'), (4102, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '4', '109', 'VTU', 'CS', '79', '100', '0'), (4103, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (4104, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '4.5', '100', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '9.04', '10', '0'), (4105, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4106, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (4107, '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (4108, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (4109, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (4110, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (4111, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '150', '318', '3', '101', 'GGSIPU', 'ECE', '87', '100', '0'), (4112, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (4113, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '710', '1510', '5', '277', 'CEG', 'ECE', '8.6', '10', '0'), (4114, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '2.5', '97', "St Joseph's College of Engineering", 'ECE', '8.62', '10', '0'), (4115, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (4116, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '145', '159', '304', '3.5', '92', 'CEG', 'EEE', '7.8', '10', '0'), (4117, '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '800', '570', '1370', '3', 'None', 'VJTI', 'Electronics', '8.6', '10', '0'), (4118, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2014', '165', '145', '310', '3.5', '103', 'NIT MIZORAM', 'ECE', '8.52', '10', '0'), (4119, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (4120, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '3.5', '104', 'Jalpaiguri Govt Engg College', 'Electrical', '8.57', '10', '0'), (4121, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (4122, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '4', '104', 'University Institute of Engineering & TEch Kurukshetra University', 'Computer Science', '74', '100', '0'), (4123, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '109', 'CEG', 'Electronics and Communication', '9.31', '10', '0'), (4124, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '490', '1290', '5', '283', 'University of Bombay', 'Computer', '65', '100', '0'), (4125, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (4126, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5.5', '117', 'BITS Goa', 'EEE', '8.62', '10', '0'), (4127, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (4128, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '146', '311', '3', '110', 'Savitribai Phule Pune University', 'Electrical Engineering', '66.5', '100', '0'), (4129, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (4130, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '140', '299', '4', 'None', 'GTU', 'IT', '7.72', '10', '0'), (4131, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '153', '312', '3.5', '104', 'G. H. Patel College of Engineering and Technology', 'Electrical', '7.73', '10', '0'), (4132, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (4133, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (4134, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (4135, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (4136, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (4137, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '670', '1340', '4', '101', 'SCE', 'CSE', '3.32', '4', '0'), (4138, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', 'None', 'COEP', 'Electronics and Telecom Engg.', '6.71', '10', '0'), (4139, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (4140, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', '116', 'MU', 'Mechanical', '72.94', '100', '0'), (4141, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '152', '314', '3.5', '101', 'NIT-Jaipur', 'Computer Science', '7', '10', '0'), (4142, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3', '102', 'IIITDM Kancheepuram', 'Computer Engineering', '8.31', '10', '0'), (4143, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '12', '800', '330', '1130', '3.5', '99', 'VIT', '0', '8.64', '10', '0'), (4144, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '500', '1290', '3', '100', 'GGSIPU', 'Mechanical and Automation', '75', '100', '0'), (4145, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '720', '560', '1280', '3', '98', 'S.D.B.C.T', 'Computer Science', '72.06', '100', '0'), (4146, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (4147, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '155', '147', '302', '3.5', '97', 'Lingayas Institute of management and technology', 'school of civi engineering', '57.7', '100', '0'), (4148, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (4149, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (4150, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '560', '1340', '4', '108', 'Pune University', 'Electrical', '69', '100', '0'), (4151, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '95', 'Madras Institute of Technology', 'CSE', '8.3', '10', '0'), (4152, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (4153, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '163', '330', '4.5', '115', 'Delhi College Of Engineeing', 'Electrical and Electronics Engineering', '70.5', '100', '0'), (4154, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', 'None', '96', 'West Bengal University Of Technology', 'Information Technology', '8.14', '10', '0'), (4155, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '167', '150', '317', '3.5', '110', 'KLUNIVERSITY', 'industrial', '8.3', '100', '0'), (4156, '6', 'Admit', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (4157, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (4158, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '152', '316', '3', '110', 'NIT Durgapur', 'electronics and communication', '8.66', '10', '0'), (4159, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (4160, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '3', '109', 'Gujarat Technological University', 'Electronics & Communication', '3.96', '4', '0'), (4161, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (4162, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (4163, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '147', '306', '3.5', '97', 'Guru Nanak Dev University Amritsar', 'ece', '74', '100', '0'), (4164, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (4165, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '4', '109', 'VTU', 'CS', '70', '100', '0'), (4166, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (4167, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (4168, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '157', '323', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.4', '10', '36'), (4169, '6', 'Admit', 'MS', 'optics', 'Fall ', '2014', '165', '160', '325', '4', '110', 'None', 'Physics', '89', '100', '0'), (4170, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (4171, '6', 'Admit', 'MS', 'Robotics', 'Fall ', '2014', '167', '156', '323', '4', '111', 'U.V. Patel College of Engineering Ganpat University', 'Mechatronics engineering', '68.25', '100', '0'), (4172, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '790', '570', '1360', '3.5', '92', 'MU', 'Electronics and Telecommunication', '70.04', '100', '0'), (4173, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (4174, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '172', '151', '323', '3.5', '105', 'None', '0', '0', '0', '0'), (4175, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '163', '333', '4', '112', 'DU', 'ECE', '78', '100', '0'), (4176, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences Indore', 'Electrical Engineering', '80.38', '100', '0'), (4177, '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '440', '1240', '3', '103', 'VIT University', 'CSE', '9.22', '10', '0'), (4178, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '145', '304', '3', '91', 'JNTU', 'Information Technology', '73.25', '100', '0'), (4179, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (4180, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '158', '315', '4.5', '116', 'NIT Karnataka', 'Computer Engineering', '6.9', '10', '0'), (4181, '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'CEG', 'Civil Engineering (Agricultural and Irrigation Engineering Degree)', '7.5', '10', '0'), (4182, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (4183, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '510', '1230', '3.5', '100', 'COEP', 'Information Technology', '8.05', '10', '0'), (4184, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '4', '97', 'PSG College of Technology', 'Mechanical', '8.04', '10', '0'), (4185, '6', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0'), (4186, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (4187, '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2013', '155', '143', '298', '3', '90', 'RMK Engineering College', 'Electronics and Instrumentation', '72', '100', '0'), (4188, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (4189, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (4190, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '790', '560', '1350', '4', '101', 'VJTI', 'civil engineering', '7', '10', '0'), (4191, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '550', '1340', '3.5', '112', 'Sathyabama University', 'ICE', '78', '100', '0'), (4192, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (4193, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (4194, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3', '107', 'VTU', 'CS', '8.9', '10', '0'), (4195, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (4196, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '148', '311', '3', '104', 'The LNM Institute of Information Technology', 'Communication and Computer Engineering', '7.79', '10', '0'), (4197, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3', '107', 'GGSIPU', 'Computer Science', '72', '100', '0'), (4198, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2008', '800', '570', '1370', '3', '105', 'TCE', 'ECE', '8.43', '10', '0'), (4199, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (4200, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '570', '1370', '4', '110', 'BITS Pilani', 'EEE', '8.12', '10', '0'), (4201, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (4202, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '148', '311', '3', '102', 'JNTU', 'Electronics and communication engineering', '80', '100', '0'), (4203, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (4204, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2007', '800', '640', '1440', '4', '273', 'CEG', 'ECE', '8.79', '10', '0'), (4205, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '161', '325', '4.5', '113', 'Fr. CRIT Vashi Mumbai University', 'Computer Engineering', '74', '100', '0'), (4206, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '110', 'RNSIT', 'Computer Science', '76.7', '100', '0'), (4207, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (4208, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (4209, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (4210, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '150', '310', '4.5', '106', 'UVCE', 'Computer Science', '81', '100', '75'), (4211, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '153', '315', '3.5', '110', 'SASTRA', 'Mechanical Engg', '8.26', '10', '27'), (4212, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '150', '160', '310', '3.5', '104', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (4213, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3', '120', 'BMSCE', 'CS', '81', '100', '0'), (4214, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3', '112', 'The LNM Institute of Information Technology', 'Computer Science', '8.5', '10', '0'), (4215, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '780', '590', '1370', '4', '112', 'JNTU', 'ece', '85', '100', '0'), (4216, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '330', '1120', '3.5', '91', 'Sathyabama University', 'ECE', '78', '100', '0'), (4217, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4218, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '104', 'SK University', 'CSE', '77.8', '100', '0'), (4219, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (4220, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (4221, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '162', '328', '4', '113', 'NIT Tirchy', 'Mechanical', '8.38', '10', '0'), (4222, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (4223, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '560', '1360', '3.5', '115', 'K J Somaiya College of Engiineering', 'Electronics and telecommunication', '63', '100', '0'), (4224, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (4225, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (4226, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (4227, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (4228, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3.5', '102', 'VTU', 'Computer Science', '74.95', '100', '25'), (4229, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (4230, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '610', '1400', '3.5', '113', 'JNTU', 'ece', '78.7', '100', '0'), (4231, '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0'), (4232, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (4233, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (4234, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (4235, '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '159', '144', '303', '2', '95', 'None', '0', '0', '0', '0'), (4236, '6', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '800', '630', '1430', '3.5', '111', 'BITS Pilani', 'Ekectrical and Electronics', '8.13', '10', '0'), (4237, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '161', '149', '310', '3', '103', 'Anna University', 'ECE', '8.73', '10', '16'), (4238, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '660', '1460', '3.5', '109', 'None', 'Electronics and Communication', '9.45', '10', '0'), (4239, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (4240, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '167', '147', '314', '3.5', '103', 'K J Somaiya College of Engiineering', 'Electronics', '55', '100', '0'), (4241, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '94', 'JSSATE India', 'CS', '72.84', '100', '0'), (4242, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '670', '520', '1190', '4', '93', 'MSRIT', 'Industrial Engineering and Management', '70.92', '100', '0'), (4243, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '730', '640', '1370', '4.5', '108', 'L D College Of Engineering', 'Civil', '7.56', '10', '0'), (4244, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '153', '323', '4', '106', 'IIT Roorkee', 'Electrical Engineering', '8.3', '10', '0'), (4245, '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '160', '164', '324', '4.5', '114', 'None', 'Mechanical Engineering', '80.34', '100', '0'), (4246, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '560', '1330', '4', '108', 'Anna University', 'Aeronautical Engineering', '8.33', '10', '0'), (4247, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (4248, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '470', '1260', '5.5', '283', 'NIT Karnataka', 'Electronics and Communication', '82', '100', '0'), (4249, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '570', '1370', '3.5', '108', 'NSS College of Engineering', 'Electronics and Communication', '79', '100', '0'), (4250, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (4251, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '143', '301', '3', '98', 'Anna University', 'Mechanical', '7.76', '10', '0'), (4252, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (4253, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '790', '760', '1550', '4.5', '111', 'BITS Pilani', '0', '7.9', '10', '0'), (4254, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '760', '530', '1290', '3.5', '109', 'NIT Warangal', 'Metallurgical and Materials Engg.', '8.5', '10', '0'), (4255, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '460', '1200', '3', '91', 'MIT/ANNA UNIVERSITY', 'PRODUCTION ENGINEERING', '8.3', '10', '0'), (4256, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '157', '156', '313', '3.5', '107', 'VIT', 'Biomedical EWNgineering', '8.3', '10', '0'), (4257, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '340', '1120', '3', 'None', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '82', '100', '36'), (4258, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (4259, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (4260, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (4261, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '112', 'NIT Calicut', 'ECE', '8.32', '10', '0'), (4262, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (4263, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '157', '324', '3', '110', 'IIT', 'Electronics and Communication', '7.94', '10', '0'), (4264, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '101', 'KLCE', 'Electonics and communications', '8.68', '100', '0'), (4265, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '149', '312', '3', '99', 'JNTU', 'ECE', '7.26', '10', '0'), (4266, '6', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '410', '1210', '350', '111', 'None', '0', '0', '0', '0'), (4267, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (4268, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', 'None', '103', 'PSG College of Technology', 'MECHANICAL SANDWICH', '8.71', '10', '0'), (4269, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '109', 'IIT Delhi', 'Electrical Engineering', '8.06', '10', '0'), (4270, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '640', '1440', '3', '100', 'CVRCE', 'ece', '81', '100', '0'), (4271, '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (4272, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2013', '153', '146', '299', '3', '7', 'Osmania University', 'civil', '0', '0', '0'), (4273, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3', '98', 'CEG', 'Electronics and Communication', '7.03', '10', '0'), (4274, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (4275, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '155', '320', '3', '109', 'IIT (BHU) Varanasi', 'Mechanical Engineering', '7.01', '10', '0'), (4276, '6', 'Admit', 'MS', 'Electronics Engineering', 'Fall ', '2015', '168', '156', '324', '3', '96', 'Velammal Engineering College', 'Electronics and Communication Engineering', '9.01', '10', '0'), (4277, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (4278, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (4279, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3', '103', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.69', '10', '0'), (4280, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '161', '152', '313', '4', '112', 'MNIT', 'Civil Engineering', '7.67', '10', '0'), (4281, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '160', '329', '4', '106', 'IIT Madras', 'Engineering Physics', '0', '0', '0'), (4282, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '157', '321', '4', '113', 'Manipal Institue of Technology', 'EEE', '8.08', '10', '0'), (4283, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '161', '146', '307', '4', '103', 'NMAM Institute of technology', 'Electronics and Communication Engineering', '8.73', '10', '0'), (4284, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '610', '1380', '3.5', '112', 'NIT Bhopal', 'ECE', '8.27', '10', '0'), (4285, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '99', 'The National Institute of Engineering', 'Mechanical Engg.', '8.91', '10', '34'), (4286, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '157', '318', '4.5', '105', 'University of Pune', 'Mechanical', '68', '100', '0'), (4287, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '4', '106', 'VTU', 'CS', '8.7', '10', '0'), (4288, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (4289, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '410', '1210', '3.5', '107', 'MIST JNTU -HYD', 'ECE', '0', '0', '0'), (4290, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (4291, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (4292, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '156', '319', '3.5', '107', 'VIT', 'Mechanical engineering', '8.93', '10', '29'), (4293, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '14', '161', '147', '308', '3.5', '99', 'SRM', 'CSE', '7.98', '10', '33'), (4294, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (4295, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (4296, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '157', '318', '3.5', '95', 'AMU Aligarh', 'Mech.', '9.67', '10', '0'), (4297, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (4298, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '169', '155', '324', '3', '99', 'NIT Kurukshetra', 'ECE', '8.53', '10', '0'), (4299, '6', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (4300, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '160', '327', '4', '110', 'Amrita School of Engineering', 'ECE', '8.06', '10', '0'), (4301, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '161', '155', '316', '3.5', '103', 'None', 'Mechanical Engineering', '82.78', '100', '0'), (4302, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '154', '162', '316', '4', '112', 'SWEC Hyd', 'Electronics and Instrumentation', '76', '100', '0'), (4303, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '310', '159', '469', '151', '98', 'NIT Calicut', 'Computer Science', '8.07', '10', '0'), (4304, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '152', '311', '3', '100', 'Amrita School of Engineering', 'Mechanical', '8.34', '10', '0'), (4305, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '151', '311', '3', '86', 'Thapar University', 'electronics and comm. engg', '9.1', '10', '0'), (4306, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '560', '1300', '3.5', '106', 'HKBKCE', 'Electronics and Communication', '79', '100', '0'), (4307, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (4308, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '156', '313', '3', '105', 'College Of Engg Chengannur', 'ECE', '73.2', '100', '55'), (4309, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (4310, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '590', '1350', '4.5', '115', 'Anna University', 'Electrical and Electronics/ Information Technology', '85', '100', '0'), (4311, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (4312, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (4313, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '700', '1440', '4', '104', 'Sri Venkateswara College of Engineering', 'EEE', '77', '100', '0'), (4314, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '145', '314', '4', '106', 'BNMIT', 'Electrical and Electronics', '77.32', '100', '0'), (4315, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3.5', '93', 'JNVU/MBM Engg College Jodhpur Rajasthan', 'CSE', '67', '100', '0'), (4316, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '145', '311', '3', '100', 'None', '0', '0', '0', '0'), (4317, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (4318, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4319, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '113', 'R V College of Engineering', 'Electronics and Communication Engineering', '74.19', '100', '0'), (4320, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (4321, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '4', '108', 'VTU', 'Infosmation Science & Engineering', '75.67', '100', '0'), (4322, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '148', '314', '3', '102', 'VIT University', 'Mechanical engineering', '9', '10', '0'), (4323, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (4324, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (4325, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (4326, '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (4327, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '147', '305', '3', '103', 'Anna University', 'Aeronautical Engineering', '8.24', '10', '0'), (4328, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '540', '1240', '3.5', '101', 'BIT Mesra', 'ECE', '0', '0', '0'), (4329, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '660', '1460', '3.5', '113', 'None', '0', '73', '100', '0'), (4330, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (4331, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (4332, '6', 'Admit', 'MS', 'Environmental Science', 'Fall ', '2014', '170', '157', '327', '4', '110', 'ISM Dhanbad', 'Environmental Science and Engineering', '7.09', '10', '0'), (4333, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '150', '310', '4', '99', 'VJTI', 'Production Engineering', '8.2', '10', '36'), (4334, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '101', 'WBUT', 'Information Technology', '8.38', '10', '0'), (4335, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '92', 'Punjab Technical University', 'ece', '78', '100', '0'), (4336, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '107', 'None', '0', '0', '0', '0'), (4337, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (4338, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4.5', '112', 'SSN College of Engineering', 'Computer Science and Engineering', '8.04', '10', '0'), (4339, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (4340, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '3', '109', 'COEP', 'Electrical', '7.73', '10', '0'), (4341, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '150', '320', '3.5', '110', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '7.23', '10', '0'), (4342, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (4343, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (4344, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (4345, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', '3', 'None', 'MU', 'Computer Engineering', '61', '100', '0'), (4346, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4', '109', 'SSN College of Engineering', 'Electronics & Communication', '89', '100', '0'), (4347, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '7', 'SRM', 'Computer Science', '8.3', '10', '0'), (4348, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '153', '310', '3', '107', 'SRM', 'Electronics and instrumentation', '7.92', '10', '0'), (4349, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '540', '1320', '4', '113', 'NIT Tirchy', 'Instrumentation and Control Engineering', '8.07', '10', '0'), (4350, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '163', '323', 'None', '111', 'MU', 'Computer Engg', '72.87', '100', '0'), (4351, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '115', 'NITK Surathkal', 'EEE', '8.64', '10', '0'), (4352, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', '116', 'M.V.S.R Engineering College', 'ECE', '87', '100', '0'), (4353, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (4354, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '510', '1310', '3', '96', 'IIT Kharagpur', 'ECE', '7.81', '10', '0'), (4355, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (4356, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '4', '108', 'SSN College of Engineering', 'Computer Science', '82.4', '100', '0'), (4357, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (4358, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '103', 'BITS Pilani', 'Information Systems', '7.6', '10', '0'), (4359, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (4360, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '159', '140', '299', '2.5', '80', 'JNTU', 'ece', '63', '100', '0'), (4361, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (4362, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (4363, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (4364, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3.5', '94', 'Nagpur University', 'Computer Science', '70', '100', '0'), (4365, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '108', 'VJTI', 'Electrical Engineering', '7.3', '10', '0'), (4366, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '287', 'MU', 'IT', '65', '100', '0'), (4367, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2010', '770', '560', '1330', '4.5', '116', 'Atharva College', 'Computer Engineering', '77', '100', '0'), (4368, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (4369, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (4370, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '350', '1100', '3', '87', 'Madras Institute of Technology', 'ECE', '9.5', '10', '0'), (4371, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '450', '1230', '3.5', '106', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '0'), (4372, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (4373, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Manipal Institue of Technology', '0', '0', '0', '0'), (4374, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '150', '307', '4', '105', 'MU', 'Information Technology', '73.5', '100', '0'), (4375, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (4376, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '152', '310', '4', '113', 'Amrita School of Engineering', 'CSE', '8.4', '10', '0'), (4377, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '680', '1460', '3', '106', 'MU', 'electronics', '79', '100', '0'), (4378, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '169', '152', '321', '3', '106', 'IIT Patna', 'EE', '7.6', '10', '0'), (4379, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (4380, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'PSG College of Technology', 'Electronics and Communications', '9.17', '10', '0'), (4381, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '520', '1290', '305', '105', 'Dr Mahalingam College of Engineering and Technology', 'CSE', '80', '100', '0'), (4382, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'NIT Nagpur', 'Electronics & Communication', '9.63', '10', '0'), (4383, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '470', '1260', '3.5', '102', 'Anna University', 'CSE', '68', '100', '0'), (4384, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (4385, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (4386, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (4387, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '490', '1290', 'None', '99', 'IIITH', 'Computer Science', '8.37', '10', '0'), (4388, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (4389, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (4390, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '157', '150', '307', '3', '100', 'Anna University', 'Biomedical Engineering', '8.58', '10', '0'), (4391, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (4392, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4393, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (4394, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (4395, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (4396, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (4397, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (4398, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (4399, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (4400, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (4401, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Electronics and Communication', '70', '100', '0'), (4402, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (4403, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '116', 'Thiagarajar College of engineering', 'EEE', '8.8', '10', '0'), (4404, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '44', '31', '75', '4', '108', 'Sri Venkateswara College of Engineering', 'CSE', '75', '100', '0'), (4405, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '150', '312', '3', '91', 'PSG College of Technology', 'Mechanical', '8.36', '10', '48'), (4406, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (4407, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '620', '1400', '4', '110', 'VIT University', '0', '8.4', '10', '0'), (4408, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (4409, '6', 'Admit', 'MS', 'CS/SE', 'Fall ', '2011', '750', '310', '1060', '3', '82', 'Sakalchand Patel College of Engg', 'Information Technology', '3.83', '4', '0'), (4410, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (4411, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (4412, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '112', 'MNM Jain Engineering College', 'Electrical and Electronics Engineering', '90', '100', '0'), (4413, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (4414, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '147', '308', '3', '97', 'NIT Surat', 'Electronics Engineering', '8.02', '10', '0'), (4415, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (4416, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '770', '490', '1260', '3', 'None', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (4417, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '152', '320', '3.5', '107', 'Medicaps Institute of Science & Technology Indore', 'Electronics & Communication', '71', '100', '0'), (4418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (4419, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '161', '156', '317', '3', '102', 'College Of Engineering Roorkee', 'Information Technology', '71', '100', '30'), (4420, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '161', '329', '4', '110', 'Jamia Millia Islamia', 'Dept of Comp Engg', '8.77', '10', '0'), (4421, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (4422, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '150', '308', '4', '110', 'Coimbatore Insitute of Technology', 'ECE', '9.28', '10', '68'), (4423, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (4424, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '550', '1280', '3.5', '86', 'Anna University', 'mechanical', '78', '100', '0'), (4425, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (4426, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '640', '1440', '4', '108', 'Amrita School of Engineering', 'Electrical and Electronics', '7.73', '10', '0'), (4427, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (4428, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '151', '149', '300', '3.5', '91', 'Iowa State University', 'Electrical Engineering', '3.5', '100', '0'), (4429, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (4430, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '3', '107', 'Assam Engineering College', 'Computer Science and engineering', '76', '100', '12'), (4431, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (4432, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3.5', '99', 'IIT Madras', 'Electrical Engineering', '7.16', '10', '0'), (4433, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '620', '1400', '4', '113', 'Univ. of Pune', 'Computer Engineering', '61.55', '100', '0'), (4434, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (4435, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '160', '324', '4', '114', 'VTU', 'CS', '75', '100', '0'), (4436, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (4437, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '670', '1440', '6', '293', 'Anna University', 'CSE', '80', '100', '0'), (4438, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '148', '311', '3', '102', 'Osmania University', 'ECE', '92', '100', '0'), (4439, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3.5', '107', 'VTU', 'ECE', '8.99', '10', '0'), (4440, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '360', '1160', '3', '107', 'Anna University', 'Electronics and Communication Engg', '75', '100', '0'), (4441, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '148', '301', '3.5', '110', 'Sethu Institute of Technology AU', 'Instrumentation and Control Engineering', '65', '100', '0'), (4442, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '156', '323', '4', '113', 'BITS Pilani', 'EEE', '6.45', '10', '25'), (4443, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4444, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (4445, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '150', '316', '3', '103', 'Walchand College Of Engineering', 'CSE', '8.45', '10', '0'), (4446, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (4447, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (4448, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (4449, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (4450, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (4451, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (4452, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4453, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '162', '153', '315', '4', '104', 'Bangalore Institute of Technology', 'Electronics and Communication', '72.86', '100', '0'), (4454, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '98', 'SSN College of Engineering', 'IT', '77', '100', '0'), (4455, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '3.5', '101', 'GGSIPU', 'Computer science and Engg', '73.4', '100', '0'), (4456, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3', '107', 'Anna University', 'Electronics and Communication', '8.9', '10', '0'), (4457, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (4458, '6', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (4459, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (4460, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (4461, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '104', 'None', '0', '67', '100', '0'), (4462, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '2.5', '81', 'G.Narayanamma Institute of Technology and Science', 'computer science', '78', '100', '0'), (4463, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '580', '1380', '4.5', '117', 'Osmania University', 'Electronics and Communication Engg.', '79', '100', '0'), (4464, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (4465, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (4466, '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (4467, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (4468, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (4469, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3.5', '107', 'WBUT', 'CSE', '8.4', '10', '0'), (4470, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '3.5', '108', 'Jadavpur University', 'Information Technology', '8.99', '10', '0'), (4471, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '161', '154', '315', '4', '110', 'NUAA', '0', '4.3', '5', '0'), (4472, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '157', '320', '3', '100', 'ACCET', 'Electronics and Coomunication', '80.04', '100', '45'), (4473, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '4', '114', 'COEP', 'Information Technology', '9.04', '10', '0'), (4474, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (4475, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (4476, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '89', 'JNTU', 'Computer Science & Engineering', '78.45', '100', '0'), (4477, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '108', 'VJTI', 'CS', '7.5', '10', '0'), (4478, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (4479, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '149', '312', '3', '108', 'BMSCE', 'ECE', '8.9', '10', '0'), (4480, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '3.5', '97', 'ISM Dhanbad', 'ELECTRONICS ENGINEERING', '7.06', '10', '0'), (4481, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', '107', 'PSG College of Technology', 'Electronics and Communication', '9.24', '10', '0'), (4482, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '550', '1350', '4.5', '280', 'G.B. Pant Univ of Agril. & Tech.', 'Computer Engineering', '72.3', '100', '0'), (4483, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '160', '319', '4', 'None', 'RGPV', 'Computer Science', '71', '100', '0'), (4484, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (4485, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '151', '310', '3', 'None', 'VTU', 'Electronics and communication', '8.9', '10', '0'), (4486, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (4487, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '139', '303', '3', '90', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '74.44', '100', '0'), (4488, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '770', '470', '1240', '4', '108', 'JNTU', 'Electronics and Computer Engineering', '83.1', '100', '36'), (4489, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '155', '316', '4', '107', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '77', '100', '27'), (4490, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'NIT Tirchy', '0', '0', '0', '0'), (4491, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (4492, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '147', '310', '4', '88', 'NITK Surathkal', 'ECE(Mtech)', '7.33', '10', '0'), (4493, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '460', '1240', '2.5', '95', 'Manipal Institue of Technology', 'Electronics and Communication', '8.69', '10', '0'), (4494, '6', 'Admit', 'MS', 'None', 'Spring ', '2016', '163', '146', '309', '2.5', 'None', 'SRM', 'computer science and engineering', '8', '10', '30'), (4495, '6', 'Admit', 'MS', 'Information technology management', 'Spring ', '2013', '165', '154', '319', '4', '107', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Computer Science', '73.72', '100', '0'), (4496, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '164', '149', '313', '3.5', '95', 'Anna University', 'computer science', '81', '100', '0'), (4497, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '115', 'Amrita School of Engineering', 'ECE', '8.32', '10', '0'), (4498, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (4499, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Electronics & communication', '9.25', '10', '0'), (4500, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '99', 'CBIT', 'CSE', '89', '100', '0'), (4501, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '145', '305', '3', '98', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (4502, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '790', '560', '1350', '3', '102', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4503, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4504, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '108', 'CBIT', 'EEE', '81.3', '100', '0'), (4505, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '147', '315', '3.5', '99', 'None', 'Computer Science', '9.74', '10', '0'), (4506, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '151', '311', '3', '101', 'UPTU', 'Information Techonoly', '76.28', '100', '36'), (4507, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3', 'None', 'None', 'CSE', '8.23', '10', '24'), (4508, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '92', 'NIT Warangal', 'Chemical Engineering', '8.36', '10', '0'), (4509, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (4510, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '4', '115', 'University of Calicut', 'Electronics and Communication', '9.54', '10', '0'), (4511, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (4512, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (4513, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (4514, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (4515, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0'), (4516, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '510', '1280', '3.5', '94', 'BITS Pilani', '0', '8.17', '10', '0'), (4517, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (4518, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '620', '1420', '4.5', '108', 'VJTI', 'electrical', '8', '10', '0'), (4519, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '153', '317', '4', '109', 'Amrita School of Engineering', 'ECE', '8.88', '10', '0'), (4520, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (4521, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (4522, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3.5', '109', 'UPTU', 'Computer Science', '73.12', '100', '0'), (4523, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '149', '312', '3.5', '93', 'Maharishi Dayanand University', 'Computer Science', '75', '100', '0'), (4524, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '530', '1300', '4.5', '118', 'Anna University', 'Electronics and Communication Engineering', '73', '100', '0'), (4525, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3', '104', 'U.P Technical University', 'Computer Science', '62', '100', '0'), (4526, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (4527, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '420', '1200', '4', '100', 'MSRIT', 'Electronics & Communications', '79', '100', '0'), (4528, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '158', '323', '2.5', '100', 'NIT Rourkela', 'Mechanical Engg.', '8.17', '10', '0'), (4529, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (4530, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '165', '152', '317', '4', '109', 'NIT Tirchy', 'Electrical & Electronics Engineering', '7.7', '10', '36'), (4531, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '166', '155', '321', '4', 'None', 'VTU', 'CS', '76', '100', '0'), (4532, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '156', '319', '4', '119', 'National Insititute of Technology Karnataka', 'Electrical Engineering', '7.13', '10', '0'), (4533, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '500', '1250', '3', 'None', 'LNMIIT', 'computer science', '7.93', '10', '0'), (4534, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '620', '1420', '3.5', '101', 'UIET Panjab University', 'Computer science', '72.7', '100', '0'), (4535, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '143', '313', '4', '97', 'MU', 'Computer Engineering', '74', '100', '0'), (4536, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '153', '319', '4', 'None', 'Anna University', 'ece', '7.04', '10', '0'), (4537, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', 'None', 'JSSATE', 'InformationScience', '67', '100', '0'), (4538, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '610', '1410', '4', '109', 'PEC University of Technology', 'Mechanical Engineering', '8.61', '10', '0'), (4539, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (4540, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '150', '314', '3.5', '109', 'BITS Pilani', 'E&I;', '7.4', '10', '0'), (4541, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '161', '155', '316', '4', '100', 'VTU', 'Computer Science', '73', '100', '61'), (4542, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '580', '1300', '3.5', '106', 'VTU', 'EEE', '78.86', '100', '0'), (4543, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (4544, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '94', 'FCRIT', 'IT', '77.7', '100', '0'), (4545, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '158', '319', '4.5', 'None', 'VTU', 'Industrial Engg. & Management', '73', '100', '0'), (4546, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (4547, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '460', '1240', '3', '92', 'JNEC', 'CS', '66', '100', '0'), (4548, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3.5', '112', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (4549, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '143', '307', '3', '94', 'NITK Surathkal', 'Mechanical Engineering', '7.41', '10', '0'), (4550, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3.5', '99', 'Osmania University', 'Computer Science', '78', '100', '0'), (4551, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (4552, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (4553, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (4554, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (4555, '6', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (4556, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (4557, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (4558, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (4559, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'JNTU', 'EIE', '73', '100', '0'), (4560, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '500', '1270', '3.5', '104', 'PSG College of Technology', 'CS', '9.43', '10', '0'), (4561, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'VTU', 'Computer Science', '75', '100', '0'), (4562, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (4563, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', 'None', 'Osmania University', 'I.T', '86', '100', '34'), (4564, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (4565, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '570', '1330', '3', '109', 'VTU', 'Electronics and Communication', '74', '100', '0'), (4566, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (4567, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '280', '1050', '3.5', '97', 'JNTU', 'Mechanical Engineering', '84.8', '100', '0'), (4568, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '113', 'RNSIT', 'ISE', '75', '100', '0'), (4569, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '1460', '670', '2130', '4', '114', 'University Institute of Engineering and Technology Kurukshetra University', 'Electronics and Communication', '71.11', '100', '0'), (4570, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '530', '1330', '4', '280', 'NIT Tirchy', 'ECE', '8.2', '10', '0'), (4571, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (4572, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (4573, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', 'None', 'Panjab University', 'ECE', '65.38', '100', '0'), (4574, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '156', '324', '3', '103', 'IIIT Allahabad', 'ECE', '9', '10', '0'), (4575, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '318', '155', '473', '163', '107', 'JNTU', 'Electronics and communications', '86.12', '100', '0'), (4576, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '160', '143', '303', '3', '6', 'LDCE', '0', '7.2', '10', '0'), (4577, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '154', '318', '3', 'None', 'CEG', 'ECE', '9.62', '10', '24'), (4578, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '152', '313', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'EEE', '9.16', '10', '24'), (4579, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (4580, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '510', '1290', '2.5', 'None', 'Anna University', 'EEE', '8.01', '10', '0'), (4581, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '118', 'IIT Madras', 'Aerospace', '9.4', '100', '0'), (4582, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '152', '314', '4.5', '109', 'Pune University', 'Electronics', '58', '100', '0'), (4583, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (4584, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '790', '530', '1320', '3.5', '101', 'IIT Guwahati', 'Mech', '7.65', '10', '0'), (4585, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (4586, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (4587, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '157', '319', '4', '110', 'Gujarat Technological University', 'Mech', '8.3', '10', '0'), (4588, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (4589, '6', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2013', '157', '151', '308', '4.5', '109', 'Loyola College', 'Visual communications', '0', '0', '0'), (4590, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '97', 'Pune University', 'Computer Engineering', '71', '100', '0'), (4591, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (4592, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (4593, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (4594, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (4595, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (4596, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (4597, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (4598, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '400', '1190', '3', '102', 'VIT', 'Electronics', '8.52', '10', '0'), (4599, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '149', '317', '4', '105', 'IIT BHU', 'Electrical Engineering', '7.68', '10', '10'), (4600, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '157', '319', '3.5', 'None', 'Arizona State University', 'Electrical Engineering', '3', '4', '0'), (4601, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '100', 'VIT Pune', 'CHEMICAL ENGINEERING', '8.5', '10', '0'), (4602, '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0'), (4603, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '4', '105', 'IIT Patna', 'Department of EEE', '8.23', '10', '0'), (4604, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (4605, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VTU', 'Computer Science', '74', '100', '0'), (4606, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '105', 'RGPV', 'Information Technology', '77.09', '100', '0'), (4607, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4608, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4609, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (4610, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '160', '146', '306', '3', '99', 'NIT Surat', 'Mechanical', '7.39', '10', '0'), (4611, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (4612, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (4613, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '163', '140', '303', '3', '88', 'Sree Vidyanikethan Engineering College', 'Civil Engineering', '76.2', '100', '0'), (4614, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '102', 'VTU', 'CSE', '86', '100', '0'), (4615, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '800', '540', '1340', '3.5', '107', 'NIT Trichy', 'CSE', '7.31', '10', '0'), (4616, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '143', '298', '3', 'None', 'Coimbatore Insitute of Technology', 'mechanical', '7.7', '10', '0'), (4617, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'Madras Institute of Technology', 'Information Technology', '7.5', '10', '0'), (4618, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '98', 'West Bengal University Of Technology', 'Electrical Engg.', '8.36', '10', '0'), (4619, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (4620, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (4621, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '540', '1330', '3', '101', 'R V College of Engineering', 'ECE', '76.57', '100', '0'), (4622, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (4623, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'RVR & JC College of Engineering', 'electrical and electronics engineering', '83.69', '100', '0'), (4624, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '152', '310', '3.5', '111', 'None', 'ECE', '90.04', '100', '0'), (4625, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '104', 'Bangalore Institute of Technology', 'Computer Science', '73', '100', '12'), (4626, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '155', '150', '305', '3.5', '107', 'Nagpur University', '0', '0', '0', '0'), (4627, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (4628, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '159', '324', '4', '112', 'NIT Rourkela', 'Electronics and Communication', '8.18', '10', '0'), (4629, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '420', '1190', '3', '99', 'Sri Venkateswara College of Engineering', 'Electrical And Electronics Engineering', '75', '100', '0'), (4630, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', 'None', 'IIIT Allahabad', 'IT', '8.78', '10', '18'), (4631, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '100', 'West Bengal University Of Technology', 'CSE', '8.44', '10', '0'), (4632, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (4633, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (4634, '6', 'Admit', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '163', '148', '311', '3', '105', 'BVP Pune', 'production', '77', '100', '0'), (4635, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (4636, '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36'), (4637, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '147', '311', '3.5', '101', 'DA-IICT', 'ICT', '8.2', '10', '0'), (4638, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (4639, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '109', 'SRM', 'Electrical and Electronics', '9.8', '100', '0'), (4640, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2016', '161', '152', '313', '3.5', 'None', 'University of Bristol', 'Civil Engineering', '3.2', '4', '0'), (4641, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '440', '1240', '3', '96', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Computer Science', '9.17', '10', '0'), (4642, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '290', 'MU', 'Information Technology', '70', '100', '0'), (4643, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '164', '161', '325', '4', '112', 'COEP', 'Metallurgy and Material Science', '8.71', '10', '0'), (4644, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '143', '305', '3', '92', 'JBIT (Afflliated to JNTU)', 'Information Technology', '71.75', '100', '0'), (4645, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '650', '1450', '5', '297', 'PESIT', 'Electronics & Communication', '82.3', '100', '0'), (4646, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '750', '560', '1310', '4.5', '273', 'GRIET', 'ECE', '70', '100', '0'), (4647, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (4648, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (4649, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (4650, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '570', '1300', '3', 'None', 'KIIT', 'ELECTRICAL ENGINEERING', '8.5', '10', '0'), (4651, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (4652, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4653, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '530', '1290', '3', '91', 'IIT Allahabad', 'Information Technology', '8.11', '10', '0'), (4654, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '155', '320', '3', '96', 'VJTI', 'ETRX', '8.7', '10', '0'), (4655, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '161', '323', '4', '113', 'VIT', 'School of Electrical Sciences', '8.17', '10', '0'), (4656, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '151', '316', '3.5', '111', 'Govt. College Of Engg. Aurangabad', 'Computer Science', '80.5', '100', '0'), (4657, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (4658, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (4659, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', '106', 'PSG College of Technology', 'Production Engineering', '8.46', '10', '0'), (4660, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (4661, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '157', '326', '4', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.5', '10', '0'), (4662, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (4663, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '104', 'VTU', 'ECE', '81.23', '100', '0'), (4664, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (4665, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3.5', '101', 'NIT Silchar', 'CSE', '8.23', '10', '0'), (4666, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (4667, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '150', '313', '3.5', '98', 'SSN College of Engineering', 'Computer science', '8', '10', '25'), (4668, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (4669, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '470', '1240', '3', '94', 'VIT University', 'B.Tech - IT', '8.87', '10', '0'), (4670, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '760', '1560', '4', '112', 'VTU', 'Information Science and Engineering', '79', '100', '0'), (4671, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (4672, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '4', '105', 'SSN College of Engineering', 'Computer Science and Engineering', '8.34', '10', '22'), (4673, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '161', '159', '320', '3.5', '106', 'IIT Mandi', 'Mechanical Engineering', '7.09', '10', '0'), (4674, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'VIT University', 'Electronics and communication Engineering', '8.75', '10', '0'), (4675, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '112', 'SASTRA', 'ELECTRICAL & ELECTRONICS', '7.7', '10', '0'), (4676, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (4677, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'CVRCE', 'Civil Engineering', '75', '100', '0'), (4678, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '145', '311', '3', '92', 'BITS Pilani', 'Civil', '8.15', '10', '0'), (4679, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '2.5', '94', 'JNTU', 'EEE', '77', '100', '0'), (4680, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (4681, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '149', '308', '3', '104', 'SRM', 'Civil Engineering', '9.1', '10', '16'), (4682, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (4683, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '168', '152', '320', '3.5', '102', 'NIT Rourkela', 'ECE', '7.75', '10', '48'), (4684, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '750', '470', '1220', '3', 'None', 'Crescent Engineering College', 'Mechanical Engineering', '7.98', '10', '24'), (4685, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '770', '580', '1350', '4', '115', 'PESIT', 'Mechanical', '8.73', '10', '0'), (4686, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (4687, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '103', 'BMSCE', 'Electronics and communication', '9.14', '10', '0'), (4688, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4.5', '118', 'BITS Pilani', 'Mechanical Engineering', '8.09', '10', '0'), (4689, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '165', '143', '308', '3.5', '103', 'NIT Rourkela', 'Mechanical Engineering', '8.19', '10', '0'), (4690, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (4691, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (4692, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'COEP', 'IT', '8.22', '10', '0'), (4693, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (4694, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (4695, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '159', '318', '4', '112', 'Sir MVIT', 'Industrial Engineering and Management', '79', '100', '0'), (4696, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '550', '1320', '3.5', '113', 'UPTU', 'Electronics and Communication', '76.56', '100', '0'), (4697, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (4698, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (4699, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '158', '318', '3', '106', 'S.D.M.C.E.T', 'electronics an communication engineering', '8.63', '10', '0'), (4700, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (4701, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4702, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '111', 'MU', 'Mechanical Engineering', '70', '100', '0'), (4703, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (4704, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'Sinhgad College of Engineering', 'Mechanical engineering', '66', '100', '0'), (4705, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', 'None', '99', 'VTU', 'ECE', '82', '100', '0'), (4706, '6', 'Admit', 'MS', 'civil', 'Fall ', '2014', '157', '148', '305', '2.5', '91', 'MSRIT', 'Civil', '8.15', '10', '0'), (4707, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '157', '142', '299', '3', '90', 'JNTU', 'ece', '73', '100', '0'), (4708, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3', '88', 'Sri Sairam Engineering College', 'EEE', '80', '100', '0'), (4709, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (4710, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (4711, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (4712, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '2.5', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science and Engineering', '78.2', '100', '0'), (4713, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3', '104', 'Anna University', 'CSE', '84.5', '100', '0'), (4714, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '98', 'BITS Goa', 'Electrical Engineering', '7.84', '10', '0'), (4715, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '107', 'GGSIPU', 'Information technology', '77.4', '100', '0'), (4716, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (4717, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '164', '156', '320', '4', '114', 'R V College of Engineering', 'CIVIL ENGINEERING', '9.8', '10', '0'), (4718, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '580', '1330', '4', '103', 'Anna University', 'ECE', '78', '100', '0'), (4719, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'D J Sanghvi', 'EXTC', '0', '0', '0'), (4720, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '3.5', '102', 'JBIET', 'ece', '76', '100', '0'), (4721, '6', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', '166', '144', '310', '3.5', 'None', 'Indraprastha University', 'ELECTRONICS AND COMMUNICATION', '72', '100', '0'), (4722, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (4723, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '102', 'Univ--West Bengal University Of Technology/College--Institute Of Engineering And Management Kolkata', 'Computer Science Engineering', '8.52', '10', '0'), (4724, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'GITAM', 'Mechanical Engineering', '8.07', '10', '0'), (4725, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '165', '150', '315', '3', '105', 'Kerala University', 'EEE', '7.88', '10', '30'), (4726, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', 'None', 'A D Patel Institute Of Technology', 'IT', '7.71', '10', '0'), (4727, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (4728, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '162', '160', '322', '3.5', '106', 'None', '0', '7.57', '10', '0'), (4729, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '146', '309', '4', '93', 'JNTU', 'CSE', '70.09', '100', '0'), (4730, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (4731, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '510', '1290', '3', '97', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4732, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '156', '325', '4.5', '109', 'NIT Karnataka', 'Mechanical Engineering', '7.23', '10', '0'), (4733, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '160', '151', '311', '3.5', '106', 'NMIMS', 'Computer Engineering', '2.98', '4', '0'), (4734, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (4735, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (4736, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (4737, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (4738, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '105', 'SATHAGIRI COLLEGE OF ENGINEERING VTU', 'ECE', '78.93', '100', '0'), (4739, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4740, '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '147', '141', '288', '2', 'None', 'kshatriya college of engineering JNTU-HYD', 'EEE', '65.98', '100', '0'), (4741, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (4742, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (4743, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (4744, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '630', '1390', '3', '102', 'CoE Trivandrum', '0', '7.3', '10', '0'), (4745, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '154', '315', '3', '115', 'Abhinav Hi-Tech College Of Engineering', 'Electronics and Communicaton Engineering', '71', '100', '0'), (4746, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.78', '10', '0'), (4747, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (4748, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '160', '320', '6', '120', 'MU', 'ME', '99', '100', '0'), (4749, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', 'None', '103', 'VIT', 'Information Technology', '9.02', '10', '23'), (4750, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (4751, '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2014', '164', '152', '316', 'None', '104', 'SIT', 'ECE', '9.4', '10', '0'), (4752, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3.5', '104', 'VNR VJIET', 'CSE', '72', '100', '0'), (4753, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (4754, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3.5', '106', 'Maharaja Agrasen Institute Of Technology', 'Computer Science', '76', '100', '0'), (4755, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '3.5', '111', 'College Of Engineering Roorkee', 'Computer Science', '76', '100', '0'), (4756, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (4757, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (4758, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '115', 'Valliammai Engineering College', 'e.c.e', '76', '100', '0'), (4759, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (4760, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (4761, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3', '107', 'PSG College of Technology', 'Production Engineering', '7.94', '10', '0'), (4762, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '4', '101', 'Coimbatore Insitute of Technology', 'CSE', '8.23', '10', '0'), (4763, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '117', 'Madras Institute of Technology', 'RUBBER AND PLASTICS TECHNOLOGY', '8.48', '10', '0'), (4764, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (4765, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '4', '113', 'Pune University', 'Electronics and telecomm', '0', '0', '0'), (4766, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (4767, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (4768, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '370', '1170', '3', 'None', 'Govt. Engg. College Jabalpur', 'Mechanical Engineering', '75.78', '100', '0'), (4769, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '410', '1140', '4', '108', 'KLESCET Belgaum', 'Computer science', '75.2', '100', '0'), (4770, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (4771, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '103', 'NIT Durgapur', 'MCA', '8.67', '10', '0'), (4772, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (4773, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (4774, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '96', 'VTU', 'Computer Science', '0', '0', '0'), (4775, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '390', '1180', '4', 'None', 'Bangalore Institute of Technology', 'Electronics & Communications', '77', '100', '0'), (4776, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '790', '490', '1280', '4.5', '280', 'PSG College of Technology', 'ECE', '8.82', '10', '0'), (4777, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (4778, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (4779, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (4780, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '158', '317', '3.5', '111', 'Vidyavardhaka College of Engineering', 'Computer Science', '74.28', '100', '0'), (4781, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '146', '308', '3.5', '95', 'National Institute of Science and Technology B.P.U.T Orissa', 'ELectronics & Communication', '7.56', '10', '0'), (4782, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '780', '450', '1230', '3', '100', 'GGSIPU', 'COMPUTER', '81.1', '100', '0'), (4783, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (4784, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (4785, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (4786, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '142', '306', '3', '99', 'VTU', 'IS', '8.49', '10', '0'), (4787, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (4788, '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'University of Calicut', 'MECHANICAL ENGINEEIRNG', '78.2', '100', '0'), (4789, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '149', '311', '3', '112', 'Anna University', 'CSE', '8', '10', '0'), (4790, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (4791, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (4792, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '114', 'NIT Tirchy', 'Electrical and Electronics', '9.1', '10', '19'), (4793, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3.5', '90', 'S.G.S.I.T.S. Indore RGPV Univ', 'Computer Engineering', '68', '100', '0'), (4794, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (4795, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3', '103', 'SSN College of Engineering', 'EEE', '8.37', '10', '0'), (4796, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '101', 'IIIT Hyderabad', 'Computer Science', '8.01', '10', '0'), (4797, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '89', 'NIT Warangal', 'cse', '8.38', '10', '24'), (4798, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '96', 'R V College of Engineering', 'ISE', '8.45', '10', '43'), (4799, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (4800, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '143', '311', '3', '96', 'CEG', 'Computer Science', '7.25', '10', '48'), (4801, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '740', '550', '1290', '3.5', '111', 'VTU', 'ECE', '80', '100', '0'), (4802, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '103', 'BITS Goa', 'EEE', '7.81', '10', '0'), (4803, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '142', '304', '3', '88', 'JNTU', 'ECE', '72', '100', '0'), (4804, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3.5', '110', 'SRM', 'Electronics and Instrumentation', '8.71', '10', '0'), (4805, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (4806, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '102', 'IIITDM', 'electronics engg', '9.27', '10', '0'), (4807, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '167', '327', '4.5', '116', 'VTU', 'CS', '80', '100', '0'), (4808, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (4809, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '560', '1340', '3', '99', 'BMSCE', 'EC', '75', '100', '0'), (4810, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '141', '308', '3', '98', 'NIT Warangal', 'CSE', '8.5', '10', '48'), (4811, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '780', '540', '1320', '3.5', '105', 'NIT Surathkal', 'Civil Engineering', '8.8', '10', '0'), (4812, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '162', '324', '4.5', '114', 'Amity University', 'Electrical & Electronics (EEE)', '8.69', '10', '0'), (4813, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '150', '310', '3', '102', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.71', '10', '0'), (4814, '6', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0'), (4815, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (4816, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4817, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '99', 'NIT Rourkela', 'Biomedical Engineering', '7.03', '10', '0'), (4818, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '430', '1230', '3', '92', 'BITS Pilani', 'Marine Engineering', '9.27', '10', '0'), (4819, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '151', '316', '3.5', '104', 'NIT Warangal', 'ECE', '7.78', '10', '0'), (4820, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4821, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', 'None', '800', '620', '1420', '3.5', '108', 'VIT University', 'ECE', '8.8', '10', '0'), (4822, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'NIT Warangal', 'Mechanical Engineering', '8.77', '10', '24'), (4823, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', '3', '93', 'GITAM', 'Information Technology', '8.4', '10', '0'), (4824, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4825, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '146', '305', '3.5', 'None', 'JNTU', 'Electronics and Communication Engineering', '82.6', '100', '0'), (4826, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (4827, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (4828, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', '98', 'PSG College of Technology', 'Information Technology', '8.85', '10', '0'), (4829, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (4830, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '590', '1300', '3', '107', 'VTU', 'Computer science', '80', '100', '0'), (4831, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (4832, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (4833, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3.5', '94', 'VIT University', 'ECE', '8.9', '100', '0'), (4834, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '109', 'VTU', 'electrical', '76', '100', '0'), (4835, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (4836, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (4837, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '107', 'NIT Calicut', 'EEE', '7.4', '10', '0'), (4838, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '750', '520', '1270', '2.5', '110', 'SSN College of Engineering', 'ECE', '80', '100', '0'), (4839, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '158', '321', '4.5', '105', 'Pune University', 'Computer Engineering', '67', '100', '0'), (4840, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (4841, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '70', '100', '0'), (4842, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '103', 'PESIT', 'Computer Science', '77', '100', '54'), (4843, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3', '102', 'SASTRA', 'ECE', '8', '10', '0'), (4844, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '99', 'WCE Sangli', 'IT', '79', '100', '0'), (4845, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '3', '96', 'Thapar University', 'Electrical Engineering', '9.14', '10', '0'), (4846, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4847, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', '109', 'NIT Silchar', 'Computer Science and Engineering', '8.23', '10', '0'), (4848, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (4849, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '164', '153', '317', '3', '103', 'NIT Rourkela', 'Computer Science & Engineering', '8.44', '10', '34'), (4850, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4851, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '151', '308', '3.5', '102', 'RGPV', 'MECHANICAL ENGINEERING', '3.45', '4', '0'), (4852, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (4853, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (4854, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '430', '1230', '4', '237', 'CEG', 'Electronics and Communication', '9.03', '10', '0'), (4855, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '94', 'Sree Vidyanikethan Engineering College', 'INFORMATION TECHNOLOGY', '74.34', '100', '0'), (4856, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3', '104', 'RGUKT', 'Electronics and Communication', '9.11', '10', '0'), (4857, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3', '92', 'NMREC', 'ECE', '71', '100', '0'), (4858, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '159', '145', '304', '3', '99', 'NIT Warangal', 'civil engineering', '8.19', '10', '0'), (4859, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (4860, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '95', 'COEP', 'Computer Science', '7.99', '10', '36'), (4861, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '800', '620', '1420', '4', '104', 'VIT Pune', 'Instrumentation and Control', '8.5', '10', '0'), (4862, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '83.6', '100', '0'), (4863, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (4864, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (4865, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (4866, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '101', 'IIT Kanpur', 'Electrical Engineering', '8.8', '10', '0'), (4867, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '96', 'IPU/MAIT', 'ECE', '76', '100', '0'), (4868, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '660', '1410', '3.5', '112', 'SSN College of Engineering', 'EEE', '8.787', '10', '0'), (4869, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (4870, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (4871, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (4872, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '3.5', '112', 'Nagarjuna University', 'IT', '89.3', '100', '0'), (4873, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '157', '326', '4', '108', 'None', 'Mechanical', '8.46', '10', '0'), (4874, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '800', '1590', '4.5', '290', 'Dharamsinh Desai University', 'Computer Engineering', '76.2', '100', '0'), (4875, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '111', 'VTU', 'Electronics and Communications', '75', '100', '0'), (4876, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '480', '1280', '4', '283', 'Model Engineering College', 'Electronics and Comunication', '79.4', '100', '0'), (4877, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '149', '316', 'None', 'None', 'Manipal Institue of Technology', 'CSE', '8.53', '10', '0'), (4878, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '700', '540', '1240', '3', '109', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.97', '10', '0'), (4879, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (4880, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (4881, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (4882, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '157', '327', '3', '101', 'NIT Jamshedpur', 'Electronics and Comm. Engg.', '8.55', '10', '0'), (4883, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (4884, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '109', 'Jalpaiguri Government Engineering College', 'Electronics & Communication Engg', '8.14', '10', '0'), (4885, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '570', '1370', '4', '283', 'VTU', 'Electronics and Communication Engineering', '83', '100', '0'), (4886, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '169', '151', '320', '3.5', '105', 'IIT', 'Mechanical', '8', '10', '0'), (4887, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '167', '147', '314', '4', '101', 'Shiv Nadar University', 'Mathematics', '8.5', '10', '0'), (4888, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '96', 'Anna University', 'E&I;', '7.82', '10', '0'), (4889, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '96', 'Nirma Institute of Technology', 'Computer Science and Engineering', '7.88', '10', '0'), (4890, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '450', '1220', 'None', 'None', 'COEP', 'production', '7', '10', '0'), (4891, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (4892, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '149', '313', 'None', '109', 'GNITS', 'ETM', '89.37', '100', '0'), (4893, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (4894, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '540', '1310', '3.5', '111', 'None', 'Electronics and comm. engg', '76.92', '100', '0'), (4895, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '800', '450', '1250', '2.5', '106', 'JNTU', 'ECE', '76.1', '100', '0'), (4896, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3', '100', 'None', '0', '0', '0', '0'), (4897, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '161', '143', '304', '3', 'None', 'NIT Surat', 'Electronics', '8.64', '10', '0'), (4898, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '630', '1410', '3', '102', 'Acharya Nagarjuna University', 'EEE', '80', '100', '0'), (4899, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '760', '650', '1410', '3', '105', 'VITU Vellore', 'Biotechnology', '8.25', '10', '0'), (4900, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4.5', '115', 'VTU', 'Computer Science', '71', '100', '0'), (4901, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '3', '105', 'VIT University', 'SELECT', '8.34', '100', '0'), (4902, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '420', '1180', '3.5', '96', 'Ramrao Adik Institute of Technology', 'Electronics', '67', '100', '0'), (4903, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '750', '550', '1300', '3', '98', 'Kurukshetra University', 'Electronics & Instrumentation', '71', '100', '0'), (4904, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (4905, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '5', '114', 'NIT Karnataka', 'Mechanical Engineering', '8.66', '10', '0'), (4906, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '510', '1210', '3.5', '98', 'SRM', 'EIE', '77', '100', '0'), (4907, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '151', '311', '4', 'None', 'Anna University', 'Information Technology', '82', '100', '0'), (4908, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '750', '500', '1250', '2.5', '98', 'VIT University', 'I.T', '8.2', '10', '0'), (4909, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '650', '1380', '4', '103', 'Sardar Patel College of Engineering', 'electronics and telecommunication', '79.04', '100', '0'), (4910, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (4911, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (4912, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '520', '1320', '3', '105', 'SVIT', 'computers', '68', '100', '0'), (4913, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (4914, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (4915, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (4916, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (4917, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '158', '151', '309', 'None', '105', 'GITAM', 'ECE', '8.84', '10', '0'), (4918, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '790', '630', '1420', '3', '101', 'nitw', 'elcetronics', '8.6', '10', '0'), (4919, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4920, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '164', '330', '4', '119', 'MNM Jain Engineering College', 'CSE', '8.6', '10', '0'), (4921, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '740', '570', '1310', '4', '112', 'RMK Engineering College', 'computer science', '85', '100', '0'), (4922, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (4923, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (4924, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '106', 'JNTU', 'ECE', '78', '100', '0'), (4925, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '650', '1420', '2.5', 'None', 'NIT Durgapur', 'Mechanical engineering', '8.28', '10', '0'), (4926, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '159', '322', '4.5', '110', 'Vasavi College of Engineering', 'Information Technology', '89', '100', '16'), (4927, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '156', '318', '3.5', '112', 'CEG', 'computer science', '7.3', '10', '0'), (4928, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '3', '105', 'NIT Jamshedpur', 'Electronics & Communication Engineering', '8.68', '10', '48'), (4929, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (4930, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (4931, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '520', '1240', '4', '106', "St Joseph's College of Engineering", 'EEE', '75.31', '100', '0'), (4932, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (4933, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (4934, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (4935, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4936, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3.5', '103', 'CBIT', 'EEE', '80', '100', '0'), (4937, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3.5', '101', 'University of Mumbai', 'Mechanical Engineering', '65.5', '100', '0'), (4938, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '4', '112', 'None', 'Mechanical Engineering', '3.75', '4', '0'), (4939, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (4940, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '740', '520', '1260', '4', '263', 'MDU', 'MEchanical', '74', '100', '0'), (4941, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (4942, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (4943, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '510', '1270', '3', '104', 'VIT University', 'EIE', '8.57', '10', '0'), (4944, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'Universiity College of Engineering Osmania University.', 'EEE', '75', '100', '0'), (4945, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4946, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '450', '1210', '3', '106', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '9.06', '10', '0'), (4947, '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '166', '150', '316', '3.5', '94', 'VIT', 'Computer Science', '7.88', '10', '0'), (4948, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '650', '1350', '4.5', '105', 'VTU', 'CS', '78', '100', '0'), (4949, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', 'None', 'None', 'CSE', '81.4', '100', '0'), (4950, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '143', '306', '3.5', '95', 'University of Mumbai', 'Information Technology', '66', '100', '0'), (4951, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (4952, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (4953, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '480', '1280', '3', 'None', 'PESIT', 'E & C', '78.4', '100', '0'), (4954, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (4955, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '780', '550', '1330', '3', '90', 'JNTU', 'eee', '0', '0', '0'), (4956, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '46', '25', '71', '5', '102', 'IIITM', 'IT', '8.17', '10', '120'), (4957, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '144', '310', '2.5', '102', 'VTU', 'EnC', '74.5', '100', '0'), (4958, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '94', 'Thiagarajar College of engineering', 'Computer science', '7.86', '10', '0'), (4959, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4960, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '97', 'Sharif university of Technology', 'Industrial engineering', '3.92', '4', '0'), (4961, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '163', '153', '316', '4', '111', 'SRM', 'Mechanical', '8', '10', '0'), (4962, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (4963, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3', '97', 'SRM', 'Electrical & Electronics Engineering', '8.35', '10', '0'), (4964, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '164', '153', '317', '4.5', '109', 'VTU', 'CS', '82.6', '100', '0'), (4965, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (4966, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (4967, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4.5', '98', 'NIT Durgapur', 'Computer Science and Engineering', '7.52', '10', '0'), (4968, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '4', '104', 'New Horizon College of Engineering', 'Computer Science and Engineering', '78.8', '100', '0'), (4969, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '4.5', '115', 'IIT Delhi', 'Electrical (Power)', '6.78', '10', '0'), (4970, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '3', '97', 'GITAM', 'cse', '8.22', '10', '0'), (4971, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '109', 'VIT University', 'mechanical- energy', '8.3', '10', '0'), (4972, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (4973, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '149', '316', '3.5', '97', 'BIT Mesra', 'cse', '7.51', '10', '36'), (4974, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '640', '1420', '4', '116', 'NIT Tirchy', 'Instrumentation and control', '8.78', '10', '0'), (4975, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '4.5', '117', 'Pondicherry Engineering College', 'CS', '77', '100', '0'), (4976, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '157', '327', '4', '110', 'BITS Hyderabad', 'Mechanical Engineering', '8.31', '10', '12'), (4977, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '3', '104', 'JNTU', 'CSE', '79.18', '100', '0'), (4978, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3', '88', 'SSN College of Engineering', 'EEE', '84', '100', '0'), (4979, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (4980, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '147', '310', '3', '94', 'West Bengal University Of Technology', 'ECE', '9.18', '10', '0'), (4981, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '161', '146', '307', '3', '99', 'K J Somaiya College of Engiineering', 'mechanical', '9.12', '10', '0'), (4982, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (4983, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '166', '148', '314', '2', '101', 'Maharaja Sayajirao University Of Baroda', 'Mech eng', '3.94', '4', '0'), (4984, '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '163', '160', '323', '4.5', '111', 'VIT', 'ECE', '8.48', '10', '0'), (4985, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (4986, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'Anna University', 'mechanical', '75', '100', '0'), (4987, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '148', '312', '3', '94', 'BITS Goa', 'Mechanical', '6.5', '10', '0'), (4988, '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '161', '147', '308', '3', '105', 'MU', 'Electronics and Telecommunication engineering', '72', '100', '0'), (4989, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '3', '98', 'MU', 'IT', '63', '100', '17'), (4990, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '154', '321', '4.5', '114', 'KIIT', 'Electronics and Electrical', '9.08', '10', '0'), (4991, '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '162', '154', '316', '3.5', '111', 'Kathmandu University', 'Civil', '3.42', '4', '7'), (4992, '6', 'Admit', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (4993, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (4994, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '146', '307', '4', '100', 'University of Pune', 'IT', '75.56', '100', '0'), (4995, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Jadavpur University', 'Electrical Engineering', '8.17', '10', '0'), (4996, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '102', 'Netaji Subhas Institute of Technology', 'Electrical Engineering', '8.02', '10', '0'), (4997, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (4998, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'IIT Kharagpur', 'ECE', '8.64', '10', '0'), (4999, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3.5', '100', 'Model Engineering College', 'Computer science', '80', '100', '0'), (5000, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3.5', '103', 'SGSITS', 'Electronics & Instrumentation', '8', '10', '0'), (5001, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '450', '800', '1250', '3.5', '92', 'NUDT(China)', 'CS', '0', '0', '0'), (5002, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '104', 'BVBCET', 'Information Science', '8.7', '10', '0'), (5003, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '2.5', '90', 'BITS Pilani', 'Electronics and Instrumentation', '7.44', '10', '0'), (5004, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '152', '318', '3.5', '100', 'M.V.S.R Engineering College', 'Electronics & Communication', '76.23', '100', '0'), (5005, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', 'None', "St Joseph's College of Engineering", 'Information Technology', '7.52', '10', '0'), (5006, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '167', '148', '315', '3', '101', 'ISM Dhanbad', 'electronics and communication engineering', '8.2', '10', '0'), (5007, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (5008, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (5009, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3.5', '96', 'Heritage Institute of Technology', 'Computer Science and Engineering', '88', '100', '54'), (5010, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (5011, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '590', '1320', '3', '107', 'Manipal Institue of Technology', 'ECE', '7.47', '10', '0'), (5012, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '159', '150', '309', '3', '102', 'JNTU', 'Computer Science and Engineering', '67.48', '100', '0'), (5013, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '620', '1410', 'None', '100', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (5014, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (5015, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (5016, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '161', '326', '3', '110', 'Jaypee Institute of Information Technology', 'IT', '6.2', '10', '0'), (5017, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '360', '1100', '3.5', 'None', 'Madras Institute of Technology', 'production engineering', '8.6', '10', '0'), (5018, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '620', '1360', '3', '99', 'Zakir husain college AMU', 'Electronics engg', '8.65', '10', '0'), (5019, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (5020, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '3.5', '108', 'CEG', 'computer science', '8.82', '10', '36'), (5021, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (5022, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '650', '1390', '3', '93', 'Sreenidhi Institute of Science & Technology', 'electronics and computers', '72', '100', '0'), (5023, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '470', '1260', '3', '96', 'MVSR', 'Information Technology', '78', '100', '0'), (5024, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '152', '322', '3', 'None', 'BITS Pilani', 'E&I;', '7.58', '10', '24'), (5025, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (5026, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (5027, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '3.5', '98', 'Thapar University', 'Computer Science', '7.96', '10', '0'), (5028, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '149', '304', '3.5', '106', 'JNTU', 'CS', '66', '100', '0'), (5029, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '3.5', '110', 'SASTRA', 'Electrical & Electronics Engineering', '9.00427', '10', '0'), (5030, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'The LNM Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (5031, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (5032, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', 'None', '108', 'Amrita School of Engineering', 'cse', '9.59', '100', '0'), (5033, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '148', '303', '3', '98', 'GITAM', 'Electrical and Electronics Engineering', '8.32', '10', '0'), (5034, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '590', '1380', '4', '273', 'None', '0', '0', '0', '0'), (5035, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '107', 'Inderprastha engineering college(Affiliated to Uttar Pradesh Technical university)', 'Computer Science and Engineering', '82.74', '100', '0'), (5036, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '670', '1460', '4.5', '111', 'Manipal Institue of Technology', 'Electronics and Comm.', '8.48', '10', '0'), (5037, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '720', '760', '1480', '4.5', '293', 'VTU', 'Info Sc and Engg', '76', '100', '0'), (5038, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (5039, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '730', '580', '1310', '3', 'None', 'NIT Warangal', 'ECE', '7.84', '10', '0'), (5040, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (5041, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (5042, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '147', '314', '3', '94', 'NIT Rourkela', 'Computer Science', '9.6', '10', '26'), (5043, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '152', '320', '4', '104', 'NIT Kurukshetra', 'Mechanical Engineering', '8.53', '10', '0'), (5044, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3', '111', 'NIT Surat', 'Electronics Engg.', '8.57', '10', '0'), (5045, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (5046, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '154', '316', '4', '109', 'VTU', 'CS', '81', '100', '53'), (5047, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (5048, '6', 'Admit', 'MS', 'environmental engineering', '81', 'None', '159', '0', '159', '0', '107', 'Nagpur University', 'Civil Engg', '58', '100', '0'), (5049, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5050, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (5051, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (5052, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (5053, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2012', '760', '330', '1090', '3', '90', 'MSRIT', 'MECHANICAL', '9.42', '100', '0'), (5054, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '146', '306', '3', '97', 'BMSCE', 'IEM', '8.77', '10', '0'), (5055, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '3.5', '115', 'Anna University', 'biomedical engineering', '8.68', '10', '0'), (5056, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2014', '161', '153', '314', '3.5', '107', 'SRM', 'Biotechnology', '8.58', '10', '0'), (5057, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (5058, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '4', '112', 'Vishwakarma Institute of Technology', 'Electronics', '8.72', '10', '0'), (5059, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '159', '327', 'None', '109', 'Delhi College Of Engineeing', 'Mechanical Department', '68.7', '100', '10'), (5060, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '166', '330', '4.5', 'None', 'VIT', 'ECE', '8.65', '10', '0'), (5061, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (5062, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '450', '1250', '4', '99', 'IIIT Hyderabad', 'ECE', '7.56', '10', '0'), (5063, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (5064, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '145', '306', '3.5', '105', 'Anna University', 'Mechanical Engineering', '8.33', '10', '0'), (5065, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '158', '159', '317', '3', '111', 'VTU', 'Electronics and Communication', '80.17', '100', '0'), (5066, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (5067, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (5068, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (5069, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (5070, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '570', '1340', '3', 'None', 'WBUT', 'applied electronics and instrumentation', '8', '10', '0'), (5071, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (5072, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (5073, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '650', '1430', '3.5', '106', 'SSN College of Engineering', 'BIomedical Engineering', '7.98', '10', '0'), (5074, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '4', '110', 'Punjabi University', 'Computer Engineering', '78.37', '100', '0'), (5075, '6', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (5076, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '147', '311', '3', '100', 'NIT Surathkal', 'Computer Science', '8.11', '10', '24'), (5077, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '610', '1400', '5', '263', 'Anna University', 'ECE', '74', '10', '0'), (5078, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '157', '322', '4', '112', 'BVBCET', 'ECE', '81', '100', '0'), (5079, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (5080, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (5081, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.1', '10', '0'), (5082, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '500', '1280', '3', '106', 'SASTRA', 'Electronics and Communication Engineering', '9.135', '10', '0'), (5083, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '153', '311', '3.5', '106', 'BIT Mesra', 'Computer Science', '7.39', '10', '0'), (5084, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '790', '580', '1370', '4', '111', 'Pondicherry Engineering College', 'Mechanical Engg', '8.1', '10', '0'), (5085, '6', 'Admit', 'MS', 'Management Information System', 'Spring', 'None', '160', '139', '299', '3', 'None', 'Princeton College of Engg & Tech', 'Electronics and communications', '77.17', '100', '0'), (5086, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (5087, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '530', '1300', '3.5', 'None', 'Madras Institute of Technology', 'ECE', '8.72', '10', '0'), (5088, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '480', '1280', '3.5', '98', 'MVSR', 'I.T', '75', '100', '0'), (5089, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '107', 'VTU', 'Computer Science', '72.5', '100', '46'), (5090, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences', 'Electricals', '80.38', '100', '0'), (5091, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3.5', '97', 'NIT Calicut', 'Computer Science and Engineering', '8.25', '10', '36'), (5092, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '149', '311', '4', '108', 'Velammal Engineering College', 'Mechanical', '8.5', '10', '0'), (5093, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'NIT Calicut', 'Mechanical Eng', '8.18', '10', '29'), (5094, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (5095, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '107', 'JNTU', 'CSE', '70.34', '100', '0'), (5096, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (5097, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '160', '151', '311', '3.5', '104', 'CEG', 'Materials Science & Engineering', '8.03', '10', '0'), (5098, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '151', '314', '3', '100', 'MITCOE', 'Mechanical', '0', '0', '0'), (5099, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'CEG', 'Electrical and Electronics Engineering', '8.71', '10', '0'), (5100, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '4', '105', 'Amrita School of Engineering', 'Infomation Technology', '7.75', '10', '24'), (5101, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (5102, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (5103, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '163', '151', '314', '3', '100', 'JNTU', 'ece', '8', '10', '0'), (5104, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '610', '1370', '3', '102', 'NIT Calicut', 'Mechanical Engineering', '7.1', '10', '0'), (5105, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (5106, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '4', 'None', 'BITS Pilani', 'Mechanical Engineering', '6.8', '10', '0'), (5107, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '157', '322', '3', '108', 'Jadavpur University', 'Electrical Engineering', '7.45', '10', '12'), (5108, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '4', '111', 'Manipal Institue of Technology', 'CSE', '9.56', '10', '0'), (5109, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '111', 'GGSIPU', 'Computer Science and Engineering', '76.52', '100', '0'), (5110, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '160', '314', '3.5', '108', 'University of Pune', 'Computer Science', '70.26', '100', '25'), (5111, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (5112, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (5113, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (5114, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '146', '311', '3.5', '99', 'SRM', 'Mechatronics', '9.2', '10', '0'), (5115, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '510', '1290', '3.5', '105', 'West Bengal University Of Technology', 'Electronics and communication', '8.55', '10', '0'), (5116, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (5117, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '490', '1270', '4', '100', 'SSN College of Engineering', 'Computer Science', '87', '100', '0'), (5118, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (5119, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '152', '317', '3.5', '104', 'MSRIT', 'Electronics and Communication', '8.45', '10', '0'), (5120, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '158', '147', '305', '3', '85', 'None', 'Biotechnology', '75', '100', '26'), (5121, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (5122, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'MU', 'ECE', '73', '100', '0'), (5123, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '158', '152', '310', '3', '102', 'Galgotia College of Engg & Technology (UPTU)', 'Electronics & Instrumentation', '70.9', '100', '0'), (5124, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (5125, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '350', '1150', '3.5', '93', 'MU', 'Electronics and Telecommuncation', '68', '100', '0'), (5126, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (5127, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '460', '1230', '3', '110', 'PESIT', 'Telecommunication', '67.9', '100', '0'), (5128, '6', 'Admit', 'MS', 'Energy Technologies', 'Fall ', '2014', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Mechanical Engineering', '8.83', '10', '0'), (5129, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (5130, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3.5', '100', 'CEG', 'Computer Science', '8.3', '10', '0'), (5131, '6', 'Admit', 'MS', 'Integrated Manufacturing Systems Engineering', 'Fall ', '2013', '166', '152', '318', '3', '104', 'BITS Pilani', 'Mechanical Engineering', '6.87', '10', '0'), (5132, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '3.5', '97', 'Pune University', 'electronics and telecommunication', '3.3', '4', '0'), (5133, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '3', 'None', 'Anna University', 'Computer Science', '0', '0', '0'), (5134, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '144', '309', '3', '104', 'JNTU', 'ECE', '79.7', '100', '0'), (5135, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (5136, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '151', '319', '3', '108', 'Sri Jayachamarajendra College of Engineering', 'Information Science', '78.4', '100', '0'), (5137, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (5138, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (5139, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (5140, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '152', '313', '3.5', '113', 'KL University', 'ECE', '8.32', '10', '0'), (5141, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '104', 'BITS Pilani', 'Electronics and Communication', '8.4', '10', '0'), (5142, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (5143, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '112', 'Anil Neerukonda Institue of Technology and Sciences', 'EEE', '8.55', '10', '0'), (5144, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3', '94', 'ANITS', 'Computer Science', '78', '100', '0'), (5145, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '158', '151', '309', '3', '7', 'CVRCE', 'ECE', '73.1', '100', '0'), (5146, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (5147, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '152', '315', '3.5', '110', 'Amrita School of Engineering', 'Electronics and Communication', '7.9', '10', '0'), (5148, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (5149, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'RNSIT', 'Information Science', '80.1', '100', '0'), (5150, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '520', '1300', '3.5', '103', 'Anna University', 'Electrical Engineering', '77.7', '100', '0'), (5151, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Communication', '81', '100', '0'), (5152, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Commuinication', '81', '100', '0'), (5153, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '155', '144', '299', '22', 'None', 'JNTU', 'electrical and electronics engineering', '3.6', '4', '0'), (5154, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (5155, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '144', '307', '2.5', '102', 'GITAM', 'Mechanical Engineering', '8.4', '10', '0'), (5156, '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2011', '780', '530', '1310', '3', '98', 'SJCE', 'Electronics and Communication', '80', '100', '0'), (5157, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '13', '168', '156', '324', 'None', '113', 'University of Pune', 'Electronics', '63.8', '100', '0'), (5158, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (5159, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '103', 'Anna University', 'Computer Science', '76', '100', '0'), (5160, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3.5', '105', 'VTU', 'Information Science', '75', '100', '0'), (5161, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (5162, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (5163, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (5164, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (5165, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '650', '1450', '3.5', '102', 'Amrita School of Engineering', 'ECE', '8.86', '10', '0'), (5166, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '154', '319', '3.5', '96', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5167, '6', 'Admit', 'MS', 'CS / MIS', 'Spring ', '2014', '160', '148', '308', 'None', '102', 'SSN College of Engineering', 'IT', '85', '100', '0'), (5168, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (5169, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '3.5', '93', 'Pune University', 'Computer', '66.5', '100', '0'), (5170, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (5171, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '159', '161', '320', '4', '117', 'IEM', 'CS', '8.43', '10', '0'), (5172, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '590', '1390', '3', '112', 'None', 'EE', '9.1', '10', '0'), (5173, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (5174, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (5175, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '350', '1110', '4', '95', 'Bangalore Institute of Technology', 'Telecommunication', '80', '100', '0'), (5176, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (5177, '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (5178, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '147', '312', '3', 'None', 'CBIT', 'CSE', '84', '100', '0'), (5179, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '163', '161', '324', '4.5', '112', "St Joseph's College of Engineering", 'Information Technology', '8.2', '10', '23'), (5180, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'National Institute of Science and Technology Orissa', 'CSE', '8.25', '10', '0'), (5181, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'NIT-Durgapur', 'Mechanical Engg.', '8.32', '10', '0'), (5182, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '152', '316', '3.5', 'None', 'VSS Univ of Technology', 'Electronics and Telecomm.', '9.26', '10', '0'), (5183, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '155', '148', '303', '3', '95', 'Anna University', 'ECE', '8.71', '10', '31'), (5184, '6', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (5185, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (5186, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (5187, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (5188, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (5189, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (5190, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '3', '107', 'WBUT', 'IT', '7.85', '10', '0'), (5191, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (5192, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4', 'None', 'NIE', 'Mechanical Engineering', '8.99', '10', '0'), (5193, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (5194, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '115', 'M.V.S.R Engineering College', 'ECE', '82', '100', '0'), (5195, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '157', '319', '4', 'None', 'Delhi University', 'ECE', '66', '100', '0'), (5196, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '590', '1390', '3.5', '106', 'W.B.U.T.', 'I.T.', '7.85', '10', '0'), (5197, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '510', '1300', '3', '107', 'Sri Jayachamarajendra College of Engineering', 'ec&e;', '9.32', '10', '0'), (5198, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '145', '310', '3.5', '96', 'BITS Hyderabad', 'Electrical Engineering', '9.12', '10', '0'), (5199, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '149', '308', '4.5', '111', 'VTU', 'Mechanical', '72', '100', '0'), (5200, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (5201, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '3.5', '111', 'VTU', 'E&C;', '7.7', '10', '0'), (5202, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (5203, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (5204, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '157', '151', '308', '3.5', '108', 'VTU', 'Mechanical', '70', '100', '18'), (5205, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (5206, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'None', 'Electronics and Telecommunication', '8.04', '100', '0'), (5207, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3', '100', 'CUSAT', 'Computer Science And Engineering', '74.2', '100', '0'), (5208, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5209, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '640', '1410', '3', '106', 'SJCE', 'EEE', '9.03', '10', '0'), (5210, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (5211, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '102', 'Maamallan', 'ece', '8.66', '10', '0'), (5212, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '108', 'University of Pune', 'Computer', '69', '100', '0'), (5213, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '790', '390', '1180', '3', '102', 'Anna University', 'Instrumentation and Control', '77', '100', '0'), (5214, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (5215, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (5216, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (5217, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (5218, '6', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (5219, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '111', 'Manipal Institue of Technology', 'Mechanical and Manufacturing Engineering', '7.7', '10', '0'), (5220, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '158', '317', '4.5', '109', 'MVSR', 'Electronics and Communication', '75', '100', '0'), (5221, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '600', '1400', '4.5', '280', 'IIIT Hyderabad', 'CSE', '7.2', '10', '0'), (5222, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3.5', '94', 'BITS Goa', 'Electronics and Instrumentation', '6.12', '10', '0'), (5223, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '142', '303', '3', '102', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.6', '10', '0'), (5224, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (5225, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2016', '154', '141', '295', '3', '81', 'SASTRA', 'Information Technology', '8', '10', '65'), (5226, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (5227, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '138', '289', '4', '100', 'Pune University', 'Electronics', '6', '100', '0'), (5228, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'NIT Durgapur', 'CSE', '85', '100', '0'), (5229, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (5230, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '99', 'GITAM', 'Computer Science and Engineering', '8.85', '10', '0'), (5231, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '680', '1460', '4', '112', 'Uttarakhand Technical University', 'Information Technology', '81.1', '100', '0'), (5232, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '470', '1220', '3.5', 'None', 'MU', 'Chemical', '74', '100', '0'), (5233, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '110', 'JNTU', 'ECE', '81.5', '100', '0'), (5234, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (5235, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (5236, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (5237, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '165', '152', '317', '3.5', '108', 'PESIT', 'Computer Science', '8.8', '10', '36'), (5238, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '162', '328', '4', '111', 'Osmania University', 'ECE', '80', '100', '0'), (5239, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '157', '325', '4', '112', 'NIT Tirchy', 'Instrumentation and Control Engineering', '9.1', '10', '0'), (5240, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '380', '1180', '3', '101', 'NIT Durgapur', 'ECE', '8.84', '10', '0'), (5241, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '620', '570', '1190', '4', '57', 'SSN College of Engineering', 'CSE', '83', '100', '0'), (5242, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (5243, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '162', '157', '319', '3.5', '112', 'Sardar Patel College of Engineering', 'Electronics', '63', '100', '20'), (5244, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (5245, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (5246, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (5247, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3', 'None', 'University of Delhi', 'Computer Sc', '67', '100', '28'), (5248, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '4', '109', 'None', '0', '0', '0', '0'), (5249, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '106', 'Miami University', 'Computer Science', '3.34', '4', '0'), (5250, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (5251, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5252, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (5253, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (5254, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '670', '1450', '4.5', '102', 'Ramdeobaba Engg. College Nagpur University', 'Electronics Engineering', '71.16', '100', '0'), (5255, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '146', '314', '3', '108', 'Delhi University', 'ICE', '70.83', '100', '54'), (5256, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '480', '1250', '4', '109', 'Thapar University', 'Electronics & Instrumentation', '8.31', '10', '0'), (5257, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (5258, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '155', '150', '305', '3', '99', 'Anna University', 'EEE', '7.91', '10', '0'), (5259, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '139', '299', '3', '92', 'VIT University', 'Mechanical Engineering', '7.96', '10', '0'), (5260, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (5261, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (5262, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3', '90', 'Vasavi College of Engineering', 'CSE', '79', '100', '0'), (5263, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '141', '307', '3', '65', 'SNIST', 'Computer Science', '7.5', '10', '0'), (5264, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (5265, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '146', '313', '4', '98', 'MU', 'Mechanical', '65', '100', '0'), (5266, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '108', 'Dayananda Sagar College of Engineering', 'Computer science', '74.4', '100', '0'), (5267, '6', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '94', 'Pondicherry University', 'Electronics and Communication Engineering', '7.91', '10', '0'), (5268, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (5269, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (5270, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4.5', '112', 'MU', 'Information Technology', '75', '100', '0'), (5271, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3', '96', 'Gujarat Technological University', 'Mechancial Engineering', '67', '100', '0'), (5272, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (5273, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '165', '155', '320', '4.5', '116', 'Jadavpur University', 'Metallurgical and Material Engineering', '8.85', '10', '0'), (5274, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '160', '324', '4', '108', 'NITK Surathkal', 'civil', '7.1', '10', '0'), (5275, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3.5', '104', 'College Of Engineering Roorkee', 'Computer Science', '73.5', '100', '0'), (5276, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '96', 'CEG', '0', '9.07', '100', '0'), (5277, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (5278, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '108', 'Gujarat Technological University', 'Computer', '8.78', '10', '0'), (5279, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '650', '1420', '4.5', '117', 'NIT Durgapur', 'Electrical Engineering', '8.74', '10', '0'), (5280, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (5281, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', '4', '105', 'WBUT', 'CSE', '8.36', '10', '0'), (5282, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (5283, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '110', 'SRM', 'CSE', '83', '100', '0'), (5284, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (5285, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '5', '118', 'NITK Surathkal', 'ECE', '8.1', '10', '0'), (5286, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '155', '321', '4', '108', 'CEG', 'Mechanical', '8.11', '10', '0'), (5287, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '150', '314', '3', '98', 'Graphic Era University', 'Computer Science and Engineering', '75.31', '100', '24'), (5288, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (5289, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (5290, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (5291, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0'), (5292, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4.5', '111', 'Manipal Institue of Technology', 'Information Technology', '7.59', '10', '0'), (5293, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '13', '166', '154', '320', '2.5', '108', 'BITS Goa', 'EEE', '7.66', '10', '0'), (5294, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '460', '1220', 'None', '103', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5295, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '157', '327', '4', 'None', 'NIT Rourkela', 'Electronics and Communication', '8.51', '10', '0'), (5296, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '110', 'Pune University', 'electronics enineering', '58', '100', '0'), (5297, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '650', '1440', '4', '114', 'Pune University', 'Computer Science', '73', '100', '0'), (5298, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'None', '0', '0', '0', '60'), (5299, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '590', '1320', '4', '273', 'K J Somaiya College of Engiineering', 'CE', '66', '100', '0'), (5300, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'Delhi College Of Engineeing', 'Electrical & Electronics', '81.25', '100', '12'), (5301, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (5302, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (5303, '6', 'Admit', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '96', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '74.21', '100', '24'), (5304, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (5305, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (5306, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (5307, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (5308, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (5309, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (5310, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '360', '1140', '3.5', '102', 'Nagarjuna University', 'Information science and technology', '83', '100', '0'), (5311, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3.5', '111', 'VTU', 'Information Science', '73', '100', '0'), (5312, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (5313, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '118', 'VTU', 'CSE', '81', '100', '0'), (5314, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '113', 'PESIT', 'ECE', '80.15', '100', '0'), (5315, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (5316, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', '3', '108', 'Amrita School of Engineering', 'Computer Science', '7.4', '10', '0'), (5317, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (5318, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', '108', 'Anna University', 'B.Tech I.T', '8', '10', '0'), (5319, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '550', '1310', '4', '277', 'PTU', 'Electrical Engineering', '76.46', '100', '0'), (5320, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '107', 'SASTRA', 'Mechanical', '9.3', '10', '0'), (5321, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '148', '316', '4', '101', 'University College of Engineering Jawaharlal Nehru Technological University', 'Computer Science', '79.2', '100', '0'), (5322, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (5323, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '690', '1480', '4', '112', 'MU', 'Computer', '64.5', '100', '0'), (5324, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (5325, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '95', 'VIIT', 'ENTC', '4', '100', '0'), (5326, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '380', '1130', '2.5', '85', 'SVCE', 'EEE', '76', '100', '0'), (5327, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (5328, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (5329, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (5330, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (5331, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '480', '1260', '3', '100', 'BVBCET', 'Information Science', '8.29', '10', '0'), (5332, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (5333, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '164', '330', '4', '108', 'VJTI', 'Computer Engineering', '7.5', '10', '0'), (5334, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '99', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.4', '10', '0'), (5335, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '530', '1320', '3.5', '117', 'DR.AIT', 'ECE', '76', '100', '0'), (5336, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '650', '1420', '5', '287', 'SASTRA', 'Information Technology', '9.2', '10', '0'), (5337, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3', '88', 'PICT', 'Information Technology', '3.77', '4', '0'), (5338, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (5339, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '102', 'NIT Bhopal', 'Computer Science', '7.99', '10', '0'), (5340, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (5341, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '150', '315', '3', '105', 'VIT University', 'ECE', '7.92', '10', '3'), (5342, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '4', '92', 'Chaitanya Bharathi Institute of Technology', 'ECE', '74', '100', '0'), (5343, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (5344, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', "st.thomas' college of engg and technology", 'information technology', '8.52', '10', '0'), (5345, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3', '94', 'Anna University', 'cse', '7.5', '100', '0'), (5346, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '540', '1260', '4', '105', 'VTU', 'EE', '79', '100', '0'), (5347, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (5348, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (5349, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (5350, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', 'None', '750', '3', '100', 'VTU', 'EEE', '84.41', '100', '0'), (5351, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '145', '163', '308', '3', 'None', 'BITS Pilani', 'Mechanical Engieering', '7.39', '10', '0'), (5352, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '154', '324', '3', '103', 'NIT Kurukshetra', 'Civil Engineering', '7.8', '10', '0'), (5353, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '160', '157', '317', '3.5', '115', 'SRM', 'Mechanical Engineering', '8.744', '10', '0'), (5354, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3', '103', 'BITS Pilani', 'EEE', '9.24', '10', '0'), (5355, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (5356, '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (5357, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (5358, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (5359, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (5360, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '163', '157', '320', '4', '108', 'Pondicherry Engineering College', 'EEE', '7.7', '10', '42'), (5361, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (5362, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (5363, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '139', '305', '2.5', 'None', 'GITAM', 'ECE', '8.52', '10', '0'), (5364, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (5365, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '650', '1390', '3', '106', 'VTU', 'Computer Science', '75.4', '100', '0'), (5366, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (5367, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '4.5', '110', 'None', '0', '0', '0', '0'), (5368, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (5369, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3.5', 'None', 'Panjab University', 'UIET', '75', '100', '0'), (5370, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5371, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (5372, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (5373, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '790', '510', '1300', '3.5', '101', 'SRM', 'Mechanical', '9.19', '10', '0'), (5374, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (5375, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '156', '315', '3', '100', 'CEG', 'Industrial Engineering', '7.97', '10', '0'), (5376, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (5377, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '4.5', '106', 'Amrita School of Engineering', 'ECE', '9.27', '10', '0'), (5378, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '154', '313', '3', '109', 'CEG', 'Computer Science and Engineering', '9.18', '10', '0'), (5379, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (5380, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (5381, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (5382, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '530', '1240', '3', '104', 'VTU', 'Computer Science', '72', '100', '0'), (5383, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '144', '306', '4', '108', 'PSG College of Technology', 'EEE', '9.49', '10', '0'), (5384, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '149', '311', '3', '86', 'VIT University', 'Mechanical engg', '7.82', '10', '0'), (5385, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2014', '162', '151', '313', '3.5', '100', 'Anna University', 'Cse', '7.5', '10', '0'), (5386, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4', '108', 'VIT', 'ECE', '9.16', '10', '0'), (5387, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '590', '1350', '3', '117', 'RMD Engineering College', 'Electronics and Communication', '8.7', '10', '0'), (5388, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (5389, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '149', '318', '3', '104', 'GGSIPU', 'Computer Science', '73', '100', '57'), (5390, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Anna University', 'Mechanical', '7.5', '10', '0'), (5391, '6', 'Admit', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (5392, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (5393, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5394, '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Spring ', '2014', '161', '144', '305', '3', '97', 'NIT RAIPUR', 'METALLURGY', '8.1', '10', '0'), (5395, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (5396, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (5397, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (5398, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '430', '1210', '3', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICATION', '76', '100', '0'), (5399, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (5400, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '154', '310', '3.5', '92', 'MU', 'Production', '67', '100', '0'), (5401, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (5402, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (5403, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (5404, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '148', '316', '3', '99', 'SASTRA', 'Mechanical', '8.3', '10', '0'), (5405, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'University Vishweriah College of Engineering', 'Computer Science', '80', '100', '0'), (5406, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '165', '149', '314', '3', '101', 'Dharamsinh Desai University', 'Instrumentation and Control', '8.9', '100', '0'), (5407, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', '109', 'Chhatrapati Shahuji Maharaj University Kanpur', 'BTech Computer Science', '10', '10', '44'), (5408, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '147', '316', '3', '97', 'MU', 'Electronics Engg', '61', '100', '0'), (5409, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '156', '320', '3', '103', 'SPCE', 'Electrical engineering', '78', '100', '0'), (5410, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3', '109', 'VNIT Nagpur', 'ece', '73', '100', '0'), (5411, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '143', '306', '3', '88', 'JNTU', 'Mechanical', '68', '100', '0'), (5412, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (5413, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '95', 'NITK Surathkal', 'civil', '7.61', '10', '0'), (5414, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '113', 'DSI', 'Electrical and Electronics', '80', '100', '0'), (5415, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '109', 'University of Mumbai', 'Mechanical Engineering', '69', '100', '0'), (5416, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (5417, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '450', '1150', '3', '82', 'CVRCE', 'ECE', '72', '100', '0'), (5418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (5419, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3.5', '108', 'SET JAIN UNIVERSITY', 'ECE', '74.7', '100', '0'), (5420, '6', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20'), (5421, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '3.5', 'None', 'Nagarjuna University', 'CS', '8.3', '10', '0'), (5422, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '149', '314', '3.5', '105', 'Pondicherry Engineering College', 'Information Technology', '8.51', '10', '48'), (5423, '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '149', '311', '4', '105', 'SRM', 'Mechanical Engineering', '9.34', '10', '0'), (5424, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '430', '1220', '4', '100', 'PESIT', 'Electronics and Communication Department', '85.5', '100', '0'), (5425, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (5426, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '152', '316', '3.5', '107', 'None', '0', '0', '0', '0'), (5427, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (5428, '6', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2015', '165', '156', '321', '4', '112', 'PESIT', 'Mechanical', '9.21', '10', '24'), (5429, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'JNTU', 'CSE', '70', '100', '0'), (5430, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (5431, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '600', '1400', '5', '290', 'Anna University', 'ECE', '85', '100', '0'), (5432, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '148', '313', '3.5', '106', 'Thapar University', 'Civil Engineering', '8.54', '10', '0'), (5433, '6', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '167', '149', '316', '3', '107', 'Thapar University', 'Computer Science', '6.22', '10', '0'), (5434, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3.5', '111', 'Mahatma Gandhi University Kerala', 'Electronics and Communication', '7.47', '10', '0'), (5435, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '143', '302', '3', '84', 'SKIET Kurukshetra University', 'Information Technology', '74', '100', '0'), (5436, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (5437, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '670', '1430', '4', '115', 'SVCE', 'EEE', '84', '100', '0'), (5438, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '166', '144', '310', '3', 'None', 'Bharati Vidyapeeth', 'Biomedical', '0', '0', '0'), (5439, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (5440, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '150', '315', '4.5', 'None', 'PESIT', 'Mechanical', '9.08', '10', '0'), (5441, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (5442, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (5443, '6', 'Admit', 'MS', 'microelectronics', 'Fall ', '2015', '158', '163', '321', '3', '107', 'Amrita School of Engineering', 'Electronics and Instrumentation', '8.57', '10', '36'), (5444, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '145', '307', '3', '95', 'Vasavi College of Engineering', 'Computer Science', '82', '100', '12'), (5445, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '96', 'BITS Pilani', 'COMPUTERS', '7.8', '10', '0'), (5446, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '104', 'University of Pune', 'Mechanical', '61', '100', '60'), (5447, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '103', 'JNTU', 'IT', '78.56', '100', '0'), (5448, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5449, '6', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5450, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (5451, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (5452, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (5453, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (5454, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (5455, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '154', '149', '303', '4', '101', 'JNTU', 'Metallurgy and Materials Engineering', '62.5', '100', '0'), (5456, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (5457, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (5458, '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '162', '152', '314', '4', '100', 'VIT', 'Information Technology', '8.95', '10', '0'), (5459, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (5460, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (5461, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '94', 'COEP', 'Computer', '0', '0', '0'), (5462, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '153', '318', '3.5', '105', 'NIT Surat', 'Electronics', '7.74', '10', '0'), (5463, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (5464, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (5465, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '700', '1430', '3.5', '112', 'Anna University', 'Mechanical Engineering', '76.18', '100', '0'), (5466, '6', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '620', '1400', '3.5', '106', 'Assam Engineering College', 'Electrical Engineering', '74.3', '100', '0'), (5467, '6', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '800', '470', '1270', '3', '109', 'RAIT', 'Electronics and Telecommunication', '6.5', '10', '0'), (5468, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (5469, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '150', '315', 'None', '99', 'Jalpaiguri Government Engineering College', 'Electronics and Communication', '8.11', '10', '0'), (5470, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (5471, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (5472, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (5473, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '164', '157', '321', '4.5', '105', 'NIT Tirchy', 'Production Engineering', '7.86', '10', '24'), (5474, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '152', '316', '3', '104', 'NIT Allahabad', 'CSE', '8.68', '10', '0'), (5475, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (5476, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '680', '1470', 'None', '108', 'SJCE', 'E & C', '68', '100', '0'), (5477, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '147', '311', '3', '98', 'VNIT Nagpur', 'Mechanical', '8', '10', '24'), (5478, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (5479, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (5480, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '4.5', '115', "People's Education Society Institute of Technology (PESIT)", 'ECE', '8.51', '10', '0'), (5481, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (5482, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (5483, '6', 'Admit', 'MS', 'Data Science', 'Spring ', '2016', '162', '159', '321', '3.5', '111', 'NIT Warangal', 'Electrical and Electronics Engineering', '8.4', '10', '24'), (5484, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '530', '1310', '4', 'None', 'Pune University', 'Mechanical', '73', '100', '0'), (5485, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', 'None', 'VTU', 'Mechanical', '75.6', '100', '0'), (5486, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '147', '304', '3.5', '108', 'Sri Sairam Engineering College', 'ECE', '8.3', '10', '0'), (5487, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (5488, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'Amrita School of Engineering', 'CSE', '7.69', '10', '0'), (5489, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '92', 'VTU', 'ECE', '71', '100', '0'), (5490, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (5491, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (5492, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (5493, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', 'None', 'KIIT', 'Computer Science(IT)', '8.4', '10', '0'), (5494, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '4', '96', 'Sardar Patel College of Engineering', 'Electrical Engineeting', '72', '100', '0'), (5495, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '4', '114', 'NIT Calicut', 'ECE', '9.16', '10', '0'), (5496, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '140', '306', '3', '95', 'VTU', 'Electronics and Communication', '82.8', '100', '0'), (5497, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (5498, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '159', '153', '312', '3', '99', 'MRCET(affiliated to JNTUH)', 'aero', '72', '100', '0'), (5499, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '153', '317', '3', '98', 'CSPIT', 'electronics and communication', '8.51', '10', '0'), (5500, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (5501, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '91', 'Northern India Engineering College UPTU', 'Biomedical engineering', '65', '100', '0'), (5502, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (5503, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (5504, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (5505, '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '150', '309', '3', '109', 'VTU', 'Computer Science', '70', '100', '17'), (5506, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0'), (5507, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '155', '316', '3', '102', 'NIT Hamirpur', 'Electronics and Communication Engineering', '8.04', '10', '20'), (5508, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (5509, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '153', '317', '3.5', '110', 'VTU', '0', '70', '100', '0'), (5510, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '3', '103', 'Jaypee Institute of Information Technology', 'CSE', '70', '100', '0'), (5511, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (5512, '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2013', '161', '154', '315', '4', '114', 'MU', 'Information Technology', '61', '100', '0'), (5513, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '148', '311', '3', 'None', 'PESIT', 'Telecommunication', '8.5', '10', '23'), (5514, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '156', '149', '305', '3', 'None', 'MU', 'electronics and telecommunication', '65.13', '100', '0'), (5515, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (5516, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '3.5', '117', 'RNSIT', 'Instrumentation Technology', '78', '100', '0'), (5517, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '146', '309', '3', '102', 'Manipal Institue of Technology', 'Information Technology', '7', '10', '0'), (5518, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (5519, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '146', '308', '3.5', '97', 'VSS Univ of Technology', 'ELECTRICAL ENGINEERING', '7.77', '10', '0'), (5520, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3', '105', 'CoE Trivandrum', 'ECE', '83.3', '100', '0'), (5521, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (5522, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (5523, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '680', '600', '1280', '3.5', '88', 'Dr MGR Educational and Research Institute', 'Computer Science and Engineering', '7.43', '10', '0'), (5524, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (5525, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '154', '318', '4', '111', 'Goa University', 'Electronics and Telecommunication', '65.44', '100', '0'), (5526, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '149', '304', '3', '93', 'Anna University', 'Mechanical Engineering', '7.6', '10', '0'), (5527, '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32'), (5528, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (5529, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (5530, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', 'None', '164', '148', '312', '3', '101', 'University of Pune', 'Mechanical', '61', '100', '0'), (5531, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (5532, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (5533, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '147', '309', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'ELECTRONICS AND COMMUNICATION', '7.8', '10', '18'), (5534, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (5535, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '153', '315', '3', '105', 'Reva Institute of Technology', 'cse', '0', '0', '0'), (5536, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (5537, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (5538, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '149', '312', '4', '101', 'Manav Rachna', 'ECE', '8', '10', '0'), (5539, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (5540, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (5541, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '158', '158', '316', '4', '116', 'MU', 'EXTC', '70.47', '100', '12'), (5542, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (5543, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (5544, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (5545, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (5546, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3', '100', 'RGPV', 'computer science', '73', '100', '0'), (5547, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '142', '302', '2.5', 'None', 'Dr.AIT', 'TCE', '9.03', '10', '0'), (5548, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (5549, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (5550, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (5551, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (5552, '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (5553, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '165', '153', '318', '4', '113', 'Pune University', 'Information technology', '69', '100', '0'), (5554, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3.5', '95', 'VNR VJIET', 'IT', '75', '100', '0'), (5555, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '152', '310', '3', '102', 'Osmania University', 'EEE', '67', '100', '0'), (5556, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '590', '1350', '3', 'None', 'Velammal Engineering College', 'Electronics and Instrumentation', '75', '100', '0'), (5557, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (5558, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (5559, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (5560, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', '4.5', '118', 'VTU', 'Electronics and Communication', '67', '100', '0'), (5561, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (5562, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '113', 'Manipal Institue of Technology', 'Mechatronics', '7.5', '10', '0'), (5563, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '0', 'SVCE', 'Information Technology', '8.44', '10', '0'), (5564, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (5565, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '156', '319', '3.5', '112', 'MNIT', 'Electronics and Communication Engineering', '6.8', '10', '0'), (5566, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (5567, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '158', '319', '4.5', '111', 'Pune University', 'Electronics and Telecom', '65', '100', '0'), (5568, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (5569, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0'), (5570, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (5571, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (5572, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (5573, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (5574, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '167', '155', '322', '4.5', '109', 'University of Pune', 'Electronics and Telecommunication', '64', '100', '0'), (5575, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (5576, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', 'None', 'None', 'PICT', 'Computer Engg', '64', '100', '0'), (5577, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '440', '1170', '3', '102', 'Pune University', 'Computer Engineering', '73', '100', '0'), (5578, '6', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (5579, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (5580, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '148', '313', '3', '97', 'Jaypee Institute of Information Technology', 'ECE', '7.4', '10', '51'), (5581, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '110', 'Sinhgad College of Engineering', 'Computer Engg', '60', '100', '0'), (5582, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (5583, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '650', '570', '1220', '4', '101', 'University of Pune', 'Computer & I.T', '56', '100', '0'), (5584, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (5585, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '580', '1310', '3.5', '107', 'SNDT Univ Mumbai', 'ENC', '7.73', '10', '0'), (5586, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '640', '1350', '3', '113', 'JNTU', 'ECE', '73', '100', '0'), (5587, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '158', '325', '4', '115', 'University of Mumbai', 'Computer Engineering', '0', '0', '0'), (5588, '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '165', '153', '318', '3.5', '110', 'BITS Pilani', 'chemical', '7.34', '10', '2'), (5589, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5590, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (5591, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '158', '154', '312', '3.5', '114', 'West Bengal University Of Technology', 'ELECTRONICS AND COMMUNICATION', '8.64', '10', '0'), (5592, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '156', '318', '3.5', '112', 'None', '0', '58.1', '100', '0'), (5593, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (5594, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', 'None', 'University of Pune', 'Computer', '65.8', '100', '0'), (5595, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (5596, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '164', '327', '4.5', '116', 'VTU', 'Electronics and Communication', '65.35', '100', '20'), (5597, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '3.5', '82', 'CEG', 'Electrical and Electronics Engineering', '9.31', '10', '0'), (5598, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (5599, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '149', '312', '3', '91', 'Maharishi Dayanand University', 'Information Technology', '72', '100', '0'), (5600, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3', '93', 'CVRCE', 'Electronics and Communication Engineering', '82', '100', '0'), (5601, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (5602, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (5603, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (5604, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (5605, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '760', '530', '1290', '3.5', '107', 'SGSITS', 'ECE', '69.78', '100', '0'), (5606, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (5607, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '3', '105', 'GCET Sardar Patel University', 'Computers', '6.38', '10', '0'), (5608, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'IP University MAIT', 'ECE', '81', '100', '0'), (5609, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (5610, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (5611, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (5612, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (5613, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '580', '1320', '3.5', '97', 'CUSAT', 'Electronics and Communication Engineering', '76.32', '100', '0'), (5614, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '3', '93', 'M G university Kerala', 'CS', '73.3', '100', '12'), (5615, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '153', '313', '4', '105', 'Pune University', 'ENTC', '60', '100', '56'), (5616, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '156', '315', '3.5', '112', 'CITM Faridabad Haryana (affiliated to Maharshi Dayanand University Rohtak)', 'Aeronautical Engineering', '70.5', '100', '0'), (5617, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (5618, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (5619, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '158', '320', 'None', '108', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.7', '100', '52'), (5620, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (5621, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '149', '309', '4', 'None', 'DSCE', 'ECE', '72', '100', '0'), (5622, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (5623, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '155', '318', '3', '107', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (5624, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '150', '306', '3.5', 'None', 'Anna University', 'Electrical and Electronics Eng.', '8.7', '10', '24'), (5625, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (5626, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '101', 'NITK Surathkal', 'Electronics & Comm Engg', '7.34', '10', '0'), (5627, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (5628, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (5629, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '145', '304', '3', '90', 'SRM', 'ELECTRICAL AND ELECTRONICS', '9.328', '10', '0'), (5630, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (5631, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (5632, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (5633, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '111', 'CoE Trivandrum', 'Computer Science', '7.93', '10', '36'), (5634, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '101', 'JNTU', 'ECE', '76', '100', '0'), (5635, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (5636, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '630', '350', '980', '3', '93', 'EEC', 'ECE', '0', '0', '0'), (5637, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '3.5', '104', 'NIT Durgapur', 'ELECTRICAL ENGINEERING', '7.97', '10', '0'), (5638, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (5639, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (5640, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (5641, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '141', '299', '3', 'None', 'SSN College of Engineering', 'EEE', '75', '100', '0'), (5642, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (5643, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (5644, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (5645, '6', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (5646, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (5647, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (5648, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', 'None', '100', 'IIT Roorkee', 'Paper Technology', '7.84', '10', '43'), (5649, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '650', '1440', '4', '110', 'VTU', 'Mechanical', '68', '100', '0'), (5650, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (5651, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '152', '315', '3', '104', 'VIT', 'Electrical and Electronics Engineering', '8.97', '10', '0'), (5652, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '157', '322', '4.5', '115', 'university pf Pune', 'Electronics and telecomm', '64', '100', '15'), (5653, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '153', '316', '4', '108', 'VTU', 'Computer Science', '83.68', '100', '0'), (5654, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (5655, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '160', '149', '309', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '7.35', '10', '0'), (5656, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '360', '1140', '3', '101', 'Siddaganga Institue of Technology', 'Electronics and Communication', '9.27', '10', '0'), (5657, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '3', '102', 'Sardar Patel College of Engineering', 'Information Technology', '67', '100', '0'), (5658, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical & Electronics', '67', '100', '0'), (5659, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '167', '324', '3', '110', 'BITS Pilani', 'Electronics & Instrumentation', '6', '10', '0'), (5660, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '101', 'Panimalar Engineering College', 'Electrical and Electronics', '8.2', '10', '0'), (5661, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '147', '314', '3', '88', 'Cochin University of Science and Technology', 'Division of Electorinics', '72', '100', '0'), (5662, '6', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (5663, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (5664, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (5665, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '640', '1420', '5', '270', 'MU', 'Comp Engg', '57.29', '100', '0'), (5666, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'Anna University', 'Computer Science', '73', '100', '0'), (5667, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '143', '299', 'None', '97', '0', 'ECE', '79', '100', '0'), (5668, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (5669, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '109', 'NIT Hamirpur', 'Electronics and Communication', '8.18', '10', '18'), (5670, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '156', '147', '303', '3', '100', 'Madras Institute of Technology', 'Computer Science Engineering', '6.8', '10', '0'), (5671, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (5672, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (5673, '6', 'Reject', 'MS', 'CS / MIS', 'Fall ', '2014', '162', '155', '317', '4', '106', 'Yeshwantrao Chavan College of Engineering', 'ECE', '64', '100', '0'), (5674, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '146', '311', '3', '97', 'RVR & JC College of Engineering', 'electronics and communication engineering', '84.8', '100', '0'), (5675, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (5676, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '720', '340', '1060', '3', '84', 'pvpsit', 'ece', '76.52', '100', '0'), (5677, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '163', '153', '316', '3', '109', 'NIT Tirchy', 'CSE', '7.03', '10', '0'), (5678, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '102', 'MU', 'Electronics & Telecommunication', '69', '100', '0'), (5679, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (5680, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '109', 'University of Calicut', 'Computer Science and Engg', '79', '100', '38'), (5681, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (5682, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', 'None', 'None', 'Madras Institute of Technology', 'Electronics and Communication', '8.5', '10', '0'), (5683, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (5684, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (5685, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', 'None', 'DA-IICT', 'ICT', '6.83', '10', '19'), (5686, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (5687, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (5688, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (5689, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (5690, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (5691, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '102', 'VTU', 'Computer Science', '71.7', '100', '0'), (5692, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (5693, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (5694, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (5695, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (5696, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (5697, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '155', '314', '5', '105', 'NMIMS', 'Electronics', '2.85', '4', '0'), (5698, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '166', '150', '316', '3.5', '107', 'University of Mumbai', 'electronics and telecom', '70.03', '100', '31'), (5699, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '157', '319', '3.5', '109', 'SRM', 'ECE', '8.23', '10', '0'), (5700, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (5701, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '110', 'VTU', 'E&C;', '69.4', '100', '0'), (5702, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '640', '1440', '3.5', '105', 'SSN College of Engineering', 'IT', '73', '100', '0'), (5703, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '3.5', '94', 'IIT Indore', 'Electrical Engineering', '6.6', '10', '0'), (5704, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (5705, '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '163', '142', '305', '3', '93', 'BIT VTU', 'Electronics And Communication', '80', '100', '0'), (5706, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '3', 'None', 'Univ of Mumbai', 'Electrical', '64.41', '100', '0'), (5707, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '144', '310', '3.5', '96', 'SRM', 'ECE', '8', '10', '0'), (5708, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0'), (5709, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (5710, '6', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '158', '161', '319', '3.5', '112', 'Guru Nanak Dev University Amritsar', 'Electronics & Communications', '70.8', '100', '0'), (5711, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '104', 'Manipal Institue of Technology', 'Biomedical Engineering', '7.67', '10', '0'), (5712, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '168', '149', '317', '3', '101', 'None', 'Electronics and Communication Engineering', '7.85', '10', '0'), (5713, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '84', 'Panjab University', 'CSE', '75.02', '100', '0'), (5714, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (5715, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (5716, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (5717, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (5718, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (5719, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3', '99', 'Pondicherry University', 'CSE', '8.03', '10', '0'), (5720, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '163', '324', '4', '116', 'SDM', 'mechanical', '68.84', '100', '0'), (5721, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (5722, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (5723, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '166', '324', '4', 'None', 'Manipal Institue of Technology', 'electrical & electronics', '7.41', '10', '0'), (5724, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '108', 'PESIT', 'Mechanical Engg.', '60', '100', '0'), (5725, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (5726, '6', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (5727, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '100', 'Anna University', 'ECE', '8.7', '10', '0'), (5728, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '102', 'GITAM', 'ECE', '9.15', '10', '0'), (5729, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (5730, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '4', '107', 'Pune University', 'IT', '58', '100', '0'), (5731, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (5732, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (5733, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (5734, '6', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (5735, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '162', '141', '303', '3.5', '102', 'Vasavi College of Engineering', 'Civil Engineering', '66', '100', '0'), (5736, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (5737, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '149', '312', '3.5', '105', 'IIIT Hyderabad', 'ECE', '6.72', '10', '0'), (5738, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '2.5', '97', 'None', '0', '8.63', '10', '0'), (5739, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4', '8', 'Pondicherry University', 'Computer Science', '7.1', '10', '20'), (5740, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (5741, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '800', '510', '1310', '3', '96', 'PICT', 'IT', '3.29', '4', '0'), (5742, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Spring ', '2014', '158', '150', '308', '3.5', '92', 'WBUT', 'ECE', '9.77', '10', '0'), (5743, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3', '100', 'NIT Tirchy', 'Computer Science', '7.62', '10', '0'), (5744, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '330', '1050', '3.5', '103', 'Anna Univeristy', 'EEE', '74', '100', '0'), (5745, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (5746, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (5747, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (5748, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '156', '149', '305', '3', '102', 'JNTU', 'Computer Science', '78', '100', '0'), (5749, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', '91', 'COER UPTU', 'Electronics and TeleCommunication', '76', '100', '0'), (5750, '6', 'Reject', 'MS', 'Packaging Science', 'Fall ', '2013', '160', '152', '312', '3.5', '106', 'Anna University', 'Mechanical', '7.36', '10', '0'), (5751, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (5752, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (5753, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (5754, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '3.5', '114', 'Nagpur University', 'Electrical Engineering', '61', '100', '0'), (5755, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '520', '1280', '3', '104', 'Shri Ramdeobaba Engineering College', 'electronics and communication', '70', '100', '0'), (5756, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (5757, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (5758, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (5759, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '2.5', '95', 'PESIT', 'Electronics and communication', '8.02', '10', '0'), (5760, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (5761, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (5762, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '460', '1250', '3.5', '263', 'JNTU', 'eee', '79', '100', '0'), (5763, '6', 'Reject', 'MS', 'Master of Science in Information Technology', 'Fall ', '2014', '162', '151', '313', '3.5', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (5764, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (5765, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '153', '309', '3.5', '99', 'VIT University', 'Electronics and Instrumentation', '7.99', '10', '0'), (5766, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (5767, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (5768, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (5769, '6', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2015', '161', '153', '314', '3', '108', 'University of Delhi', 'Mechanical Engineering', '63.15', '100', '42'), (5770, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (5771, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (5772, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (5773, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (5774, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (5775, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '156', '323', '3', '107', 'NIT Nagpur', 'ECE', '8.22', '10', '28'), (5776, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (5777, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '410', '1150', '4', '104', 'Anna University', 'Electrical and Electronics', '7.9', '10', '0'), (5778, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '147', '307', '4', '101', 'Shivaji University', 'Electronics & Telecommunication', '69.07', '100', '0'), (5779, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (5780, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'RTU Kota / JECRC jaipur', 'Information Technology', '74', '100', '41'), (5781, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3.5', '90', 'Anna University', 'Computer Science and Engineering', '7.8', '10', '0'), (5782, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (5783, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (5784, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '420', '1140', '3.5', '98', 'VTU', 'Computer Science and engineering', '67.53', '100', '0'), (5785, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (5786, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '670', '1450', '4', '113', 'University of Pune', 'Electronics & Telecommunication', '61', '100', '0'), (5787, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '790', '610', '1400', '3.5', '115', 'JNTU', 'Electronics and Instrumentation Engineering', '79', '100', '0'), (5788, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '152', '313', '3', '105', 'Sardar Patel College of Engineering', 'Electrical Engineering', '75.86', '100', '18'), (5789, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '100', 'Coimbatore Insitute of Technology', 'M.Sc Software Engineering', '78', '100', '0'), (5790, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '145', '311', '3', '96', 'SASTRA', 'electronics and communication engineering', '7.93', '10', '27'), (5791, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '144', '308', 'None', 'None', 'Vignan Institute of Technology and Science', 'ECE', '83', '100', '0'), (5792, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (5793, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (5794, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (5795, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (5796, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '82', 'MU', 'Electronics and Telecommunication', '73.9', '100', '0'), (5797, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (5798, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3', '108', 'Pune University', 'Electronics', '57', '100', '0'), (5799, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (5800, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '4', '113', 'RMK Engineering College', 'B.E. Electrical and Electronics Engineering', '8.28', '10', '0'), (5801, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '450', '1250', '3', 'None', 'NIT Warangal', 'Civil engineering', '7.1', '10', '0'), (5802, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '11', '780', '500', '1280', '3.5', '105', 'Crescent Engineering College', 'CS', '69', '100', '0'), (5803, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '430', '1120', '3.5', '89', 'Anna University', 'Electrical and Electronics Engineering', '81', '100', '0'), (5804, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '149', '310', '3.5', '102', 'VIT', 'EEE', '8.18', '10', '0'), (5805, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '710', '550', '1260', '3', '98', 'VTU', 'Telecommunication', '74', '100', '0'), (5806, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3.5', '102', 'Amity University', 'Computer Science And Engineering', '7.6', '10', '0'), (5807, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (5808, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '153', '313', '3.5', '112', 'NMAMIT Nitte', 'Computer Science & Engineering', '67', '100', '0'), (5809, '6', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (5810, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (5811, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '161', '162', '323', '4', '115', 'Madras Institute of Technology', 'ECE', '8', '10', '0'), (5812, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (5813, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (5814, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2012', '800', '590', '1390', '4.5', '106', 'None', '0', '70', '100', '0'), (5815, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (5816, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2012', '740', '530', '1270', '3', '99', 'JNTU', 'EEE', '54.66', '100', '0'), (5817, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (5818, '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '310', '1090', '3', '83', 'Bapatla Engineering College', 'civil engineering', '83', '100', '0'), (5819, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (5820, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '94', 'Guru Gobind Singh Indraprashta University', 'electronics & communication engg', '70.06', '100', '0'), (5821, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '153', '321', 'None', 'None', 'VTU', 'EC', '80', '100', '0'), (5822, '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '770', '340', '1110', '3', '97', 'VTU', 'ECE', '70', '100', '0'), (5823, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (5824, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (5825, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (5826, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (5827, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '155', '317', '4', '109', 'Sri Sairam Engineering College', 'Instrumentation and Control', '8.2', '10', '0'), (5828, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (5829, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '530', '1330', '3.5', '115', 'Manipal Institue of Technology', 'ECE', '8.6', '10', '0'), (5830, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '690', '1480', '3.5', '106', 'NIT Bhopal', 'CSE', '7.36', '10', '0'), (5831, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'UPTU', 'Mechanical Engineering', '67', '100', '42'), (5832, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '154', '146', '300', '3.5', '95', 'Gujarat Technological University', 'Mechanical Engineering', '8.1', '10', '0'), (5833, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '104', 'MU', 'computer', '58.95', '100', '0'), (5834, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (5835, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '168', '152', '320', '4', '105', 'VTU', 'Electronics', '64', '100', '0'), (5836, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (5837, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '110', 'VTU', 'Electronics & Communication', '76.5', '100', '0'), (5838, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (5839, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '156', '149', '305', '3', '100', 'SASTRA', 'Electronics and Communication', '9.11', '10', '52'), (5840, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '157', '317', 'None', '114', 'VTU', 'ECE', '8.59', '10', '0'), (5841, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '146', '308', '3.5', '97', 'Pune University', 'Computer Engineering', '70', '100', '0'), (5842, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (5843, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (5844, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'Punjab Technical University', 'Electronics & Communication', '79.92', '100', '32'), (5845, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '144', '300', '3.5', '91', 'Birla Vishvakarma Mahavidyalaya', 'Electrical Engineering', '8.11', '10', '24'), (5846, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5847, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '4', '110', 'SJCE', 'EC', '76', '100', '0'), (5848, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', "St Joseph's College of Engineering", 'cse', '8.64', '10', '0'), (5849, '6', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (5850, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (5851, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (5852, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (5853, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (5854, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (5855, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (5856, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '112', 'VIT Pune', 'Instrumentation & Control', '8.8', '10', '0'), (5857, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '160', '318', '3.5', '114', 'MU', '0', '61', '100', '0'), (5858, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '161', '156', '317', '3.5', '116', 'VTU', 'EEE', '85', '100', '0'), (5859, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '163', '155', '318', '3', '90', 'West Bengal University Of Technology', 'Electronics and Instrumentation Engineering', '8.54', '10', '33'), (5860, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (5861, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (5862, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', 'None', 'JNTU', 'ECE', '75', '100', '0'), (5863, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '4', '97', 'Amrita School of Engineering', 'Electronics and Communication', '9.01', '10', '48'), (5864, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '157', '315', '4', '116', 'Goa University', 'Civil Engineering', '68', '100', '0'), (5865, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (5866, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', 'None', '111', 'VTU', 'CSE', '75', '100', '0'), (5867, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '2.5', '90', 'Pondicherry Engineering College', 'ECE', '8.25', '10', '0'), (5868, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (5869, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (5870, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '151', '316', '3', '95', 'Uni. Of Pune VIIT', 'E&TC;', '67', '100', '0'), (5871, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '144', '303', '3', '101', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (5872, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '4', '110', 'Priyadarshini College of Engineering', 'Computer Technology', '63.15', '100', '0'), (5873, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (5874, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3', '93', 'University of Mumbai', 'Computer Science', '62.3', '100', '36'), (5875, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '99', 'BIT Mesra', 'Mechanical Engineering', '71', '100', '0'), (5876, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (5877, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3', '103', 'Velammal Engineering College', 'Electronics and Communication', '88', '100', '0'), (5878, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '740', '490', '1230', '4', '105', 'Manipal Institue of Technology', 'Electronics & Coomunication', '8.59', '10', '0'), (5879, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (5880, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (5881, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '430', '1230', '3.5', '104', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '9.18', '10', '0'), (5882, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3', '100', 'NIT Calicut', 'Electrical Engg', '7.6', '10', '0'), (5883, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (5884, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '146', '303', '2.5', 'None', 'Madras Institute of Technology', 'ECE', '6.5', '10', '0'), (5885, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '151', '312', '3', '112', 'VTU', 'eee', '70', '100', '0'), (5886, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (5887, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (5888, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (5889, '6', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2014', '156', '145', '301', '3', '83', 'DBIT', 'Mechanical', '58.72', '100', '34'), (5890, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (5891, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3.5', '100', 'RGPV', 'Computer', '65', '100', '0'), (5892, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '149', '309', '3.5', '109', 'Pune University', 'Electronics &Telecommunication;', '74', '100', '0'), (5893, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (5894, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (5895, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '91', 'Panjab University', 'ECE', '82.2', '100', '0'), (5896, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (5897, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (5898, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '147', '304', '3', '102', 'VIT', 'IT', '7.93', '10', '0'), (5899, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2013', '164', '154', '318', '3', '93', 'NIT Calicut', 'CHEMICAL ENGINEERING', '7.42', '10', '0'), (5900, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '2.5', 'None', 'Coimbatore Insitute of Technology', 'Electronics and Communitaion', '6.76', '10', '0'), (5901, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '420', '1160', '3', '105', 'None', 'ECE', '82.7', '100', '0'), (5902, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (5903, '6', 'Reject', 'MS', 'Wireless communications', 'Fall ', '2014', '163', '154', '317', '3.5', '104', 'JNTU', 'Electronics and Communication', '83.64', '100', '42'), (5904, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (5905, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (5906, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (5907, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3.5', '104', 'MU', 'Electrical Engineering', '71', '100', '30'), (5908, '6', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Spring ', '2014', '165', '155', '320', '4', '112', 'JNTU', 'Biotechnology', '71.14', '100', '0'), (5909, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '96', 'VIT', 'ELECTRONICS AND COMMUNICATION', '8.35', '10', '0'), (5910, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '156', '151', '307', '3.5', '103', 'md university rohtak', 'ece', '75.2', '100', '0'), (5911, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '490', '730', '1220', '3', '104', 'University of Pune', 'electronics and telecommunication', '62.49', '100', '0'), (5912, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '143', '301', '3', '90', 'RGTU', 'Electronics and communication', '8.39', '10', '0'), (5913, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '154', '147', '301', '3.5', '99', 'KSIT Visvesvaraya Technological University', 'Electronics & Communication', '72', '100', '0'), (5914, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (5915, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3', '96', 'K J Somaiya College of Engiineering', 'ETRX', '67.5', '100', '0'), (5916, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (5917, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '163', '155', '318', '3.5', '99', 'Madras Institute of Technology', 'ECE', '8.74', '10', '0'), (5918, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (5919, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (5920, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '142', '302', '3', '86', 'Cochin University of Science and Technology', 'Computer Science', '78', '100', '0'), (5921, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', 'None', '95', 'Amrita School of Engineering', 'ECE', '7.9', '10', '0'), (5922, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (5923, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '770', '430', '1200', '3.5', '97', 'Amrita School of Engineering', 'Computer Science', '7.5', '10', '0'), (5924, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '450', '1170', '3', '84', 'Anna University', 'electronics and instrumentation', '66', '100', '0'), (5925, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (5926, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '103', 'SASTRA', 'Computer Science', '7.04', '10', '0'), (5927, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Global Academy of Technology', 'Electrical & Electronics Engineering', '77.6', '100', '0'), (5928, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (5929, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '450', '1080', '3.5', '95', 'HKBKCE', 'Computer Science', '7.5', '100', '0'), (5930, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Amrita School of Engineering', 'Computer Science Engineering', '7.36', '10', '0'), (5931, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (5932, '6', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (5933, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', 'None', 'None', '0', '3.5', '106', 'None', 'CSE', '7.55', '100', '36'), (5934, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (5935, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '160', '140', '300', '3', '81', 'Andhra University', 'ECE', '8.2', '10', '0'), (5936, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '150', '306', '3.5', '99', 'VTU', 'EC', '75', '100', '0'), (5937, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '164', '149', '313', '3.5', '99', 'Govt. Engineering College Trichur[University of Calicut]', 'Electrical & Electronics Engineering', '70', '100', '0'), (5938, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '152', '310', '3', '107', 'N I E Mysore', 'Computer Science and Engineering', '9.24', '10', '41'), (5939, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (5940, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3', '103', 'Indus Inst. of Tech. and Eng.', 'E.C.', '8.77', '10', '0'), (5941, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '730', '380', '1110', '3', '93', 'MU', '0', '63', '100', '0'), (5942, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '440', '1170', '3.5', '240', 'PSG College of Technology', 'Automotive Engg', '8.11', '10', '0'), (5943, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '4', '107', 'VTU', 'ECE', '78', '100', '0'), (5944, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (5945, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '158', '152', '310', '3', 'None', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5946, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '430', '1180', '4', '109', 'BIT Mesra', 'Electronics and Communication', '7.92', '10', '0'), (5947, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (5948, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '152', '317', '3.5', '104', 'University of Mumbai', 'Electronics Engineering', '66.67', '100', '0'), (5949, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (5950, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (5951, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (5952, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '670', '1470', '4', '116', 'VTU', 'Electrical Engineering', '72', '100', '0'), (5953, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (5954, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (5955, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '140', '301', '3.5', '100', 'Sir MVIT', 'Electronics & Communication', '81.5', '100', '0'), (5956, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '480', '1180', '3.5', '99', 'SSN College of Engineering', 'Computer science and engineering', '72', '100', '0'), (5957, '6', 'Reject', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (5958, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '410', '1200', '3.5', '109', 'Anna University', 'Computer Science and Engineering', '7.1', '10', '0'), (5959, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '730', '530', '1260', '3', '93', 'Uni of Mumbai', 'Production', '58.9', '100', '0'), (5960, '6', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (5961, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '650', '1450', '4', '277', 'MU', 'Electronics', '62', '100', '0'), (5962, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '105', 'Bangalore Institute of Technology', 'Electronics and Communcication Engineering', '68.2', '100', '0'), (5963, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '156', '309', '4', '111', 'None', 'Computer Science', '7', '10', '30'), (5964, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (5965, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '4', '110', 'None', 'Information Technology', '8.1', '10', '0'), (5966, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (5967, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (5968, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '150', '313', '3', '99', 'NIT SILCHAR ASSAM INDIA', 'ELECTRICAL ENGINEERING', '6.93', '10', '0'), (5969, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (5970, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '4', '7', 'Osmania University', 'ECE', '81.2', '100', '0'), (5971, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '152', '145', '297', '3', '98', 'None', '0', '8.7', '10', '0'), (5972, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '560', '1350', '3.5', '114', 'BITS Pilani', 'CSIS', '0', '0', '0'), (5973, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '95', 'UVCE', 'Electronics and Communications', '77.16', '100', '0'), (5974, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (5975, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (5976, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '157', '324', '4.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '8', '10', '36'), (5977, '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '156', '145', '301', '3.5', 'None', 'SCSVMV University', 'ECE', '8.88', '10', '0'), (5978, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (5979, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '700', '430', '1130', '3.5', 'None', 'S.V.C.E', 'EEE', '73', '100', '0'), (5980, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '145', '309', '3.5', '98', 'Pune University', 'Information technology', '63', '100', '0'), (5981, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (5982, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (5983, '6', 'Reject', 'MS', 'MIS', 'Spring ', '2016', '158', '149', '307', '4', '101', 'University of Mumbai', 'Computers', '65', '100', '25'), (5984, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (5985, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'SVCE', 'CSE', '72', '100', '0'), (5986, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (5987, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '144', '301', '3', '80', 'Dr.Ambedkar Institute of Technology', 'Electronics and Communication', '8.92', '10', '0'), (5988, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '144', '304', '3', '91', 'VTU', 'Electronics and Communication', '8.12', '10', '0'), (5989, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '740', '610', '1350', '4', '107', 'VTU', 'Electronics and Communication', '71', '100', '0'), (5990, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (5991, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '780', '540', '1320', '3', '104', 'CoE Trivandrum', 'ECE', '7.85', '10', '0'), (5992, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '150', '316', '3.5', '110', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (5993, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0'), (5994, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (5995, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '530', '1330', '4.5', '114', 'RTM Nagpur University', 'Electronics and Communication Engg.', '62.4', '100', '0'), (5996, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '480', '1270', '4', '109', 'VTU', 'ECE', '70.1', '100', '0'), (5997, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3', '94', "St Joseph's College of Engineering", 'Electronics And Communication', '75.45', '100', '0'), (5998, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3', '91', 'MU', 'I.T', '74.78', '100', '0'), (5999, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6000, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '153', '311', '4', '100', 'Nit Allahabad', 'Mechanical Engineering', '6.02', '10', '43'), (6001, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (6002, '6', 'Reject', 'MS', 'Computer Graphics and Game Technology', 'Fall ', '2013', '161', '155', '316', '3', '107', 'VTU', 'Electronics & Communication', '78', '100', '0'), (6003, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '162', '325', '4', '111', 'University of Kerala', 'Computer Science', '8.1', '10', '36'), (6004, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '103', 'BMSCE', 'Electronics and Communications', '68.1', '100', '0'), (6005, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '157', '152', '309', '3', '104', 'MU', 'EXTC', '70.48', '100', '12'), (6006, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '101', 'Rajasthan Technical University', 'Electronics & Communication Engg', '70.1', '100', '0'), (6007, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '152', '309', '3', '103', 'Nagpur University', 'Computer Technology', '71.2', '100', '0'), (6008, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6009, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (6010, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (6011, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (6012, '6', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2015', '170', '152', '322', '3.5', '97', 'Manipal Institue of Technology', 'Chemical', '6.64', '10', '56'), (6013, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (6014, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (6015, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '145', '301', '3', '92', 'Dr Ambedkar Institute of Technology', 'Telecommunications', '82.57', '100', '0'), (6016, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (6017, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6018, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (6019, '6', 'Reject', 'MS', 'Communication Engineering', 'Fall ', '2014', '159', '150', '309', '3', '93', 'UPTU', 'Electronics & Communication', '70', '100', '0'), (6020, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (6021, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '152', '316', 'None', '112', 'FRCRCE', 'Electronics', '70', '100', '0'), (6022, '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (6023, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '115', 'Manipal Institue of Technology', 'Electronics and Communication', '8.62', '10', '26'), (6024, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6025, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (6026, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '154', '152', '306', '3', '109', 'MU', 'ELECTRICAL', '70', '100', '0'), (6027, '6', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (6028, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '147', '312', '3.5', '99', 'PSG College of Technology', 'Electronics and Communication', '8.55', '10', '34'), (6029, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (6030, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '420', '1140', '4', '106', 'Pune University', 'E&TC;', '0', '0', '0'), (6031, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (6032, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (6033, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4', '119', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.79', '10', '0'), (6034, '6', 'Reject', 'MS', 'Mathematics', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'ISM Dhanbad', 'Applied Mathematics', '8.43', '10', '0'), (6035, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '157', '313', '4', '112', 'Siksha O Anusandhan University', 'Electronics & Communication Engineering', '7.69', '10', '0'), (6036, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '1310', '550', '1860', '3.5', '103', 'CUSAT', 'Civil', '79', '100', '0'), (6037, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (6038, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (6039, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (6040, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VIT', 'Electronics and Communication', '8.93', '100', '24'), (6041, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'University of Pune', 'IT', '64', '100', '0'), (6042, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (6043, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (6044, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6045, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '800', '650', '1450', '3.5', '114', 'Manipal Institue of Technology', 'Electronics and Communications', '3.61', '4', '8'), (6046, '6', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (6047, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6048, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6049, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (6050, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '102', 'SSN College of Engineering', 'EEE', '8.218', '10', '0'), (6051, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (6052, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (6053, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6054, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '3.5', '104', 'MU', 'CE', '70', '100', '0'), (6055, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '147', '305', '3.5', '100', 'Pune University', 'Computer Science', '62', '100', '0'), (6056, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '105', 'Anna University', 'ECE', '7.567', '10', '0'), (6057, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (6058, '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2016', '157', '143', '300', '3', '84', 'Anna University', 'civil engineering', '6.3', '10', '0'), (6059, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '103', 'NITK Surathkal', 'ECE', '8.82', '10', '30'), (6060, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (6061, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (6062, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (6063, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '4', '112', 'SSIT VTU', 'IT', '69', '100', '0'), (6064, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6065, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '3', '104', 'BITS Pilani', 'Computer Science', '7.2', '10', '0'), (6066, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (6067, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2008', '780', '560', '1340', '4', '108', 'Aeronautical Society of India', 'Aerospace', '58.27', '100', '0'), (6068, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (6069, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '150', '318', '2.5', '95', 'SRM', 'EEE', '9.15', '10', '0'), (6070, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (6071, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (6072, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '163', '148', '311', '3', '100', 'Sardar Vallabhbhai National Institute of Technology', 'Electrical Engineering', '7.84', '10', '0'), (6073, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (6074, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '149', '313', '4', '104', 'VTU', 'Instrumentation Tech.', '78', '100', '24'), (6075, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (6076, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '100', 'Jain University', 'Electronics & Communication', '71.14', '100', '0'), (6077, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '2.5', 'None', 'JNTU', 'CSE', '78', '100', '0'), (6078, '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (6079, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (6080, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (6081, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '610', '1400', '3', '98', 'NIT Warangal', 'Electronics and Communication Engineering', '7.64', '10', '0'), (6082, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '99', 'MU', 'EE', '72', '100', '0'), (6083, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (6084, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (6085, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (6086, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '165', '149', '314', '3', 'None', 'KLEF UNIVERSITY', 'EEE', '7.01', '10', '0'), (6087, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (6088, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '159', '146', '305', '3', '95', 'D j Sanghvi', 'Biomedical engineering', '3.5', '4', '0'), (6089, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3.5', 'None', 'Manipal Institue of Technology', 'ECE', '8.53', '10', '0'), (6090, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (6091, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2015', '159', '149', '308', '3', '95', 'Vaish College of Engineering', 'IT', '73.1', '100', '30'), (6092, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '140', '301', '2.5', '99', 'VTU', 'ECE', '9.53', '10', '12'), (6093, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (6094, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '147', '309', '4', '104', 'Anna University', 'EIE', '8.03', '10', '0'), (6095, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '105', 'SASTRA', 'B.tech Mechatronics', '8', '10', '18'), (6096, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (6097, '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '157', '162', '319', '4', '105', 'Nirma Institute of Technology', 'Computer Engineering', '8.06', '10', '24'), (6098, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '150', '306', '3', '104', 'Pune University', 'Electrical Engineering', '59.39', '100', '0'), (6099, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '141', '300', '3', 'None', 'RMK Engineering College', 'Electronics and Communication', '76', '100', '0'), (6100, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (6101, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (6102, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (6103, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'VTU', 'ECE', '76.2', '100', '0'), (6104, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '162', '152', '314', '2.5', '100', 'ANU', 'ECE', '74.7', '100', '0'), (6105, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '160', '159', '319', '4.5', '110', 'Anna University', 'ECE', '86', '100', '0'), (6106, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (6107, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '102', 'Mepco Schlenk Engineering College', 'Computer Science', '8.21', '10', '0'), (6108, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20'), (6109, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '65', '100', '0'), (6110, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (6111, '6', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '158', '152', '310', '3.5', '106', 'University of Pune', 'Electronics and Telecommunications', '58', '100', '92'), (6112, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '136', '300', '2.5', '85', 'GITAM', 'CSE', '7.87', '10', '0'), (6113, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (6114, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '161', '144', '305', 'None', '96', 'Vasavi College of Engineering', 'it', '75', '100', '0'), (6115, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6116, '6', 'Reject', 'MS', 'microelectronics', 'Spring ', '2012', '750', '380', '1130', '3.5', '80', 'MBM Jodhpur India', 'ECE', '71', '100', '0'), (6117, '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2006', '800', '530', '1330', '4.5', '293', 'G. H. Patel College of Engineering and Technology', 'Chemical Engineering', '8.35', '10', '0'), (6118, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '148', '317', '3', '104', 'NIT Tirchy', 'Electronics and Communication', '7.77', '10', '36'), (6119, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'BNMIT', 'Electronics and communication', '71.5', '100', '0'), (6120, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (6121, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '155', '312', '3.5', '108', 'Thiagarajar College of engineering', 'ECE', '8.4', '10', '0'), (6122, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (6123, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (6124, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (6125, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '104', 'S.J.B. Institute of Technology', 'Information Science and Engineering', '74.5', '100', '24'), (6126, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3', '90', 'BITS Dubai', 'ECE', '7.7', '10', '0'), (6127, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '163', '149', '312', '3', '109', 'CBIT', 'Ece', '75', '100', '0'), (6128, '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (6129, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (6130, '6', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2015', '161', '147', '308', '4', '94', 'SRM', 'EEE', '7.01', '10', '18'), (6131, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (6132, '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '158', '153', '311', '3.5', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engg', '72', '100', '0'), (6133, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '144', '305', '3', '93', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.75', '10', '0'), (6134, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (6135, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (6136, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (6137, '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '440', '1180', '3', '106', 'MU', 'Computer Engineering', '56.05', '100', '0'), (6138, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '148', '313', '3', '94', 'BITS Pilani', 'Electronics and Instrumentation', '5.81', '10', '0'), (6139, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (6140, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', '3.5', '111', 'VTU', 'Electronics and Communication', '8.2', '10', '32'), (6141, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '149', '312', '3', '91', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Tele-communication', '7.93', '10', '0'), (6142, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '97', 'SJCE', 'Electronics and Communication', '63', '100', '0'), (6143, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (6144, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6145, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '147', '311', '3', '94', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics & Communication', '8.91', '10', '20'), (6146, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6147, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '600', '1300', '4', '106', 'Amrita School of Engineering', 'Electronics & Communication', '7.56', '10', '0'), (6148, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (6149, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VTU', 'ECE', '74.16', '100', '58'), (6150, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '163', '152', '315', '3', '104', 'Anna University', 'Electronics and Communication Engineering', '9.28', '10', '36'), (6151, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (6152, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '155', '319', '3.5', '110', 'MGIT JNTU', 'ECE', '75.2', '100', '0'), (6153, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '800', '490', '1290', '3', 'None', 'NIT Warangal', 'eee', '7.92', '10', '0'), (6154, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '158', '147', '305', '3', '101', 'UVCE', 'ECE', '81.57', '100', '0'), (6155, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3.5', '97', 'RNSIT', 'Computer Science & Engineering', '81', '100', '0'), (6156, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (6157, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '3', '104', 'University of Madras', 'EEE', '81', '100', '0'), (6158, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3', '103', 'Punjab Technical University', 'CSE', '75', '100', '0'), (6159, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '154', '316', '3.5', '110', 'Jamia Millia Islamia', 'Electronics and Communication', '9.37', '10', '0'), (6160, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (6161, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '156', '147', '303', '4', '90', 'Velammal Engineering College', 'Department of Electronics and Instrumentation', '3.96', '5', '0'), (6162, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (6163, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.23', '10', '0'), (6164, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '620', '530', '1150', '4', '103', 'Pune University', 'Information technology', '63', '100', '0'), (6165, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '153', '319', '4', '105', 'GLA Institute of Technology and Management', 'Electronics and Communication Engineering', '73', '100', '0'), (6166, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '150', '304', '3', '91', 'VTU', 'Electronics and Communication', '73', '100', '0'), (6167, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '159', '327', '4', '110', 'UPTU', 'ECE', '73.68', '100', '0'), (6168, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0'), (6169, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2016', '161', '147', '308', '4', '105', 'JNTU', 'ECE', '81.6', '100', '0'), (6170, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (6171, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '530', '1230', '3.5', '104', 'None', 'Information Technology', '0', '100', '0'), (6172, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (6173, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (6174, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (6175, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (6176, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (6177, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (6178, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '154', '318', '4', '108', 'UPTU', 'Electronics and Communication Engineering', '74.2', '100', '39'), (6179, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (6180, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (6181, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (6182, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (6183, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '159', '326', '4.5', '117', 'BVDU', 'Electronics & Telecommunication', '63', '100', '0'), (6184, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '156', '149', '305', '3.5', '100', 'SRR Engineering College', 'EEE', '7.94', '10', '0'), (6185, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '3', '102', 'GITAM', 'E C E', '7.4', '10', '0'), (6186, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '470', '1210', '3', '110', 'Bharati Vidyapeeth', 'ECE', '67', '100', '0'), (6187, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '2.5', '89', 'PESIT', 'Telecommunication', '65', '100', '0'), (6188, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (6189, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (6190, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (6191, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '145', '303', '3.5', '95', 'VTU', 'E&C;', '84.55', '100', '0'), (6192, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '149', '313', '3.5', '100', 'SRM', 'eee', '8.637', '10', '0'), (6193, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '100', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (6194, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '157', '145', '302', '3.5', '99', 'None', '0', '82', '100', '0'), (6195, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '153', '313', '4', '108', 'VTU', 'Electrical and electronics', '70', '100', '0'), (6196, '6', 'Reject', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (6197, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '144', '298', 'None', '89', 'VTU', 'ECE', '78', '100', '0'), (6198, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '550', '1270', '3', '90', 'Madras Institute of Technology', 'ECE', '8.9', '10', '0'), (6199, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (6200, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '550', '1290', '3.5', '95', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '65.64', '100', '0'), (6201, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (6202, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (6203, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '3.5', '110', 'St. Peters University', 'computer science', '8.5', '10', '17'), (6204, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (6205, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '156', '322', '3.5', '109', 'Anna University', 'Electrical & Electronics Engineering', '7.79', '10', '0'), (6206, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '160', '146', '306', '3.5', '102', 'None', 'Computer Science', '76.6', '100', '27'), (6207, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (6208, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '145', '306', '3', '89', 'Rajasthan University', 'Electronics and Communication Engineering', '72', '100', '55'), (6209, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '530', '1230', '3', '95', 'SSN College of Engineering', 'EEE', '80', '100', '0'), (6210, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '148', '314', '3', '100', 'Pune University', 'Electronics & Telecom', '70', '100', '0'), (6211, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (6212, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (6213, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', 'None', 'IIT Kanpur', 'Industrial (M.tech)', '9.5', '10', '0'), (6214, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '450', '1250', '4', '109', 'Coimbatore Insitute of Technology', 'EEE', '8.22', '10', '0'), (6215, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (6216, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6217, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '4', '100', 'CMRIT', 'Telecommunication', '77', '100', '0'), (6218, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '166', '328', '5', '119', 'SRM', 'EEE', '8.2', '10', '0'), (6219, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '151', '321', '4', '105', 'BITS Pilani', 'BE(Hons). Mechanical', '6.55', '10', '0'), (6220, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '490', '1290', '3', '102', 'MU', 'Mechanical', '55', '100', '0'), (6221, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (6222, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '148', '309', '3.5', 'None', 'MU', 'Computer', '68', '100', '0'), (6223, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (6224, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '142', '307', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'computer Science and Engineering', '78', '100', '0'), (6225, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '148', '308', '3', '100', 'Nagpur University', 'ELECTRONICS', '65', '100', '0'), (6226, '6', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (6227, '6', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (6228, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '141', '298', '3', '92', 'MDU', 'ECE', '70', '100', '0'), (6229, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6230, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '153', '316', '3', 'None', 'Jaypee Institute of Information Technology', 'IT', '75', '100', '17'), (6231, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (6232, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (6233, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '4', '104', 'NIT Calicut', 'Electronics and Communication Engineering', '6.8', '10', '0'), (6234, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '560', '1350', '3', 'None', 'VIT University', 'ECE', '8', '10', '0'), (6235, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (6236, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '143', '302', '3', 'None', 'JNTU', 'Electronics and Communication', '75.2', '100', '27'), (6237, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (6238, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '106', 'Pune University', 'Computer Engg.', '60.23', '100', '0'), (6239, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (6240, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (6241, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '168', '145', '313', '3', '93', 'NIT', 'ECE', '7.45', '10', '28'), (6242, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '520', '1260', '3', '99', 'MSRIT', 'E&C;', '74', '100', '0'), (6243, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (6244, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '143', '303', '2.5', '87', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '7.86', '10', '0'), (6245, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '68', '100', '0'), (6246, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (6247, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '147', '309', '3.5', '99', 'VTU', 'Electroncis and communication', '72', '100', '0'), (6248, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6249, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '4', 'None', 'National Institute of Engineerint VTU', 'Information Science', '0', '0', '0'), (6250, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '93', 'MAIT GGSIPU', 'Electrical and Electronics Engineering', '71.07', '100', '0'), (6251, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '106', 'MU', 'IT', '58', '100', '0'), (6252, '6', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (6253, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', '2.5', '103', 'Anna University', 'Instrumentation and Control', '8.7', '10', '0'), (6254, '6', 'Reject', 'MS', 'Construction Management', 'Fall ', '2014', '168', '149', '317', '4', 'None', 'IIT Roorkee', 'Architecture and Planning', '6.22', '10', '61'), (6255, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '154', '314', '4.5', '104', 'NIT Warangal', 'Electronics & Communication Engineering', '7.3', '10', '0'), (6256, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (6257, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (6258, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '153', '315', '3', '99', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communications', '8.52', '10', '0'), (6259, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (6260, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '3', 'None', 'Vignan Institute of Technology and Science', 'School of Electronics', '86', '100', '0'), (6261, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '153', '316', '3.5', '110', 'Anna University', 'Electronics and Communication', '81.5', '100', '0'), (6262, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '141', '304', '3', '87', 'JNTU', 'Information Technology', '81', '100', '20'), (6263, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '3.5', '102', 'Anna University', 'ece', '71', '100', '0'), (6264, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '13', '163', '153', '316', '4', '109', 'University of Pune', 'E&C;', '69.5', '100', '0'), (6265, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (6266, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (6267, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '4', '100', 'Rajasthan Technical University', 'Electronics Instrumentation & Control Engg', '67', '100', '0'), (6268, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (6269, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3', '95', 'GVP Vishakapatnam', 'Information Technology', '71', '100', '0'), (6270, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2016', '162', '156', '318', '3.5', '105', 'Maharishi Dayanand University', 'Electronics And Communication', '69', '100', '0'), (6271, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '115', 'VJTI', 'ELECTRICAL', '7.3', '10', '0'), (6272, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (6273, '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical and Electronics', '67', '100', '0'), (6274, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '530', '1290', '3.5', '100', 'VIT', 'electronics and communication', '8.07', '10', '0'), (6275, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (6276, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '147', '306', '3.5', '96', 'University of Mumbai', 'Electronics and Telecommunication', '58', '100', '0'), (6277, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (6278, '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6279, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '270', 'MSRIT', 'CSE', '75', '100', '0'), (6280, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24'), (6281, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', 'None', 'Thapar University', 'ECE', '8.8', '10', '0'), (6282, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (6283, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (6284, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '145', '301', '3', '94', 'Mahrishi Dayanand University', 'Electrical', '68', '100', '0'), (6285, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '3.5', '99', 'Coimbatore Insitute of Technology', 'CSE', '7.5', '10', '0'), (6286, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (6287, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3', '105', 'Madras Institute of Technology', 'Information Technology', '7.3', '100', '0'), (6288, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6289, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '152', '321', '2', '101', 'BITS Pilani', 'ELECTRONICS & COMMUNICATIONS', '8.58', '10', '0'), (6290, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3', '100', 'Institute of Technical Education and Research', 'Computer Science', '7.35', '10', '0'), (6291, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (6292, '6', 'Reject', 'MS', 'Subsea Engineering', 'Fall ', '2014', '168', '147', '315', '2.5', '97', 'Panjab University', 'Mechanical', '76', '100', '20'), (6293, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (6294, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (6295, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '155', '314', '3.5', '106', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.84', '10', '20'), (6296, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Spring ', '2013', '760', '470', '1230', '3', '102', 'SRM', 'Biomedical Engineering', '7.912', '10', '0'), (6297, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (6298, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6299, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '890', '450', '1340', '3', '103', 'SVCE', 'IT', '70', '100', '0'), (6300, '6', 'Reject', 'MS', 'software engineering', 'Spring ', '2013', '720', '350', '1070', 'None', '104', 'MU', 'Masters of Engg I.T.', '71', '100', '0'), (6301, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (6302, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (6303, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '158', '317', '3.5', '115', 'COEP', 'E&TC;', '6.37', '10', '14'), (6304, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (6305, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '149', '311', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communications Engg.', '7.54', '10', '0'), (6306, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '146', '309', '3.5', '102', 'Pune University', 'Mechanical Engineering', '70', '100', '0'), (6307, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '96', 'Manipal Institue of Technology', 'ECE', '8.85', '10', '0'), (6308, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '460', '1240', '3.5', '104', 'Sinhgad College of Engineering', 'Computer Science', '65', '100', '0'), (6309, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (6310, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2007', '550', '790', '1340', '4', '267', 'MU', 'Electronics', '59', '100', '0'), (6311, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '156', '314', '4', '113', 'MU', 'Chemical Engineering', '56.45', '100', '25'), (6312, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (6313, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (6314, '6', 'Reject', 'MS', 'EE / CS', 'Fall ', '2012', '151', '158', '309', '4.5', '105', 'VTU', 'EEE', '74', '100', '0'), (6315, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '160', '150', '310', '3', '105', 'M N M jain Engineering College', 'Electronics and Communication', '70', '100', '0'), (6316, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '145', '300', '3.5', '98', 'CMRIT', 'Electronics and Communication', '79.3', '100', '0'), (6317, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '3', '100', 'NMAM Institute of Technology Nitte', 'Electronics and Communication', '9.09', '10', '40'), (6318, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '156', '157', '313', '3', '108', 'Walchand College Of Engineering', 'Electronics and Telecommunications', '69.4', '100', '9'), (6319, '6', 'Reject', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '730', '560', '1290', '4', '112', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.94', '10', '0'), (6320, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3.5', '105', 'PEC University of Technology', 'Electrical Engineering', '7.6', '10', '0'), (6321, '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (6322, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '162', '317', '4', '112', 'BITS Dubai', 'Electronics and Communication Engineering (ECE)', '8.81', '10', '0'), (6323, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '87', 'VIT Pune', 'Mech Engg', '65', '100', '0'), (6324, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Sri Sairam Engineering College', 'Electronics and Communication Engineering', '7.4', '10', '0'), (6325, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '3', '100', 'Pune University', 'Computer Science', '64', '100', '0'), (6326, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', '3', '102', 'Govind Ballabh Pant Engg College', 'Electronics and Communication', '72', '100', '29'), (6327, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '100', 'BITS Pilani', 'Electrical and Electronics', '7.88', '10', '0'), (6328, '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Spring ', '2016', '170', '162', '332', '3.5', '115', 'University of Pune', 'Computer Engineering', '62', '100', '37'), (6329, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6330, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '149', '305', '3', '8', 'SASTRA', 'EEE', '8.13', '10', '0'), (6331, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (6332, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (6333, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '670', '390', '1060', '3', '108', 'VTU', 'Computer Science', '74.5', '100', '0'), (6334, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (6335, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (6336, '6', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2013', '166', '159', '325', '4', '115', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.56', '10', '0'), (6337, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '3.5', '94', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communication', '7.3', '10', '0'), (6338, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '152', '312', '3', '102', 'nit raipur', 'electrical', '7.12', '10', '0'), (6339, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '400', '1200', '2.5', '100', 'VIT University', 'ECE', '8.51', '10', '0'), (6340, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (6341, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '158', '324', '3', '95', 'Vignan Institute of Technology and Science', 'electronics and communications', '70.6', '100', '0'), (6342, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '4', '112', 'Sri Jayachamarajendra College of Engineering', 'Electronics and comm', '77', '100', '0'), (6343, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', '3', 'None', 'RGPV', 'Mechanical', '68', '100', '0'), (6344, '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '162', '158', '320', '3.5', 'None', 'BITS Pilani', 'Electrical and Electronics', '7.75', '10', '0'), (6345, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '152', '316', '3.5', '101', 'Ambedkar Institute of technology', 'ECE', '77.77', '100', '0'), (6346, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '3', '97', 'Jaypee Institute of Information Technology', 'Computer Science', '78', '100', '30'), (6347, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (6348, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '148', '311', '3', '99', 'SVITS', 'CSE', '65', '100', '30'), (6349, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '155', '321', '2.5', '109', 'NIT ALLAHABAD', 'ece', '7.86', '10', '66'), (6350, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3', '103', 'Amity University', 'CSE', '7.2', '10', '0'), (6351, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (6352, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (6353, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (6354, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall', 'None', '159', '145', '304', '4.5', '100', 'VTU', 'mechanical', '72', '100', '0'), (6355, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '89', 'CET Odisha', 'CSE', '8', '10', '0'), (6356, '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '149', '316', '3.5', '101', 'Biju Patnaik University of Technology', 'Electrical and Electronics engineering', '7.86', '10', '0'), (6357, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (6358, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (6359, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (6360, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (6361, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '149', '310', '3', '95', 'Pune University', 'Computer Engg.', '65.15', '100', '0'), (6362, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '145', '301', '3.5', '105', 'JNTU', 'CSE', '73.2', '100', '0'), (6363, '6', 'Reject', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (6364, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (6365, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6366, '6', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (6367, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '152', '319', '3', '111', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '14'), (6368, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (6369, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '520', '1320', '4.5', '273', 'SPCE', 'Electrical', '65', '100', '0'), (6370, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '630', '1410', '3', '100', 'Sathyabama University', 'ECE', '75', '100', '0'), (6371, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (6372, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '94', 'JNTU', 'CSE', '68', '100', '0'), (6373, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (6374, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '620', '1340', '3.5', '96', 'SRM', 'Computer Science', '9.35', '10', '0'), (6375, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '159', '152', '311', '3.5', 'None', 'Anna University', 'ECE', '74', '100', '0'), (6376, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (6377, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (6378, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '101', 'Anna University', 'Electronics and Communication Engineering', '7.6', '10', '0'), (6379, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '150', '153', '303', '3.5', '99', 'JNTU', 'electronics and instrumentation', '75', '100', '0'), (6380, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '153', '147', '300', '4', 'None', 'Amrita School of Engineering', 'ECE', '6.33', '10', '0'), (6381, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (6382, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (6383, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '159', '148', '307', '4', '103', 'SRM', 'ECE', '8.06', '10', '0'), (6384, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '154', '315', '3', '105', 'VTU', 'Telecommunication', '7.82', '10', '0'), (6385, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '4', '114', 'VTU', 'Information Science', '60', '100', '0'), (6386, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (6387, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '147', '313', '3', '86', 'Pune University', 'e&tc;', '8.66', '10', '0'), (6388, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '146', '306', '3', '104', 'University of Pune', 'Electronics and Telecommunicatio', '71', '100', '0'), (6389, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '149', '304', '3.5', '110', 'VTU', 'Computer Science', '78', '100', '0'), (6390, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2014', '164', '159', '323', '4', '115', 'CUSAT', 'ECE', '65.23', '100', '6'), (6391, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '144', '302', '3', 'None', 'MREC(JNTUH)', 'ECE', '79', '100', '0'), (6392, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6393, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (6394, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '151', '317', '4', '107', 'PESIT', 'Electronics and Communication Engineering', '7.7', '10', '28'), (6395, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (6396, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (6397, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '161', '318', '3', '95', 'Pune University', 'ECE', '7.35', '10', '0'), (6398, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (6399, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '3.5', '89', 'GITAM', 'ELECTRONICS AND COMMUNICATION', '8.36', '10', '0'), (6400, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '460', '1250', '3', '93', 'Coimbatore Insitute of Technology', 'CSE', '7.87', '10', '0'), (6401, '6', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '157', '152', '309', '2.5', '99', 'PESIT', 'Electronics and Communication', '79', '100', '0'), (6402, '6', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2011', '800', '580', '1380', '4', '114', 'NITK Surathkal', 'Electrical & electronics', '6.99', '10', '0'), (6403, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '440', '1200', '3', '90', 'NITK Surathkal', 'Computer Engineering', '71', '100', '0'), (6404, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (6405, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (6406, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (6407, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6408, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (6409, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (6410, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0'), (6411, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (6412, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '152', '310', '5', '109', 'Sathyabama University', 'EEE', '8.07', '10', '0'), (6413, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '147', '308', '3', '97', 'Dayananda Sagar College of Engineering', 'Telecommunication', '75', '100', '0'), (6414, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (6415, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (6416, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6417, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '370', '1080', '3.5', '100', 'Pune University', 'Electronics Engineering', '58.13', '100', '0'), (6418, '6', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2013', '163', '153', '316', '3', '104', 'BNMIT', 'ECE', '80', '100', '0'), (6419, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (6420, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (6421, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '520', '1300', '3', '277', 'K J Somaiya College of Engiineering', 'Computer Engineering', '53', '100', '0'), (6422, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (6423, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (6424, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (6425, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '610', '1410', '3', '107', 'University of Mumbai', 'Computer Engineering', '61.4', '100', '24'), (6426, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (6427, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '162', '329', '4.5', '115', 'Datta Meghe College of Engineering', 'Electronics', '59.4', '100', '0'), (6428, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6429, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '164', '158', '322', '4', '108', 'Gujarat Technological University', 'Computer Engineering', '7.71', '10', '0'), (6430, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (6431, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '149', '313', '3', '109', 'MU', 'Instrumentation', '63.2', '100', '0'), (6432, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2013', '163', '155', '318', '3.5', '115', 'Shivaji University', 'Information Technology', '65', '100', '0'), (6433, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (6434, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '155', '149', '304', '3', '89', 'PSG College of Technology', 'Mechanical Engineering', '7.96', '10', '0'), (6435, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '151', '308', 'None', '95', 'VTU', 'EEE', '67', '100', '22'), (6436, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (6437, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '152', '154', '306', '3', '108', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.6', '10', '0'), (6438, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '490', '1220', '3', '102', 'VTU', 'Electronics and Communication', '66', '100', '0'), (6439, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (6440, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '151', '319', '3', '99', 'Nirma Institute of Technology', 'Eletronics and Communication', '7.52', '10', '0'), (6441, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (6442, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (6443, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (6444, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '3', '101', 'GITAM', 'ECE', '8.63', '10', '0'), (6445, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '100', 'CVRCE', 'Electronics and Instrumentation', '70.01', '100', '0'), (6446, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (6447, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '165', '154', '319', '4', '110', 'Pune University', 'Computer', '53', '100', '0'), (6448, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (6449, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '102', 'Amrita School of Engineering', 'EEE', '7.55', '10', '41'), (6450, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '153', '319', '4', '106', 'VTU', 'Electronics & Communication', '84', '100', '24'), (6451, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '3', '107', 'VTU', 'Electronics & Communication', '81.5', '100', '24'), (6452, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', 'None', 'JNTU', 'ELECTRONICS & COMMUNICATION ENGINEERING', '73', '100', '0'), (6453, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (6454, '6', 'Reject', 'MS', 'energy', 'Fall ', '2012', '159', '144', '303', '3', '86', 'G.B.P.U.A.T Pantnagar', 'Electrical', '7.87', '10', '0'), (6455, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '103', 'JNTU', 'CSE', '70', '100', '0'), (6456, '6', 'Reject', 'MS', 'Computer Networks', 'Fall ', '2013', '162', '154', '316', '4.5', '112', 'VTU', 'Telecommunication', '81.059', '100', '0'), (6457, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'VTU', 'Electronics & Communication', '74.06', '100', '25'), (6458, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '790', '580', '1370', '2.5', '102', 'SRM', 'Computer Science', '8', '10', '0'), (6459, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '146', '308', '3.5', '96', 'MU', 'Electronics', '67.15', '100', '0'), (6460, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (6461, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (6462, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (6463, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '157', '325', '3.5', '105', 'Shri Vaishnav Institute Of Technology and Science', 'Electronics and Communication', '70', '100', '0'), (6464, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (6465, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (6466, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '145', '305', '3', '98', 'Anna University', 'ECE', '8.29', '10', '3'), (6467, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (6468, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (6469, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6470, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6471, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '104', 'Jaypee Institute of Information Technology', 'CSE', '7.4', '10', '0'), (6472, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (6473, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '93', 'Amrita School of Engineering', 'Electronic and Instrumentation', '8.01', '10', '0'), (6474, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '145', '308', '3', '94', 'LJIET', 'Mechanical', '6.69', '10', '0'), (6475, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (6476, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'NIT Karnataka', 'EEE', '6.76', '10', '0'), (6477, '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (6478, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '490', '1230', '3.5', '97', 'Vidyalankar Institute of Technology', 'ETRX', '62', '100', '0'), (6479, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '147', '306', '3', '99', 'BVBCET', 'Electronics and Communication', '8.52', '10', '0'), (6480, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6481, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '4', '107', 'MU', 'Electrical', '64', '100', '18'), (6482, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'SPCE', 'Electrical', '62', '100', '0'), (6483, '6', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Fall ', '2015', '160', '154', '314', '4', '112', 'MU', 'Instrumentation Engineeering', '65.55', '100', '0'), (6484, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '146', '310', '3', '110', 'P.T.U.', 'ECE', '75', '100', '0'), (6485, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '680', '560', '1240', '3', '86', 'Coimbatore Insitute of Technology', 'EEE', '8.41', '10', '0'), (6486, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (6487, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (6488, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (6489, '6', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '93', 'VJTI', 'COMPUTER', '6.5', '10', '0'), (6490, '6', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2015', '161', '154', '315', '3', '102', 'Anna University', 'Chemical Engineering', '7.51', '10', '0'), (6491, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '158', '321', 'None', 'None', 'LNMIIT', 'ECE', '8.1', '10', '0'), (6492, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '141', '302', '3', 'None', 'U.P.T.U.', 'Electrical Engineering', '74.32', '100', '30'), (6493, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (6494, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2006', '800', '650', '1450', '5', '287', 'Nirma Institute of Technology', 'ec', '73', '100', '0'), (6495, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '330', '1130', '3', '84', 'Velammal Engineering College', 'Information technology', '71', '100', '0'), (6496, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (6497, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '3.5', '107', 'MU', 'Computer Engineering', '58', '100', '34'), (6498, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '3', '86', 'MU', 'Electronics And Telecommunication', '71', '100', '0'), (6499, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '156', '153', '309', '3.5', '107', 'VTU', 'Electronics and Communication', '67', '100', '57'), (6500, '6', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '157', '147', '304', '3', '112', 'VTU', 'Electronics and communication', '82.6', '100', '0'), (6501, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (6502, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '97', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.82', '10', '0'), (6503, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (6504, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3.5', '109', 'MIT', 'Electronics', '6.5', '100', '0'), (6505, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '167', '152', '319', '3', '101', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '0'), (6506, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (6507, '6', 'Reject', 'MS', 'physics', 'Fall ', '2013', '163', '156', '319', '3.5', '100', 'Guru Gobind Singh Indraprashta University', 'ECE', '72', '100', '0'), (6508, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '142', '305', '3', '89', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.01', '10', '0'), (6509, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '158', '316', '4', '100', 'PICT', 'Information Technology', '3.56', '4', '33'), (6510, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (6511, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (6512, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '114', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (6513, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (6514, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (6515, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '147', '307', '3', '101', 'Anna University', 'EEE', '8', '10', '0'), (6516, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '580', '1320', '4', '104', 'MSRIT', 'Chemical Engineering', '7.67', '100', '0'), (6517, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '149', '319', '3.5', '111', 'Amrita School of Engineering', 'EIE', '7.7', '10', '0'), (6518, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '93', 'SASTRA', 'EEE', '8.36', '10', '0'), (6519, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '150', '309', '3', '96', 'VTU', 'ECE', '76', '100', '0'), (6520, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (6521, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '151', '311', '3', '88', 'JNTU', 'EE', '78', '100', '0'), (6522, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '141', '305', '3', '81', 'Vardhaman', 'ece', '69', '100', '0'), (6523, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '144', '300', '3.5', '94', 'B.S.A.Crescent Engineering College', 'Electrical and Electronics Engineering', '69', '100', '0'), (6524, '6', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2015', '156', '161', '317', 'None', '117', 'Rajiv Gandhi Technical University', 'Information Technology', '67', '100', '0'), (6525, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (6526, '6', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (6527, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (6528, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '155', '316', '3.5', '104', 'Sardar Patel University', 'Electronics', '7.47', '10', '53'), (6529, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '142', '300', '3', '94', 'MSRIT', 'TC', '8.1', '10', '0'), (6530, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (6531, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '3', '90', 'WBUT', 'Electrical Engineering', '8.71', '10', '0'), (6532, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (6533, '6', 'Reject', 'MS', 'Computer Engineering', 'Summer ', '2016', '163', '153', '316', '3.5', '102', 'IIIT Hyderabad', 'ECE', '8.4', '10', '0'), (6534, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '780', '590', '1370', '3', '98', 'BITS Pilani', 'Electrical and Electronics', '7.1', '10', '0'), (6535, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (6536, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Sir MVIT', 'Telecommunication', '68.3', '100', '0'), (6537, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '95', 'JNTU', 'Electronics & Communications Engineering', '74.83', '100', '0'), (6538, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '153', '316', '3.5', '104', 'SVCE', 'Computer Science', '6.89', '10', '0'), (6539, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (6540, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '2.5', '91', 'Andhra University', 'E E E', '71', '100', '0'), (6541, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '145', '303', '2.5', '105', 'None', 'IT', '7.57', '10', '0'), (6542, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '157', '319', '3', '116', 'MU', 'Mechanical', '63', '100', '0'), (6543, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '159', '150', '309', '2.5', '87', 'JNTU', 'Mechanical engg', '65', '100', '0'), (6544, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '142', '301', '3', 'None', 'SVNIT', 'Electrical Engineering', '6.92', '10', '0'), (6545, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '152', '151', '303', '3', '98', 'University of Mumbai', 'Production Engineering', '71', '100', '24'), (6546, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '550', '1350', '4.5', '115', 'BITS Hyderabad', 'Electronics and Communication Engineering', '6.5', '10', '0'), (6547, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', 'None', 'NMIMS', 'Electronics and Telecommunication', '3.55', '4', '0'), (6548, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '470', '1230', '3.5', '99', 'Panjab University', 'University Institute of Engineering and Technology', '70.5', '100', '0'), (6549, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (6550, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2013', '166', '159', '325', '4', '113', 'Amrita Coimbatore', 'ECE', '7.73', '10', '0'), (6551, '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2018', '-1', '-1', '-1', '-1', '100', 'Jaypee University of Engineering and Technology', 'Computer Science', '77', '100', '24'), (6552, '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2017', '163', '145', '308', '4.5', '103', 'Anna University', 'Information Technology', '8.07', '10', '0'), (6553, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', '2018', '150', '163', '313', '4', '98', 'SRM University', 'Mechanical Engineering', '9', '10', '0'), (6554, '7', 'Reject', 'MS', 'Computer Science', 'Fall', '2018', '150', '133', '283', '-1', '-1', 'VR Siddhartha engineering college', 'Computer Science', '7.88', '10', '0'), (6555, '7', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '154', '135', '289', '2', '87', 'Kiit', 'Mechanical Engineering', '7', '10', '38'), (6556, '8', 'Admit', 'MS', 'Engineering Management', 'Fall', '2019', '156', '138', '294', '3.5', '-1', 'KL University', 'Chemical Engineering', '6.53', '10', '13'), (6557, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (6558, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (6559, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '162', '329', '4', '110', 'University of Pune', 'E&TC;', '63.75', '100', '0'), (6560, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (6561, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (6562, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (6563, '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '160', '157', '317', '3.5', '111', "St.Peter's Engineering College", 'Electronics & Instrumentation', '75', '100', '0'), (6564, '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (6565, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'Assam Engineering College', 'Civil Engineering', '79.6', '100', '0'), (6566, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (6567, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '152', '320', '3', 'None', 'Osmania University', 'Mechanical', '71.2', '100', '22'), (6568, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.9', '10', '48'), (6569, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '165', '145', '310', '3.5', '108', 'SVNIT', 'Electronics', '8.7', '10', '0'), (6570, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '153', '150', '303', '3.5', '106', 'None', '0', '0', '0', '0'), (6571, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '148', '314', '4', '102', 'Maharishi Dayanand University', 'ECE', '77.74', '100', '0'), (6572, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (6573, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '112', 'Pune University', 'Mechanical Engineering', '56.9', '100', '12'), (6574, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', '114', 'PESIT', 'Information Science', '8.32', '10', '0'), (6575, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '110', 'VIT University', 'Mechanical Engineering', '8.25', '10', '0'), (6576, '9', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'UPTU', 'Computer Science', '65', '100', '0'), (6577, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (6578, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (6579, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (6580, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (6581, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (6582, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (6583, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (6584, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '92', 'West Bengal University Of Technology', 'Automobile', '7.55', '10', '0'), (6585, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3.5', '105', 'VTU', 'Computer Science', '71', '100', '0'), (6586, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (6587, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (6588, '9', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (6589, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (6590, '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '1340', '560', '1900', '3', 'None', 'COEP', 'Computer Science', '7.64', '10', '0'), (6591, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '150', '320', '3', '105', 'BITS Pilani', 'Mechanical', '8.62', '10', '24'), (6592, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '152', '318', '3.5', '108', 'PESIT', 'Mechanical', '9.13', '10', '12'), (6593, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '164', '145', '309', '3', '95', 'Andhra University', 'Mechanical Engineering', '7.56', '10', '0'), (6594, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '91', 'University of Pune', 'Mechanical Engineering', '59.3', '100', '0'), (6595, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (6596, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '3', 'None', 'YCCE', 'mechanical', '64', '100', '0'), (6597, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (6598, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3.5', '110', 'Sri Venkateswara College of Engineering', 'Mechanical', '7.2', '10', '0'), (6599, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'CEG', 'Mechanical engineering', '7', '10', '0'), (6600, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '163', '330', 'None', 'None', 'R V College of Engineering', '0', '8.63', '10', '0'), (6601, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (6602, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '147', '308', '3.5', '98', 'MU', 'Mechanical Engineering', '57', '100', '0'), (6603, '9', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (6604, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'COEP', 'Instrumentation and Control', '8.16', '10', '0'), (6605, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (6606, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '4', '114', 'GITAM', 'CS', '7.6', '10', '0'), (6607, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (6608, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (6609, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (6610, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '155', '159', '314', '4', '114', 'SRM', 'Mechanical Engineering', '7.484', '10', '30'), (6611, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (6612, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (6613, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (6614, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (6615, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (6616, '9', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', '162', '149', '311', '3.5', '105', 'Anna University', 'Electronics and Instrumentation', '7.6', '10', '18'), (6617, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (6618, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '780', '520', '1300', '3', '98', 'SRM', 'ECE', '7', '10', '0'), (6619, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '166', '151', '317', '3.5', '103', 'Anna University', 'Mechanical', '86', '100', '0'), (6620, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '590', '1320', '3.5', '105', 'SRM', 'Mechanical Engineering', '9.2', '10', '0'), (6621, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '108', 'Anna University', 'Mathematics and Computer Applications', '8.79', '10', '0'), (6622, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (6623, '9', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (6624, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'Anna University', 'EEE', '6.45', '10', '0'), (6625, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '156', '142', '298', '3', '92', 'Pune University', 'Production Engineering', '0', '0', '0'), (6626, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (6627, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '109', 'NIT Tirchy', 'Mechanical Engineering', '7.04', '10', '11'), (6628, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '650', '1400', '3.5', '104', 'SBMJCE', 'ECE', '65', '100', '0'), (6629, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '3.5', '111', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '7.21', '10', '0'), (6630, '9', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (6631, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (6632, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '154', '321', '4', '103', 'LNMIIT', 'cs', '6.33', '10', '0'), (6633, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '740', '400', '1140', '4', '83', 'VIT', 'Mechanical', '7.44', '10', '0'), (6634, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '3', '104', 'UPTU', 'Computer Science', '67', '100', '0'), (6635, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '100', 'GGSIPU', 'Mechanical and Automation Engineering', '77.7', '100', '0'), (6636, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '154', '312', '3', '109', 'GGSIPU', 'Computer Science', '78', '100', '0'), (6637, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', '3', '93', 'Pune University', 'IT', '64', '100', '0'), (6638, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (6639, '9', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (6640, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (6641, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '4.5', '108', 'Amrita School of Engineering', 'EIE', '7.45', '10', '0'), (6642, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (6643, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (6644, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (6645, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (6646, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (6647, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '490', '1280', '3.5', '96', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Information Technology', '81', '100', '0'), (6648, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (6649, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '800', '520', '1320', '4', '290', 'Crescent Engineering College', 'Mechanical Engineering', '76', '100', '0'), (6650, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (6651, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', 'None', '93', 'ESPOL - ECU', 'Elect & Comput Science', '7.52', '10', '0'), (6652, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '149', '319', '3', '96', 'NIT Bhopal', 'CIVIL', '6.98', '10', '31'), (6653, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (6654, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (6655, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (6656, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '380', '1170', '3', '104', 'SVCE', 'CS', '77', '100', '0'), (6657, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', '4', '109', 'Nanjing University', 'Software Institute', '82.9', '100', '0'), (6658, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '760', '490', '1250', '3.5', '97', 'JNTU', 'Computer Engg', '68', '100', '0'), (6659, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '151', '154', '305', '4', '115', 'Gurukula Kangri Vishwavidyalaya', 'Computer Science Engineering', '82.1', '100', '0'), (6660, '9', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (6661, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (6662, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '111', 'ITM University M.D.U. Rohtak', 'Mechanical', '8.28', '10', '0'), (6663, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (6664, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (6665, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '114', 'MU', 'IT', '72.4', '100', '0'), (6666, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (6667, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (6668, '9', 'Admit', 'MS', 'Architectural Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'JNAFAU HYDERABAD', '0', '0', '0', '0'), (6669, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (6670, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '150', '312', '4.5', '101', 'None', 'Mechanical Engineering', '8.2', '10', '0'), (6671, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '161', '322', '4', '112', 'SVNIT Surat', 'Mechanical', '8.3', '10', '0'), (6672, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (6673, '9', 'Admit', 'MS', 'Architecture', 'Fall ', '2015', '162', '157', '319', 'None', '115', 'MU', "Rachana Sansad\\'s Academy of Architecture Mumbai", '67.5', '100', '12'), (6674, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '154', '315', '3.5', '107', 'Goa University', 'Electronics & Telecommunications', '72', '100', '48'), (6675, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '112', 'MU', 'Computer Engineering', '56', '100', '0'), (6676, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (6677, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (6678, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (6679, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (6680, '9', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '164', '153', '317', '3', '91', 'Mepco Schlenk Engineering College', 'EEE', '8.51', '10', '0'), (6681, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (6682, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (6683, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '500', '1300', '3', '100', 'NIT Jaipur', 'Mechanical Engineering', '7.56', '10', '0'), (6684, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '152', '307', '3.5', '91', 'VIT University', 'CSE', '8.34', '10', '0'), (6685, '9', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '142', '306', '3', '93', 'GMRIT', 'Mechanical', '78', '100', '0'), (6686, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '163', '151', '314', '3', 'None', 'SRM', 'Civil Engineering', '8.82', '10', '0'), (6687, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (6688, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (6689, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6690, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (6691, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (6692, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '154', '149', '303', '3', '7', 'MVGR College of Engg (JNTU-K)', 'Civil Engineering', '68.11', '100', '0'), (6693, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '168', '153', '321', '3', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.4', '10', '0'), (6694, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '690', '520', '1210', '3.5', '96', 'Koneru Lakshmaiah College of Engineering', 'Industrial & Production Engineering', '74', '100', '0'), (6695, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (6696, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '155', '315', '4.5', 'None', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (6697, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '370', '720', '1090', '3.5', '93', 'Osmania University', 'Mechanical', '0', '0', '0'), (6698, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (6699, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (6700, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (6701, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (6702, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (6703, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (6704, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '155', '314', '4', '106', 'University of Mumbai', 'Computer Engineering', '55.74', '100', '0'), (6705, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '540', '1250', '3', '81', 'Thiagarajar College of engineering', 'Computer Science', '9.31', '10', '0'), (6706, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '153', '316', '3.5', '107', 'Sardar Patel University', 'mechanical engineering', '8.43', '10', '0'), (6707, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (6708, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (6709, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (6710, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '380', '1170', '3.5', '101', 'RGPV', 'Information Technology', '76.16', '100', '0'), (6711, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '440', '1160', '4', '107', 'Pune University', 'Mechanical Engineering', '68.72', '100', '0'), (6712, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (6713, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6714, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '530', '1250', '3.5', '101', 'Anna University', 'Mechanical Engineering', '80.5', '100', '0'), (6715, '9', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '164', '156', '320', '4', '110', 'University of Calicut', 'INSTRUMENTATION & CONTROL', '77.4', '100', '0'), (6716, '9', 'Admit', 'MS', 'biosystems engineering', 'Fall ', '2011', '710', '650', '1360', '4', '104', 'SASTRA', 'biotechnology', '9.5', '10', '0'), (6717, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (6718, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '155', '147', '302', '3.5', '110', 'None', 'ECE', '81', '100', '0'), (6719, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'NIT Durgapur', 'CSE', '8.68', '10', '0'), (6720, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '96', 'COEP', 'IT', '7.05', '10', '0'), (6721, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '159', '145', '304', '3', '93', 'Ajalakshmi Engineering College', 'Automobile Engineering', '8.1', '10', '0'), (6722, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '160', '320', '4', '109', 'B M S College of Engineering', 'Computer Science and Engineering', '77.4', '100', '0'), (6723, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (6724, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'SSN College of Engineering', 'Mechanical Engineering', '8.99', '10', '0'), (6725, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', 'None', 'Anna University', 'Mechanical Engineering', '81', '100', '0'), (6726, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (6727, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '160', '146', '306', '3', 'None', 'Coimbatore Insitute of Technology', 'Mechanical', '9.15', '10', '0'), (6728, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '690', '500', '1190', '2.5', '89', 'AISSMS College of Engineering Pune', 'Civil', '64', '100', '0'), (6729, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (6730, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (6731, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '430', '1100', '2.5', '100', 'SASTRA', 'Information and Communication Tech.', '6.6', '10', '0'), (6732, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (6733, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '168', '153', '321', '3', '102', 'NIT Surat', 'Production Engineering', '8.24', '10', '0'), (6734, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '156', '150', '306', '3', '100', 'Manipal Institue of Technology', 'MECHANICAL', '7', '10', '0'), (6735, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', 'None', '120', 'VTU', 'ECE', '73.71', '100', '0'), (6736, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (6737, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3.5', '111', 'Amrita School of Engineering', 'Electrical Engineering', '8.2', '10', '0'), (6738, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (6739, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (6740, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (6741, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '113', 'None', 'Electronics and Comm', '75.6', '100', '0'), (6742, '9', 'Admit', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2013', '163', '160', '323', '4.5', '117', 'Manipal Institue of Technology', 'Mechanical', '8.7', '10', '0'), (6743, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '530', '1310', '4', '103', 'Anna University', 'ECE', '84', '100', '0'), (6744, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '149', '308', '3', '99', 'Thiagarajar College of engineering', 'mechanical', '8.87', '10', '0'), (6745, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (6746, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (6747, '9', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2013', '750', '530', '1280', '2.5', '102', 'University of Dhaka', 'Mathematics', '72.4', '100', '0'), (6748, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '540', '1300', '3.5', '113', 'University of Pune', 'Electrical', '78.13', '100', '0'), (6749, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3', '104', 'Pune University', 'Computer Engineering', '65.2', '100', '0'), (6750, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '103', 'Goa University', 'Mechanical Dept.', '74.3', '100', '0'), (6751, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (6752, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '111', 'Delhi College Of Engineeing', 'Mechanical Engineering', '67', '100', '0'), (6753, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '4', '96', 'MU', 'Mechanical', '65', '100', '0'), (6754, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '460', '1230', '4', '110', 'Pune University', 'Mechanical', '71.1', '100', '0'), (6755, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (6756, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '500', '1220', '3.5', '108', 'University of Mumbai', 'Mechanical Engineering', '61', '100', '0'), (6757, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (6758, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6759, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (6760, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6761, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6762, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (6763, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '152', '316', '3', '97', 'University of Mumbai', 'Production Engineering', '70.3', '100', '0'), (6764, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '104', 'NIT DGP', 'CE', '3.64', '4', '0'), (6765, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (6766, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (6767, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '98', 'JNTU', 'ECE', '74', '100', '0'), (6768, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '151', '320', '3.5', '108', 'NIT Jaipur', 'Mechanical', '6.2', '10', '0'), (6769, '9', 'Admit', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (6770, '9', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (6771, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '94', 'Pune University', 'Mechanical', '77.4', '100', '0'), (6772, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'R V College of Engineering', 'computer science', '79', '100', '0'), (6773, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6774, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (6775, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '520', '1300', '4', '112', 'VTU', 'Mechanical', '77', '100', '0'), (6776, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2016', '159', '154', '313', '3.5', '113', 'VTU', 'Electrical and Electronics', '80.08', '100', '17'), (6777, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6778, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (6779, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'CSE', '8', '10', '0'), (6780, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (6781, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (6782, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (6783, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '750', '500', '1250', '3.5', '100', 'University of Pune', 'Mechanical', '67', '100', '0'), (6784, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '430', '1230', '4', '104', 'JNTU', 'mechanical engineering', '74', '100', '0'), (6785, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6786, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (6787, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '169', '161', '330', '4', '109', 'NIT Rourkela', 'Electronics and Instrumentation Engg', '9.41', '10', '0'), (6788, '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0'), (6789, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (6790, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (6791, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '590', '1330', '4', '104', 'NIT Silchar', 'Electrical Engineering', '6.67', '10', '0'), (6792, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (6793, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (6794, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '3.5', '108', 'IIT Indore', 'Mechanical Engineering', '7.16', '10', '24'), (6795, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VIT University', 'Mechanical', '7.82', '10', '0'), (6796, '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '620', '580', '1200', '3.5', '86', 'Pune University', 'computer engg', '60', '100', '0'), (6797, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (6798, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '770', '500', '1270', '3.5', '111', 'Ansal Institute of Technology', 'Computer Science', '73', '100', '0'), (6799, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'DA-IICT', 'ECE', '6.79', '10', '0'), (6800, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '752', '491', '1243', '3', '235', 'BITS Pilani', 'ENGGINEERING', '7', '10', '0'), (6801, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '580', '1310', 'None', '113', 'NMAMIT Karkala Karnataka', 'Mech Engineering', '8.6', '10', '0'), (6802, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '490', '1250', '3', '89', 'Pune University', 'Mechanical', '63', '100', '0'), (6803, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '146', '309', '3.5', '106', 'Pune University', 'Mechanical Engineering', '63', '100', '0'), (6804, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '730', '1500', '4', '114', 'VIT University', 'Mechanical with spl. in Energy', '8.63', '10', '0'), (6805, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '154', '315', '3.5', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engg', '65', '100', '0'), (6806, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '154', '319', '3.5', '107', 'Pune University', 'E&TC;', '65', '100', '0'), (6807, '9', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '540', '1300', '3', '101', 'JNTU', 'Computer Science', '0', '0', '0'), (6808, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '152', '315', '4', '111', 'COEP', 'Production Engineering (Sandwich)', '8.94', '10', '16'), (6809, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6810, '9', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '162', '157', '319', '3', '112', 'PCCOE Pune University', 'Electronics and Telecommunication Engineering', '0', '0', '28'), (6811, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '640', '1360', '4', 'None', 'BNMIT', 'ECE', '73', '100', '0'), (6812, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '152', '312', '3', '102', 'VTU', 'Mechanical engineering', '73.5', '100', '0'), (6813, '9', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (6814, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '620', '1420', '4', '102', 'Thiagarajar College of engineering', 'Mechanical engineering', '8.77', '10', '0'), (6815, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '152', '306', '3.5', '102', 'PESIT', 'Mechanical Engineering', '6.3', '10', '0'), (6816, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', 'None', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6817, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', '310', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6818, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (6819, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '160', '156', '316', '4.5', '111', 'NIT Calicut', 'Mechanical', '6.23', '10', '0'), (6820, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '320', '1110', '3', '102', 'MU', 'Civil', '78', '100', '0'), (6821, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6822, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'Pune University', 'Mechanical Engineering', '69.8', '100', '0'), (6823, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (6824, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6825, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '103', 'Andhra University', 'CSE', '8.14', '10', '47'), (6826, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '111', 'Osmania University', 'ECE', '82.3', '100', '0'), (6827, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3', '100', 'MU', 'Computer Engineer', '56', '100', '0'), (6828, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (6829, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '152', '313', '4', '102', 'SRM', 'Mechanical Engg', '8.6', '10', '0'), (6830, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '720', '400', '1120', '4', '104', 'ICFAI', 'CSE', '7.95', '10', '0'), (6831, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (6832, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (6833, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6834, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '159', '320', '3.5', 'None', 'Aurora College of Engineering', 'Mechanical Engg', '69.7', '100', '0'), (6835, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (6836, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (6837, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '154', '312', '3', 'None', 'MVSR', 'I.T', '82', '100', '0'), (6838, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'None', '0', '0', '0', '0'), (6839, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'R N S Institute of Technology', 'Computer Science', '74', '100', '0'), (6840, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '780', '450', '1230', 'None', '98', 'Anna University', 'Mechanical', '7.36', '10', '0'), (6841, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '166', '152', '318', '4', '105', 'BITS Pilani', 'Mechanical Eng', '8.98', '10', '0'), (6842, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (6843, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '156', '325', '3.5', '102', 'VTU', 'ECE', '70', '100', '0'), (6844, '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6845, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '157', '323', '3', '102', 'VNR VJIET', 'Computer Science', '75.3', '100', '0'), (6846, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '660', '1420', '4', '108', 'The Technological institute of Textile and Sciences Bhiwani', 'Electronics & Communication Engineering', '68.3', '100', '0'), (6847, '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (6848, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6849, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '650', '440', '1090', '3', '91', 'Government College Of Engineering Aurangabad', 'Information Technology', '69', '100', '0'), (6850, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '101', 'CBIT', 'IT', '73.75', '100', '0'), (6851, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (6852, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '109', 'Shivaji University', 'mechanical', '7.7', '10', '0'), (6853, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '154', '313', '3', 'None', 'Guru Gobind Singh Indraprashta University', 'Electrical and electronics', '75', '100', '0'), (6854, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6855, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '156', '316', '4', '103', 'Delhi College Of Engineeing', 'Electrical Engineering', '66', '100', '22'), (6856, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (6857, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '86', 'Chilkur Balaji Institute of Tecnology (JNTUH)', 'C.S.E', '78', '100', '0'), (6858, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (6859, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', 'None', '167', '148', '315', '4.5', '108', 'Osmania University', 'Electronics and Communication Engineering', '86.7', '100', '0'), (6860, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3', '109', 'MGIT (JNTU)', 'CSE', '74', '100', '0'), (6861, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '148', '312', '3', 'None', 'VIT University', 'Mechanical( ABET Accredited)', '9.1', '100', '0'), (6862, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6863, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '154', '312', '4', '113', 'Pune University', 'Electronics & Telecommunication', '60', '100', '8'), (6864, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (6865, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (6866, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (6867, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '159', '150', '309', '3.5', '96', 'Amrita School of Engineering', 'Civil', '8.19', '100', '0'), (6868, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6869, '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6870, '9', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6871, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '143', '301', '3.5', 'None', 'SNIST', 'Electronics and Computer Engineering', '82.98', '100', '15'), (6872, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '147', '305', '3.5', '104', 'VTU', 'Industrial engineering', '73', '100', '0'), (6873, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '730', '670', '1400', '4', '115', 'None', 'Mechanical Engineering', '76', '100', '0'), (6874, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6875, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (6876, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (6877, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6878, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '150', '306', '3', '105', 'BVBCET', 'mechanical', '8.98', '10', '0'), (6879, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '150', '310', '3', 'None', 'MU', 'CS', '61', '100', '0'), (6880, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (6881, '9', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (6882, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '800', '630', '1430', '4.5', '113', 'University of Mumbai', 'Information Technology', '66', '100', '34'), (6883, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2016', '162', '155', '317', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'automobile', '6.67', '10', '0'), (6884, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (6885, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (6886, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '152', '312', '3.5', '95', 'University of Pune', 'E&TC;', '65.8', '100', '8'), (6887, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6888, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '470', '1220', '4', '109', 'The National Institute of Engineering', 'Mechanical Engineering', '65', '100', '0'), (6889, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '151', '319', '4', '117', 'BITS Hyderabad', 'ECE', '9.22', '10', '0'), (6890, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (6891, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '155', '315', '3.5', '105', 'BITS Pilani', 'Mechanical', '7.39', '10', '0'), (6892, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '146', '304', '3.5', '7', 'Anna University', 'Mechanical engg', '7.98', '100', '0'), (6893, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (6894, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '420', '1170', '3', '100', 'GGSIPU', 'mechanical n automation', '73', '100', '0'), (6895, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (6896, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '110', 'GITAM', 'EEE', '6.6', '10', '0'), (6897, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (6898, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '590', '1390', '3', '105', 'Anna University', 'Computer Science', '82', '100', '0'), (6899, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (6900, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '740', '620', '1360', '4', '114', 'Mar Athanasius College of Engineering Kerala', 'Mechanical Engineering', '70', '100', '0'), (6901, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'Vasavi College of Engineering', 'mech', '70.7', '100', '0'), (6902, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (6903, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '156', '320', '3', '107', 'COEP', 'Production engineering', '8.11', '10', '0'), (6904, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '107', 'Delhi College Of Engineeing', 'Electrical and Electronics', '74.19', '100', '24'), (6905, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '143', '306', '3.5', '107', 'K J Somaiya College of Engiineering', 'Mechanical Engg', '65', '100', '0'), (6906, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (6907, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '161', '325', '4', '114', 'SPCE', 'Mech', '74.14', '100', '0'), (6908, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6909, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6910, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '141', '302', '3', '107', 'SRKNEC', 'Industrial Engineering', '70.89', '100', '0'), (6911, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '780', '440', '1220', '4.5', '103', 'Anna University', 'Computer Science and Engineering', '77', '100', '0'), (6912, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '154', '311', '4', '111', 'Swami Vivekananda Institute of Science and Technology', 'Mechanical Enginnering', '7.8', '10', '0'), (6913, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '570', '1320', '4', '99', 'GITAM', 'ECE', '8.98', '10', '0'), (6914, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '150', '317', '4', '104', 'NIT Raipur', 'Mechanical Engineering', '8.89', '10', '0'), (6915, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (6916, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (6917, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (6918, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '113', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '8.28', '10', '0'), (6919, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '440', '1240', '3.5', '98', 'NIT Bhopal', 'Computer Science & Engg.', '7', '10', '0'), (6920, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (6921, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '150', '147', '297', '3.5', 'None', 'MSRIT', 'civil', '7.9', '10', '0'), (6922, '9', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0'), (6923, '9', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (6924, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '470', '1250', '3', '96', 'MITS', 'MECHANICAL', '78', '100', '0'), (6925, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (6926, '9', 'Admit', 'MS', 'Bioresource/Biosystems Engg', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'Manipal Institue of Technology', 'Biotechnology', '8.83', '10', '0'), (6927, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '520', '1250', '3', '100', 'Pune University', 'Mechanical', '62', '100', '0'), (6928, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (6929, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '750', '620', '1370', '4', 'None', 'PSG College of Technology', 'Biotechnology', '8.48', '10', '0'), (6930, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6931, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '100', 'MU', 'mechanical', '76', '100', '0'), (6932, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6933, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6934, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '3', '98', 'Vignan Institute of Technology and Science', 'Mechanical Engineering', '78.1', '100', '0'), (6935, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '152', '321', '4', '103', 'IIT Indore', 'Mechanical', '8.43', '10', '12'), (6936, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '163', '160', '323', '3.5', '105', 'Telangana', 'Mechanical', '80', '100', '12'), (6937, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '137', '293', '2.5', '92', 'SRM', 'Mechanical Engineering', '8.391', '10', '0'), (6938, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '148', '304', '4', '109', 'JNTU', 'Mechatronics', '70.58', '100', '0'), (6939, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6940, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6941, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '360', '1090', '3', '92', 'Thiagarajar College of engineering', 'Computer Science Engineering', '7.56', '10', '0'), (6942, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (6943, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '740', '600', '1340', '4', '114', 'Modern College of Engineering', 'Mechanical Engineering', '76', '100', '0'), (6944, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'NIT Rourkela', 'Mechanical', '8.36', '10', '0'), (6945, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '4.5', '108', 'University of Pune', 'Electronics & Telecommunications', '58', '100', '0'), (6946, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (6947, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '4', '101', 'COEP', 'Electrical', '7.48', '10', '0'), (6948, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '167', '334', '5', '116', 'NITK Surathkal', 'Mechanical', '8.2', '10', '21'), (6949, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (6950, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (6951, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (6952, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '570', '1300', '4', 'None', 'Manipal Institue of Technology', 'Mechanical Engineering', '8.46', '10', '0'), (6953, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '165', '325', '3.5', '110', 'NIT Bhopal', 'Mechanical Engg.', '7.53', '10', '0'), (6954, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6955, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '785', '360', '1145', '4', '91', 'Anna University', 'Mechanical', '8.3', '10', '0'), (6956, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (6957, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (6958, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '155', '322', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.9', '10', '32'), (6959, '9', 'Admit', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (6960, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (6961, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '660', '550', '1210', '3', '92', 'RTM Nagpur University', 'Mechanical Engineering', '66', '100', '0'), (6962, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6963, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '710', '330', '1040', '3', '83', 'JNTU', 'Mechnaical Engineering', '75', '100', '0'), (6964, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '790', '550', '1340', '3', '102', 'COEP', 'Civil', '7.16', '10', '0'), (6965, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (6966, '9', 'Admit', 'MS', 'mba', 'Spring ', '2015', '46', '25', '71', '4.5', 'None', 'Anna University', 'Mechanical', '8.87', '10', '0'), (6967, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (6968, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'YCCE', 'Mechanical Engineering', '72.2', '100', '0'), (6969, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '800', '620', '1420', '4', '283', 'NIT Calicut', 'Mechanical Engineering', '8.46', '10', '0'), (6970, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (6971, '9', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (6972, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '710', '570', '1280', '3.5', '114', 'Goa University', 'E&TC;', '60.01', '100', '0'), (6973, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (6974, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '570', '1370', '4', '114', 'None', 'E.C.E', '70', '100', '0'), (6975, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (6976, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '740', '1480', '4.5', '116', 'SSN College of Engineering', 'IT', '7.96', '10', '0'), (6977, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (6978, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (6979, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (6980, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '102', 'UPTU', 'Mechanical Engineering', '65.48', '100', '0'), (6981, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '148', '314', '3', 'None', 'GITAM', 'Mechanical', '7.62', '10', '0'), (6982, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '91', 'Jaypee Institute of Information Technology', 'Information Technology', '6.5', '10', '58'), (6983, '9', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', '164', '150', '314', '3', '104', 'BITS Goa', 'Mechanical Engineering', '7.17', '10', '0'), (6984, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '740', '620', '1360', '4', '105', 'Amrita School of Engineering', 'Mechanical', '7.21', '10', '0'), (6985, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'PSG College of Technology', 'Mechanical Engineering', '8.28', '10', '48'), (6986, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '3.5', '108', 'Amrita School of Engineering', 'Mech', '7.6', '10', '0'), (6987, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '154', '308', 'None', '114', 'SRKNEC Nagpur University', 'Industrial', '66', '100', '0'), (6988, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '165', '157', '322', '3.5', '112', 'JNTU', 'Mechanical(Mechatronics)', '73', '100', '0'), (6989, '9', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (6990, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (6991, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (6992, '9', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '162', '152', '314', '3', '104', 'MU', '0', '62', '100', '0'), (6993, '9', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '145', '306', '3', 'None', 'COEP', 'Production engineerimg', '7.26', '10', '0'), (6994, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', '106', 'Delhi College Of Engineeing', 'Mechanical', '56.3', '100', '0'), (6995, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (6996, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (6997, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '148', '314', '4', '106', 'PESIT', 'Telecommunication', '8.07', '10', '0'), (6998, '9', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (6999, '9', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (7000, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '152', '313', '3', '97', 'Pune University', 'electrical engineering', '57.06', '100', '0'), (7001, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (7002, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '151', '150', '301', '3', '99', 'Anna University', 'Mechanical Engineering', '7.62', '10', '0'), (7003, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '101', 'VTU', 'Mechanical', '9.2', '10', '0'), (7004, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '151', '312', '3', '84', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation engg.', '56', '100', '0'), (7005, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7006, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '153', '310', '3.5', '110', 'VTU', 'Mechanical', '62', '100', '0'), (7007, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (7008, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '148', '303', '3', '86', 'Shivaji University', 'civil engineering', '64', '100', '0'), (7009, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', '87', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '69', '100', '0'), (7010, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '158', '154', '312', '4', '104', 'Bannari Amman Institute Of Technology', 'Electrical and Electronics Engineering', '8.67', '10', '0'), (7011, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3.5', '106', 'RNSIT', 'Electronics & Communication', '71', '100', '0'), (7012, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (7013, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7014, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (7015, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (7016, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '147', '158', '305', '3.5', '109', 'Anna University', 'Electrical and Electronics', '7.3', '10', '0'), (7017, '9', 'Reject', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (7018, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7019, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '165', '162', '327', '3', '114', 'VIT University', 'Mechanical', '8.57', '10', '17'), (7020, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (7021, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (7022, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '710', '560', '1270', '4', '112', 'University of Pune', 'Mechanical Engineering', '59', '100', '0'), (7023, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (7024, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (7025, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (7026, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '163', '326', '4', '114', 'Anna University', 'Mechanical Engineering', '72', '100', '0'), (7027, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (7028, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (7029, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (7030, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (7031, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (7032, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '144', '308', '3', 'None', 'GTU', 'mechanical', '8.76', '10', '0'), (7033, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (7034, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7035, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '3', '107', 'MU', 'Computer Engineering', '58', '100', '0'), (7036, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '150', '319', '3', '99', 'Jadavpur University', 'Electrical Engineering', '7.33', '10', '0'), (7037, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '164', '151', '315', '3', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '9.01', '10', '25'), (7038, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (7039, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (7040, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (7041, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', 'None', '93', 'MVSR', 'ECE', '77', '100', '0'), (7042, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (7043, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7044, '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '147', '309', '3', '98', 'RTM Nagpur University', 'mechanical', '61', '100', '0'), (7045, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '143', '308', '3', '96', 'MVSR', 'ECE', '89', '100', '0'), (7046, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (7047, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (7048, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (7049, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '300', '1040', '2.5', '84', 'Sathyabama University', 'electronics and instrumentation', '81', '100', '0'), (7050, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (7051, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (7052, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (7053, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2013', '155', '150', '305', '3', '7', 'Pune University', 'Mechanical', '62', '100', '17'), (7054, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (7055, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '4', '99', 'JNTU', 'CSE', '71.59', '100', '0'), (7056, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '143', '305', '3', '95', 'NIT-Raipur', 'Mechanical', '7.77', '10', '0'), (7057, '9', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (7058, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (7059, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (7060, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '7.28', '10', '0'), (7061, '9', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '157', '145', '302', '3', '103', 'PTU', 'cse', '80', '100', '0'), (7062, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (7063, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (7064, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (7065, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '152', '305', '3', '100', 'None', 'cse', '65', '100', '0'), (7066, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (7067, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (7068, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '106', 'BNMIT', 'Electronics and Communication', '72', '100', '0'), (7069, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '142', '302', '3', '95', 'VITS', 'mechanical', '71', '100', '0'), (7070, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '98', 'VIT University', 'EEE', '8.75', '10', '0'), (7071, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (7072, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '144', '306', '3', '96', 'Velammal Engineering College', 'production engineering', '8.35', '10', '0'), (7073, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (7074, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '153', '319', '3', '103', 'ISM Dhanbad', 'Mechanical engineering', '7.01', '10', '51'), (7075, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (7076, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (7077, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'Rajiv Gandhi Technical University', 'Electronics and Communication Engineering', '69.41', '100', '0'), (7078, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '149', '302', '2.5', '94', 'RGPV', 'Mechanical', '6.29', '10', '0'), (7079, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (7080, '9', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '160', '148', '308', '3.5', '105', 'VTU', 'Telecommunication', '61', '100', '0'), (7081, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (7082, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (7083, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (7084, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (7085, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '162', '324', '4.5', '117', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '7.04', '10', '0'), (7086, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (7087, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '360', '1140', '3', '99', 'MU', 'Electronics', '70', '100', '0'), (7088, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (7089, '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7090, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '550', '1270', '2.5', '95', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '69', '100', '0'), (7091, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '390', '1120', '3', '101', 'Anna University', 'mechanical', '7.87', '10', '0'), (7092, '9', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (7093, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '150', '309', '3', '101', 'Sinhgad College of Engineering', 'Computer Engg', '63.93', '100', '0'), (7094, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '143', '310', '3', '80', 'SRM', 'Aerospace', '9.3', '10', '0'), (7095, '9', 'Reject', 'MS', 'Mechanical / Industrial Engg.', 'Fall ', '2014', '162', '150', '312', '3.5', '94', 'Datta Meghe College of Engineering', 'mechanical', '64.33', '100', '0'), (7096, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '146', '304', 'None', '103', 'Pune University', 'Mechanical', '73.33', '100', '0'), (7097, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2', '780', '460', '1240', '3.5', 'None', 'Sri Venkateswara College of Engineering', 'CSE', '7.88', '10', '0'), (7098, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '149', '307', '3.5', '7', 'JNTU', 'mechanical', '64', '100', '0'), (7099, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (7100, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (7101, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3.5', '106', 'CUSAT', 'ECE', '3.14', '4', '0'), (7102, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '145', '308', '3', '96', 'UPTU', 'Mechanical', '67.22', '100', '48'), (7103, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '139', '301', '3.5', '88', 'VTU', 'Info Science', '66.8', '100', '0'), (7104, '9', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (7105, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', '3.5', '108', 'MU', 'Mechanical Engineering', '66', '100', '8'), (7106, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (7107, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '106', 'MU', 'electronics and telecommunications', '56', '100', '0'), (7108, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (7109, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '720', '450', '1170', '3', '97', 'MU', 'Mechanical', '56', '100', '0'), (7110, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '480', '1180', '4.5', '103', 'VTU', 'Telecommunciation', '63', '100', '0'), (7111, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (7112, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (7113, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (7114, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '85', 'MU', 'Electrical Engineering', '57', '100', '0'), (7115, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '146', '302', '3.5', '87', "The People\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'s University of Bangladesh", 'Electronics and Telecommunication engineering', '3.47', '4', '0'), (7116, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '145', '303', '2.5', 'None', 'RITS', 'CIVIL', '77.8', '100', '12'), (7117, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '162', '155', '317', '4', '113', 'M.G. University', 'ECE', '7.52', '10', '0'), (7118, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (7119, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '4', '101', 'MU', 'Instrumentation', '62.5', '100', '0'), (7120, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (7121, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (7122, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (7123, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '105', 'University of Pune', 'Electronics & Telecommunication', '68.8', '100', '0'), (7124, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (7125, '9', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (7126, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '4', '111', 'VIT Pune', 'Electronics', '6.62', '10', '0'), (7127, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '115', 'MU', 'Mechanical', '55', '100', '0'), (7128, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '102', 'CBIT', 'CSE', '80', '100', '0'), (7129, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (7130, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2009', '780', '480', '1260', '4', '106', 'MIT Pune', 'Mechanical Engineering', '55', '100', '0'), (7131, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (7132, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '99', 'SSN College of Engineering', 'ECE', '77', '100', '0'), (7133, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (7134, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (7135, '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (7136, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '309', '151', '460', '158', '108', 'MU', 'Mechanical', '74', '100', '0'), (7137, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (7138, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (7139, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (7140, '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (7141, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (7142, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '340', '1100', '3.5', 'None', 'BMSCE', 'Instrumentation Technology', '61.5', '100', '0'), (7143, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (7144, '9', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '161', '144', '305', '3', '7', 'Pune University', 'Mech', '54', '100', '0'), (7145, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (7146, '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '520', '1320', '2.5', '90', 'DA-IICT', 'ICT', '7.5', '10', '0'), (7147, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '340', '1130', '3', '94', 'R V College of Engineering', 'Mechanical Engineering', '8.59', '10', '0'), (7148, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (7149, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '89', 'University of Pune', 'Mechanical Engineering', '57', '100', '0'), (7150, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (7151, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (7152, '9', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2013', '153', '144', '297', '2.5', '83', 'Walchand College Of Engineering', 'civil engineering', '67', '100', '0'), (7153, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (7154, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '111', 'Thapar University', 'Mechanical Department', '8', '10', '0'), (7155, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '92', 'RUET', 'EEE', '3.87', '4', '0'), (7156, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (7157, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (7158, '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '790', '400', '1190', '2.5', '94', 'Anna University', 'Electrical and Electronic enginnering', '9.01', '10', '0'), (7159, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '590', '1340', '3', '112', 'YCCE', 'Electronics', '67', '100', '0'), (7160, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '150', '311', '3', '104', 'University of Pune', 'electronics and telecommunication', '64', '100', '0'), (7161, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '156', '145', '301', '2.5', '86', 'None', 'electronics and communication', '76', '100', '0'), (7162, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (7163, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '610', '1410', '4.5', '108', 'MU', 'Mechanical', '60', '100', '0'), (7164, '9', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2014', '156', '147', '303', '4', '104', 'Anna University', 'EEE', '80.25', '100', '29'), (7165, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3.5', '106', 'University of Pune', 'Mechanical Engineering (Sandwich Pattern) - involving 2 semesters industrial internship as part of the curriculum', '60.45', '100', '18'), (7166, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '147', '308', '3', '80', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '61.74', '100', '0'), (7167, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '162', '318', '3.5', '113', 'VJTI', 'Mechanical', '7.4', '10', '0'), (7168, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (7169, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (7170, '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (7171, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (7172, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7173, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7174, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (7175, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (7176, '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2013', '166', '152', '318', '3', '100', 'VESIT', 'Instrumentation', '65', '100', '0'), (7177, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '91', 'JNTU', 'computer science', '75', '100', '0'), (7178, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (7179, '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '780', '500', '1280', '4', '100', 'Maharaja Agrasen Institute Of Technology', 'Electronics and communication', '74', '100', '0'), (7180, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '110', 'NIT Karnataka', 'information Technology', '7.82', '10', '0'), (7181, '9', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '770', '490', '1260', '3.5', '95', 'RNSIT', 'Electronics and Comm', '77', '100', '0'), (7182, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '155', '137', '292', '2.5', 'None', 'Khulna University of Engineering and Technology', 'Electrical & Electronic Engineering', '3', '4', '0'), (7183, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (7184, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (7185, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '149', '305', '3', 'None', 'Vasavi College of Engineering', 'Mechanical', '75.73', '100', '0'), (7186, '9', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '740', '480', '1220', '3', '92', 'Rajarambapu Institute of Technolog)y ( shivaji University', 'Electronics and Telecommunication', '70', '100', '0'), (7187, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (7188, '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7189, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (7190, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (7191, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (7192, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (7193, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', 'None', 'JNTU', 'Mech Engg', '78', '100', '0'), (7194, '9', 'Reject', 'MS', 'CS/SE', 'Fall ', '2013', '154', '153', '307', '3.5', '101', 'VTU', 'Electronics & Communication', '64.7', '100', '0'), (7195, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (7196, '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '158', '151', '309', '3', '93', 'Pune University', 'E& TC', '67', '100', '24'), (7197, '9', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '95', 'Sri Venkateswara College of Engineering', 'chemical engineering', '7.8', '10', '0'), (7198, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (7199, '9', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2013', '163', '146', '309', '3', '98', 'Burdwan University', 'Mathematics', '61', '100', '0'), (7200, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '710', '490', '1200', '4', '111', 'Osmania University', '0', '73', '100', '0'), (7201, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '152', '308', '3', '105', 'DSCE', 'Automobile', '66', '100', '0'), (7202, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '790', '530', '1320', '3', '105', 'Pune University', 'Mech', '61.54', '100', '0'), (7203, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (7204, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (7205, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '4', '103', 'MU', 'Computer Engg Dept', '64', '100', '0'), (7206, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (7207, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (7208, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '147', '312', '4', '105', 'GITAM', 'Electrical & Electronics', '7.7', '10', '0'), (7209, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '450', '1250', '4.5', '277', 'J. B. Insititute of Engg & Tech./ aff. to JNTU', 'ECE', '70', '100', '0'), (7210, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (7211, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3', '102', 'Gujarat Technological University', 'Mechatronics', '7.86', '10', '0'), (7212, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '146', '309', '3', '7', 'SASTRA', 'Mechanical', '8.95', '10', '0'), (7213, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (7214, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '151', '312', '3', '7', 'NIT Hamirpur', 'Mechanical', '8.26', '10', '24'), (7215, '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (7216, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (7217, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3.5', '93', 'Yeshwantrao Chavan College of Engineering', 'Mechanical Engineering', '64.8', '100', '0'), (7218, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '157', '315', '3', '107', 'RTM Nagpur University', 'MECHANICAL ENGG', '62', '100', '0'), (7219, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (7220, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (7221, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '3', '98', 'NIT Warangal', 'Mechanical Engineering', '8.16', '10', '18'), (7222, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '142', '304', '3', 'None', 'Pune University', 'Mechanical', '62', '100', '0'), (7223, '9', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '111', 'MNNIT', 'IT', '7.55', '10', '0'), (7224, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (7225, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (7226, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (7227, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '690', '1490', '3', '111', 'MU', 'Mechanical Engineering', '52', '100', '0'), (7228, '9', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2014', '780', '530', '1310', '3.5', '100', 'VIT', 'ECE', '8.11', '10', '22'), (7229, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (7230, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '13', '165', '144', '309', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Mechanical', '71', '100', '0'), (7231, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (7232, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '141', '297', '2.5', '89', 'VTU', 'Mechanical Engineering', '63.5', '100', '0'), (7233, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '144', '310', '3.5', '95', 'Kurukshetra University', 'Mechanical Engineering', '71.18', '100', '0'), (7234, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '159', '318', '3.5', '106', 'Goa University', 'Information Technology', '64', '100', '36'), (7235, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '154', '314', '3.5', '107', 'MU', 'mechanical engineering', '57', '100', '0'), (7236, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '100', 'Bhilai Institute of Technology', 'Information Technology', '8.41', '10', '0'), (7237, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '153', '149', '302', '3.5', 'None', 'VTU', 'Mechanical Engineering', '8.9', '10', '0'), (7238, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '140', '291', '3', '87', 'RAIT', 'IT', '57', '100', '0'), (7239, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '161', '148', '309', '3', '101', 'VTU', 'Mechanical', '75.3', '100', '16'), (7240, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '650', '450', '1100', '3.5', '92', 'University of Calicut', 'ECE', '66', '100', '0'), (7241, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '450', '1140', '3', '102', 'Anna University', 'ece', '7.9', '10', '0'), (7242, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (7243, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '790', '360', '1150', '3.5', '106', 'NIT Tirchy', 'Mechanical Engineering', '7.49', '10', '0'), (7244, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (7245, '9', 'Reject', 'MS', 'Instrumentation and Control', 'Spring ', '2016', '157', '149', '306', '3', '88', "St Joseph's College of Engineering", 'Electronics and instrumentation engineering', '7.5', '10', '0'), (7246, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '97', 'BITS Goa', 'Mechanical', '7', '10', '0'), (7247, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (7248, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '350', '1090', '3', '103', 'Sir MVIT', 'E&C;', '78', '100', '0'), (7249, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '143', '302', '3.5', '100', 'Dr. Pauls Engineering College (Anna University)', 'Mechanical Engineering', '7.2', '10', '0'), (7250, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (7251, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (7252, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (7253, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '98', 'None', '0', '0', '0', '0'), (7254, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '163', '153', '316', '3.5', 'None', 'PSG College of Technology', 'Automobile Engineering', '8.51', '10', '51'), (7255, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '4', '106', 'University Vishweriah College of Engineering', 'Electronics and Communication', '68.08', '100', '0'), (7256, '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '160', '150', '310', '3', '96', 'SJBIT', 'ECE', '71', '100', '0'), (7257, '9', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '163', '145', '308', '3', '87', 'Amrita School of Engineering', 'ECE', '8.48', '10', '24'), (7258, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '780', '480', '1260', '3.5', '105', 'MU', 'Mechanical', '60.8', '100', '0'), (7259, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (7260, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (7261, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '167', '147', '314', '2', '95', 'GITAM', 'Computer Science', '8.15', '10', '0'), (7262, '9', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '164', '155', '319', '4', '107', 'BITS Goa', 'Biological Sciences Electronics & Instrumentation', '7.14', '10', '0'), (7263, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '157', '313', '3.5', '104', "St Joseph's College of Engineering", 'ECE', '8.5', '10', '0'), (7264, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '145', '308', '3', '99', 'Anna University', 'Mechanical Engineering', '9.25', '10', '0'), (7265, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '146', '161', '307', '3', '86', 'JNTU', 'ECE', '81.5', '100', '0'), (7266, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3.5', '102', 'Dr D Y Patil School of Engineering', 'Mechanical Engineering', '60.4', '100', '0'), (7267, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '530', '1310', '4.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical', '56', '100', '0'), (7268, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '150', '308', '3', 'None', 'JNTU', 'ece', '80.5', '100', '0'), (7269, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (7270, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (7271, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '152', '144', '296', '3', '90', 'Institute of Engineering & Technology DAVV', 'Electronics & Instrumentation', '70.56', '100', '0'), (7272, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3.5', '106', 'VTU', 'Instrumentation Tech', '61', '100', '0'), (7273, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (7274, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2009', '770', '330', '1100', '3', '96', 'S.P.University V.V.Nagar Gujarat', 'Mechanical', '6.7', '10', '0'), (7275, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3.5', '104', 'Osmania University', 'Mechanical', '83', '100', '0'), (7276, '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '157', '142', '299', '3', '92', 'PSG College of Technology', 'Metallurgical Engineering', '7', '10', '0'), (7277, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (7278, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '3', '107', 'Pune University', 'Electronics & Telecomm', '79.4', '100', '0'), (7279, '9', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '159', '147', '306', '3', '92', 'None', 'Information Technology', '73', '100', '0'), (7280, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (7281, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '540', '1270', '3', '100', 'MVGR', 'ECE', '73', '100', '0'), (7282, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (7283, '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '166', '145', '311', '3', 'None', 'VIT University', 'ECE', '8.27', '10', '0'), (7284, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '630', '330', '960', '3', '89', 'Sri Krishna College Of Engineering And Technology', 'Mechatronics', '8.3', '10', '0'), (7285, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (7286, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '149', '311', '3', '102', 'VJTI', 'Production Engineering', '7.6', '10', '0'), (7287, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (7288, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '88', 'GITAM', 'Electronics(ECE)', '8.01', '10', '0'), (7289, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (7290, '9', 'Reject', 'MS', 'Chemical Engineering', 'Spring ', '2012', '780', '550', '1330', '3', '98', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.24', '10', '0'), (7291, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (7292, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical', '72', '100', '0'), (7293, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical Engineering', '72', '100', '0'), (7294, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (7295, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (7296, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '740', '410', '1150', '3.5', '94', 'MU', 'MECHANICAL', '56', '100', '0'), (7297, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'None', 'EEE', '8.3', '10', '0'), (7298, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '314', '152', '466', '3', '88', 'VIT Pune', 'Mech', '8.23', '10', '0'), (7299, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '510', '1280', '3.5', '98', 'PVG COET Pune', 'Mechanical Engineering', '58.35', '100', '0'), (7300, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (7301, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '300', '1060', '3', '92', 'RNSIT', 'Electronics and Communication', '68', '100', '0'), (7302, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (7303, '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '156', '150', '306', '3.5', '100', 'COEP', 'M.Tech Mechatronics', '7.71', '10', '0'), (7304, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (7305, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '158', '156', '314', '3', 'None', 'Govt. Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '74.8', '100', '0'), (7306, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (7307, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (7308, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (7309, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (7310, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '148', '315', '3', '99', 'COEP', 'Instrumentation and Control', '8.2', '10', '0'), (7311, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '152', '319', 'None', '99', 'IIIT Allahabad', 'Information Technology', '7.08', '10', '0'), (7312, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (7313, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '142', '304', '3', '91', 'Pune University', 'Mechanical', '68.7', '100', '32'), (7314, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '540', '1340', '3', '87', 'RAIT', 'Electronics and Telecom', '69.3', '100', '0'), (7315, '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (7316, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (7317, '9', 'Reject', 'MS', 'Biotechnology/bio-engineering', 'Fall ', '2011', '680', '520', '1200', '3', '106', 'C.I.T.M. Faridabad affiliated to M.D. University Rohtak', 'Biotechnology', '73', '100', '0'), (7318, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (7319, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '720', '400', '1120', '3', '97', 'Anna University', 'BE CSE', '80', '100', '0'), (7320, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '152', '310', '3', '114', 'MG University', 'mechanical engineering', '69', '100', '0'), (7321, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (7322, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '300', '1030', '3', '87', 'MVSR', 'Computer Science', '79', '100', '0'), (7323, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (7324, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '146', '315', '3.5', '98', 'Nit surat', 'Production Engineering', '8.11', '10', '0'), (7325, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '93', 'Kurukshetra University', 'Mechanical', '67.3', '100', '0'), (7326, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (7327, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3.5', '7', 'Pune University', 'Mechanical', '60', '100', '0'), (7328, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (7329, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (7330, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (7331, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (7332, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '96', 'UPTU', 'Mechanical Engineering', '62', '100', '0'), (7333, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '430', '1200', '3.5', '95', 'BVBCET', 'EE', '8.58', '10', '0'), (7334, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (7335, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (7336, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2017', '161', '144', '305', '3', '90', 'Sinhgad Institute Of Technology And Science, Narhe', 'Civil Engineering', '65', '100', '15'), (7337, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring', '2019', '162', '140', '302', '3', '-1', 'KLS Gogte Institute Of Technology', 'ECE', '63.4', '100', '0'), (7338, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall', '2016', '160', '151', '311', '3.5', '98', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '6.5', '10', '0'), (7339, '10', 'Admit', 'MSc', 'Software Engineering', 'Spring', '2017', '154', '131', '285', '2', '-1', 'MLR Institute Of Technology', 'Computer Science', '73', '100', '0'), (7340, '10', 'Admit', 'MSc', 'Software Engineering', 'Fall', '2018', '153', '130', '283', '-1', '-1', 'Gujarat Technological University', 'Information Technology', '8.35', '10', '0'), (7341, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (7342, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '500', '1230', '3.5', '99', 'NIT Silchar', 'Mechanical Engineering', '7.37', '10', '0'), (7343, '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '760', '650', '1410', '3.5', '104', 'Sardar Patel College of Engineering', 'Computer Engineering', '75.9', '100', '0'), (7344, '11', 'Admit', 'MS', 'EE / CS', 'Fall ', '2012', '800', '730', '1530', '4.5', '114', 'NIT Karnataka', 'ECE', '8.5', '10', '0'), (7345, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '550', '1340', '4', '113', 'MU', 'CS', '66.14', '100', '0'), (7346, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '166', '322', '3.5', '114', 'IIIT Allahabad', 'Electronics & Comm.', '8.98', '10', '0'), (7347, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '460', '1210', '4.5', '111', 'Pune University', 'Computer Engineering', '70', '100', '0'), (7348, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (7349, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (7350, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3', '107', 'IT BHU', 'Electronics Engg', '8.93', '10', '0'), (7351, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'Anna University', 'CS', '8.8', '10', '0'), (7352, '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '158', '323', '4', '110', 'Punjabi University', 'cs', '82', '100', '0'), (7353, '11', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '149', '312', '3.5', '107', 'NIT Nagpur', 'CSE', '9.19', '10', '0'), (7354, '11', 'Admit', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46'), (7355, '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7356, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '710', '1510', 'None', '103', 'NIT Kurukshetra', 'Computer Engineering', '9', '10', '0'), (7357, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '163', '163', '326', '4.5', 'None', 'lafayette college', 'engineering', '0', '0', '0'), (7358, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '150', '318', '4', '104', 'NIT Rourkela', 'Computer Science', '9.26', '10', '0'), (7359, '11', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '770', '490', '1260', '3.5', '105', 'VTU', 'Mechanical Engineering', '69', '100', '0'), (7360, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (7361, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (7362, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '161', '322', '3.5', '115', 'None', '0', '0', '0', '0'), (7363, '11', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (7364, '11', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (7365, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (7366, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (7367, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '115', 'MU', 'CS', '75', '100', '0'), (7368, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (7369, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7370, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '158', '321', '4', '110', 'IT BHU', 'Mechanical Engg.', '8.53', '10', '0'), (7371, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '110', 'Nirma Institute of Technology', 'CS', '8.76', '10', '0'), (7372, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (7373, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '165', '155', '320', '3', '110', 'Thapar University', 'Mechanical', '7.83', '10', '0'), (7374, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '166', '163', '329', '4.5', '114', 'BITS Hyderabad', 'Civil Engineering', '8.95', '10', '0'), (7375, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (7376, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '168', '151', '319', '4', '112', 'None', '0', '8.2', '10', '0'), (7377, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (7378, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (7379, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '117', 'NIT Warangal', 'CSE', '8.53', '10', '0'), (7380, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (7381, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '166', '163', '329', '5', 'None', 'VTU', 'Electronics and Communication', '8.2', '10', '0'), (7382, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (7383, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '164', '153', '317', '4', '108', 'SSN College of Engineering', 'CSE', '84.45', '100', '0'), (7384, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '150', '306', '4', '104', 'VIT', 'Information Technology', '9.1', '10', '0'), (7385, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (7386, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (7387, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (7388, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '159', '319', '4', '114', 'NIT Allahabad', 'Electronics & Communication', '7.21', '10', '0'), (7389, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '158', '328', '4', '115', 'MSRIT', 'Computer Science', '8.94', '10', '0'), (7390, '11', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '770', '600', '1370', '4', 'None', 'University of California Berkeley', 'Electrical Engineering and Computer Science', '3.83', '4', '0'), (7391, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '109', 'University College of Engineering Osmania University', 'Mechanical Engineering', '9.14', '10', '0'), (7392, '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VNIT Nagpur', 'EEE', '8.84', '10', '0'), (7393, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (7394, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (7395, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (7396, '11', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (7397, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (7398, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'PESIT', 'Information Science', '78', '100', '0'), (7399, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7400, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.3', '10', '0'), (7401, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '112', 'NITK Surathkal', 'Computer Science', '0', '0', '0'), (7402, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '159', '320', '4', '111', 'MU', 'Computer SCience', '81.29', '100', '12'), (7403, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '5', '111', 'R V College of Engineering', 'Computer Science', '9.32', '10', '0'), (7404, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (7405, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '152', '320', '3.5', '101', 'D J Sanghvi', 'EXTC', '76.42', '100', '0'), (7406, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '152', '312', '4', '110', 'VTU', 'ECE', '74.6', '100', '0'), (7407, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (7408, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '720', '1510', '5', '290', 'University of Mumbai', 'Information Technology', '69.4', '100', '0'), (7409, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '550', '1340', '4', '267', 'University of Madras', 'CS', '88', '100', '0'), (7410, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (7411, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (7412, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (7413, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '97', 'None', 'ECE', '9.38', '100', '0'), (7414, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '620', '1390', '4', '111', 'Pune University', 'Mechanical', '66', '100', '0'), (7415, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (7416, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '3.5', '97', 'R V College of Engineering', 'Telecommuniction Engineering', '83', '100', '0'), (7417, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (7418, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '106', 'VIT', 'civil', '9.27', '10', '0'), (7419, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', 'None', 'VTU', 'Information Science', '83.07', '100', '25'), (7420, '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '800', '720', '1520', '4', '116', 'SRM University', 'Biotech', '8.71', '10', '0'), (7421, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '510', '1300', '4', '103', 'None', '0', '0', '0', '0'), (7422, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (7423, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (7424, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '159', '327', '4', '100', 'IIIT Allahabad', 'IT', '8.54', '10', '0'), (7425, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (7426, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '590', '1360', '3.5', '104', 'BITS Pilani', 'EEE', '9.18', '10', '0'), (7427, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '3.5', '112', 'BMSCE', 'Infomation Science and Engineering', '76.2', '100', '0'), (7428, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (7429, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '154', '323', '3', '105', 'Delhi College Of Engineeing', 'Information Technology', '71.06', '100', '0'), (7430, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (7431, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (7432, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (7433, '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7434, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '5.5', '109', 'VTU', 'CSE', '9.8', '10', '0'), (7435, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (7436, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (7437, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (7438, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (7439, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (7440, '11', 'Admit', 'MS', 'Systems Engineering', 'Fall ', '2012', '160', '154', '314', '4.5', '117', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '64.23', '100', '0'), (7441, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '4', 'None', 'UMass Lowell', 'Electrical And Computer Engineering', '0', '0', '0'), (7442, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '167', '157', '324', '4.5', '109', 'NIT - Trichy', 'Mechanical Engineering', '8.8', '10', '0'), (7443, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3.5', '108', 'Nirma Institute of Technology', 'INFORMATION TECHNOLOGY', '8.1', '10', '0'), (7444, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'BITS Pilani', 'civil engg', '7.99', '10', '0'), (7445, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '153', '322', '4.5', '118', 'SSN College of Engineering', 'Chemical', '8.9', '10', '0'), (7446, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', 'None', 'U of Washington', 'Computer Science and Engineering', '3.78', '4', '0'), (7447, '11', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (7448, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '155', '316', '4', '108', 'BITS Dubai', 'ECE', '9.06', '10', '0'), (7449, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (7450, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '470', '1270', '3.5', '105', 'IIT Madras', 'civil engineering', '8.4', '10', '0'), (7451, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (7452, '11', 'Admit', 'MS', 'physics', 'Fall ', '2011', '790', '670', '1460', '4.5', '114', 'IIT Madras', 'Physics', '9.45', '10', '0'), (7453, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7454, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '690', '1470', '3.5', '115', 'Bharati Vidyapeeth', 'CSE', '80.5', '100', '0'), (7455, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3.5', '109', 'VTU', 'EC', '75', '100', '0'), (7456, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (7457, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '600', '1370', '4', '113', 'SASTRA', 'Electronics and Communications Engineeing', '8.5', '10', '0'), (7458, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '113', 'R V College of Engineering', 'CSE', '9.42', '10', '0'), (7459, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (7460, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (7461, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (7462, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (7463, '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (7464, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '680', '590', '1270', '3.5', '106', 'MDU', 'UIET', '78', '100', '0'), (7465, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '152', '315', '3.5', 'None', 'Stony Brook University', 'Chemistry', '3.5', '4', '0'), (7466, '11', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2009', '750', '680', '1430', '4', '113', 'JNTU', 'Mechanical Engineering', '0', '0', '0'), (7467, '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '160', '155', '315', '3', '107', 'MSRIT', 'Chemical Engineering', '8.5', '10', '0'), (7468, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (7469, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7470, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '510', '1310', '3', '111', 'ITAM', 'Digital Systems', '7.83', '10', '0'), (7471, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '800', '690', '1490', '6', '117', 'VTU', 'Mechanical Engineering', '74', '100', '0'), (7472, '11', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '570', '1370', '4.5', '119', 'Sri Ramakrishna Institute of Technology', 'Electrical Engineering', '80', '100', '0'), (7473, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (7474, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (7475, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '154', '313', '3', '107', 'Vidyalankar Institute of Technology', 'Electronics & Telecommunications', '66.58', '100', '0'), (7476, '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (7477, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (7478, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7479, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '150', '311', '4', '99', 'MSRIT', 'CSE', '9.13', '10', '8'), (7480, '11', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (7481, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '111', 'Jadavpur University', 'Electronics and Telecomm Engg.', '9.26', '10', '0'), (7482, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (7483, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (7484, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (7485, '11', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7486, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (7487, '11', 'Admit', 'MS', 'statistics', 'Fall ', '2011', '790', '610', '1400', '3.5', '111', 'BITS Pilani', 'Maths and Engg', '8.72', '10', '0'), (7488, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (7489, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (7490, '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '167', '153', '320', '4', '105', 'IIT (BHU) Varanasi', 'Ceramic Engineering', '7.02', '10', '24'), (7491, '11', 'Admit', 'MS', 'Master of engineering management', 'Fall ', '2013', '164', '152', '316', '4', 'None', "Queen's University", 'Civil', '3.3', '4', '0'), (7492, '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '740', '600', '1340', '3', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '7.8', '10', '0'), (7493, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (7494, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '720', '410', '1130', '3.5', '101', 'SJCE', 'Information Science', '78', '100', '0'), (7495, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '118', 'SASTRA', 'Civil Engineering', '9.45', '10', '0'), (7496, '11', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '610', '1400', '4', '105', 'VTU', 'EEE', '78', '100', '0'), (7497, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', 'None', 'None', 'VTU', 'Computer Science', '80', '100', '0'), (7498, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '170', '154', '324', 'None', '111', 'NIT Kurukshetra', 'Electrical Engineering', '9.72', '10', '0'), (7499, '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'MU', 'Computer', '71.06', '100', '0'), (7500, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (7501, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', '4', '110', 'MSRIT', 'Computer Science and Engineering', '9.1', '10', '0'), (7502, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (7503, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (7504, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '4', '109', 'PESIT', 'Information Science', '9.47', '10', '39'), (7505, '11', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (7506, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', '112', 'NIT Srinagar', 'chemical Engineering', '7.41', '10', '0'), (7507, '11', 'Admit', 'MS', 'biomedical sciences', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7508, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (7509, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (7510, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (7511, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '640', '1440', '4.5', '112', 'NIT Warangal', 'Mechanical Engineering', '9.15', '10', '0'), (7512, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (7513, '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (7514, '11', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (7515, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '147', '309', '3', '104', 'Anna University', 'Computer Science', '9.41', '10', '0'), (7516, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (7517, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (7518, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '163', '153', '316', '4', '116', 'BITS Pilani', 'EEE', '9.27', '10', '0'), (7519, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (7520, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '560', '1360', '4', '113', 'JNTU', 'ECE', '3.62', '4', '0'), (7521, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (7522, '11', 'Admit', 'MS', 'health administration', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7523, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (7524, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '155', '318', '5.5', '118', 'None', '0', '0', '0', '0'), (7525, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '149', '314', '3', '102', 'Maulana Azad National Institute of Technology', 'Computer Science and Engineering', '8.43', '10', '0'), (7526, '11', 'Admit', 'MS', 'physics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'UCLA', 'Physics', '3.86', '4', '0'), (7527, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '111', 'BITS Pilani', 'Computer Science', '9.23', '10', '0'), (7528, '11', 'Admit', 'MS', 'food science', 'Fall ', '2011', '790', '540', '1330', '3', '100', 'University of Rajasthan', 'Biotechnology', '68.5', '100', '0'), (7529, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (7530, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (7531, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7532, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (7533, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (7534, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (7535, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (7536, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (7537, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '790', '710', '1500', '4', '108', 'SASTRA', 'ECE', '0', '0', '0'), (7538, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '157', '319', '4.5', '108', 'VIT University', 'CSE', '8.8', '10', '0'), (7539, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (7540, '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'instrumentation and control', '0', '100', '0'), (7541, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (7542, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '4', '102', 'National institue of technology jalandhar', 'Ec', '66', '100', '0'), (7543, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '570', '1370', '40', '112', 'MU', 'Mech ENgg', '3.62', '4', '0'), (7544, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '540', '1340', '4', '104', 'MIT Pune', 'Computer Science', '72', '100', '0'), (7545, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '3.5', '115', 'MNNIT', 'Computer Science and Engineering', '9.97', '10', '0'), (7546, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'IIT Allahabad', 'Information Technology', '9.17', '10', '0'), (7547, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '510', '1290', 'None', '106', 'R V College of Engineering', 'Computer science', '0', '0', '0'), (7548, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '490', '1290', '3', '102', 'Delhi College Of Engineeing', 'IT', '76.25', '100', '0'), (7549, '11', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '720', '480', '1200', '4', '114', 'Pune University', 'COMPUTER ENGINEERING', '73', '100', '0'), (7550, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '105', 'NIT Jaipur', 'Computer Engineering', '8.85', '10', '0'), (7551, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '780', '700', '1480', '3', '111', 'IIT Guwahati', 'Civil Engineering', '9.29', '10', '0'), (7552, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '117', 'R V College of Engineering', 'Mechanical Engg', '9.07', '10', '0'), (7553, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '162', '328', '4.5', '118', 'College of Engineering and Technology', 'Computer Science and Engineering', '9.09', '10', '90'), (7554, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (7555, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (7556, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (7557, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (7558, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (7559, '11', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (7560, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3', '101', 'Anna University', 'EEE', '9.1', '10', '0'), (7561, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (7562, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3.5', '104', 'NIT Silchar', 'cse', '8.14', '10', '0'), (7563, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '163', '162', '325', '4', 'None', 'Colgate University', 'Chemistry', '3.5', '4', '0'), (7564, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (7565, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '790', '1580', '4.5', '113', 'Anna University', 'Information Technology', '81', '100', '0'), (7566, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '590', '1390', '3', '109', 'IIT Roorkee', 'ECE', '8.744', '10', '0'), (7567, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (7568, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (7569, '11', 'Admit', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '570', '1370', '4', '111', 'NIT-Allahabad', 'CSE', '9.53', '10', '0'), (7570, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '318', '153', '471', '4.5', '106', 'VIT University', 'Electronics and Communication', '8.97', '10', '0'), (7571, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '159', '163', '322', 'None', 'None', 'NIT Allahabad', 'Production & Industrial Engg', '7.8', '10', '0'), (7572, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '169', '335', '4.5', '119', 'VJTI', 'Mechanical Engg.', '8.5', '10', '0'), (7573, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'NIT Tirchy', 'ECE', '7.45', '10', '0'), (7574, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (7575, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (7576, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '700', '1480', '5', '118', 'None', '0', '0', '0', '0'), (7577, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '570', '1350', '4', '106', 'VTU', 'Electronics and communication', '88', '100', '0'), (7578, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (7579, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '540', '1310', '3', '96', 'CEG', 'ECE', '8.48', '10', '0'), (7580, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '163', '331', '3.5', '118', 'Thapar University', 'Mechanical', '9.06', '10', '0'), (7581, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '660', '1460', '4', '109', 'PESSE (VTU)', 'ECE', '86', '100', '0'), (7582, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '100', 'CEG', 'Ece', '8.8', '10', '0'), (7583, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (7584, '11', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '110', 'Manipal Institue of Technology', 'Computer Science', '9.32', '10', '0'), (7585, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (7586, '11', 'Admit', 'MS', 'Veterinary & Animal Science', 'Fall ', '2013', '159', '152', '311', '4', '113', 'Kerala Agricultural University', 'Veterinary medicine', '7.6', '10', '0'), (7587, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '680', '1480', '3', '109', 'VTU', 'IS', '79', '100', '0'), (7588, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '620', '1400', '3.5', '108', 'BITS Pilani', 'Electronics and instrumentation and Biology', '7.58', '10', '0'), (7589, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '159', '323', '3.5', '102', 'NIT Tirchy', 'Production Engg', '8.5', '10', '0'), (7590, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (7591, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '116', 'NITK Surathkal', 'CS', '9.13', '10', '0'), (7592, '11', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2011', '800', '650', '1450', '5.5', '120', 'NIT-C', 'architecture', '8.23', '10', '0'), (7593, '11', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (7594, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (7595, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '158', '325', 'None', 'None', 'NIT', 'Computer Science', '9.07', '10', '12'), (7596, '11', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'NIT Karnataka', 'Electronics and Communcation Engineering', '8.56', '10', '0'), (7597, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (7598, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (7599, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (7600, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3', '98', 'Jaypee Institute of Information Technology', 'IT', '8.3', '10', '0'), (7601, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (7602, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (7603, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (7604, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (7605, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '168', '155', '323', '3.5', '108', 'MU', 'Electronics', '62', '100', '0'), (7606, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (7607, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (7608, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (7609, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '156', '320', '4', '111', 'DA-IICT', 'ICT', '6.74', '10', '0'), (7610, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (7611, '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '730', '720', '1450', '4', '110', 'CEG', 'ECE', '7.1', '10', '0'), (7612, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '160', '326', '4.5', '120', 'BITS Pilani', 'Mechanical Engineering', '8.04', '10', '0'), (7613, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3', '87', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7614, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (7615, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '105', 'MNNIT', 'CSE', '8.3', '10', '0'), (7616, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '161', '322', '4', '110', 'BITS Goa', 'CS', '8', '10', '0'), (7617, '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (7618, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (7619, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (7620, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (7621, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '15', '170', '159', '329', '4', '110', 'Delhi University', 'Electronics and Communication', '71.4', '100', '45'), (7622, '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (7623, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (7624, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (7625, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (7626, '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '690', '440', '1130', '3', '81', 'Anna University', 'Computer Science', '85', '100', '0'), (7627, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (7628, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (7629, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (7630, '11', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (7631, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (7632, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (7633, '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (7634, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (7635, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '3.5', '112', 'Bharati Vidyapeeth', 'Information Technology', '3.9', '4', '0'), (7636, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (7637, '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'DA-IICT', 'Information and Communication Technology', '8.87', '10', '0'), (7638, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '4', '112', 'BITS Goa', 'Bilogical Science and Computer Science', '7.45', '10', '0'), (7639, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '760', '800', '1560', '5.5', '119', 'R V College of Engineering', 'ECE', '80.8', '100', '0'), (7640, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (7641, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (7642, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (7643, '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall', 'None', '750', '740', '1490', '3', '117', 'UPTU', 'Electronics & Instrumentation', '70', '100', '0'), (7644, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (7645, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (7646, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'UIET Panjab University', 'Engineering', '76', '100', '0'), (7647, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (7648, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (7649, '11', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (7650, '11', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (7651, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '630', '1420', '5', '293', 'MU', 'Electronics', '72.97', '100', '0'), (7652, '11', 'Reject', 'MS', 'Construction Management', 'Fall ', '2015', '160', '155', '315', '4', '112', 'Manipal Institue of Technology', 'Architecture', '0', '0', '0'), (7653, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '4', '100', 'MDU', 'ece', '60', '100', '0'), (7654, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '650', '1450', '3', '116', 'IIT BHU', 'Mechanical', '72.4', '100', '0'), (7655, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (7656, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', '3.5', '117', 'University of Cape Town', 'Engineering', '69.9', '100', '0'), (7657, '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '780', '570', '1350', 'None', '101', 'UPTU', 'Information Technology', '71', '100', '0'), (7658, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (7659, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4.5', '112', 'Manipal Institue of Technology', 'CS', '3.5', '4', '0'), (7660, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '155', '325', '4', '113', 'IIT Guwahati', 'Computer Science', '6.8', '10', '0'), (7661, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', 'None', 'VTU', 'CS', '77', '100', '0'), (7662, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (7663, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '160', '162', '322', '4', '115', 'BITS Hyderabad', 'Chemical Engineering', '8.07', '10', '0'), (7664, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (7665, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (7666, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (7667, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (7668, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (7669, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (7670, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '158', '328', '4.5', '114', 'NIT Kurukshetra', 'Mech', '9.74', '10', '0'), (7671, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (7672, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (7673, '11', 'Reject', 'MS', 'physics', 'Fall ', '2014', '167', '156', '323', '4', '105', 'NIT Calicut', 'Physics', '8.4', '10', '0'), (7674, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (7675, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (7676, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '143', '311', '3.5', '102', 'None', '0', '62.27', '100', '0'), (7677, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (7678, '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (7679, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (7680, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (7681, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (7682, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (7683, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (7684, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (7685, '11', 'Reject', 'MS', 'food science', 'Fall ', '2012', '740', '470', '1210', '4', '104', 'MU', 'Biotechnology', '70.83', '100', '0'), (7686, '11', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2013', '780', '610', '1390', 'None', '107', 'Amity University', 'Computer Science', '8.53', '10', '0'), (7687, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (7688, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '110', 'IIT Kharagpur', 'CS', '8.5', '10', '0'), (7689, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (7690, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '4', '105', 'Delhi College Of Engineeing', 'Computer Engineering', '62.5', '100', '0'), (7691, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (7692, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (7693, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (7694, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (7695, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (7696, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (7697, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (7698, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (7699, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (7700, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (7701, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (7702, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '166', '325', '4', '114', 'MU', 'Computer Engg', '65', '100', '0'), (7703, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (7704, '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (7705, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (7706, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (7707, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (7708, '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (7709, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7710, '11', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (7711, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (7712, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (7713, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (7714, '11', 'Reject', 'MS', 'Master of engineering management', 'Fall', 'None', '162', '149', '311', '3.5', '107', 'Amrita School of Engineering', 'Mechanical', '7.66', '10', '0'), (7715, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (7716, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (7717, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (7718, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (7719, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (7720, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '106', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '8.54', '10', '0'), (7721, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '109', 'BITS Pilani', 'computer science', '8.4', '10', '0'), (7722, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7723, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (7724, '11', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (7725, '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '108', 'R V College of Engineering', 'Computer Science', '78.5', '100', '0'), (7726, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (7727, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (7728, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (7729, '11', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (7730, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (7731, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '790', '470', '1260', '3', '100', 'University of Mumbai', 'Computer Science & Engineering', '59.67', '100', '0'), (7732, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (7733, '11', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (7734, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (7735, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (7736, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (7737, '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (7738, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '780', '560', '1340', '3', '102', 'MU', 'Computer Engineering', '74', '100', '0'), (7739, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '610', '1390', '3.5', '112', 'BITS Pilani', 'Computer science', '8.44', '10', '0'), (7740, '11', 'Reject', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2011', '740', '440', '1180', '4', '104', 'NIT Surat', 'Chemical', '9.34', '10', '0'), (7741, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '163', '159', '322', '3.5', '98', 'IIT Madras', 'Aerospace', '8.9', '10', '0'), (7742, '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '390', '1150', '3', '99', 'NMIMS', 'Electronics', '3.3', '4', '0'), (7743, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (7744, '11', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (7745, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (7746, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (7747, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '108', 'NIT Jaipur', 'Electrical Engg.', '8.41', '10', '0'), (7748, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (7749, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (7750, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (7751, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (7752, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '510', '1260', '3', '98', 'MU', 'Chemical Engg', '66.7', '100', '0'), (7753, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (7754, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (7755, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (7756, '11', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (7757, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4', '111', 'NIT', 'Computer Science', '9', '10', '0'), (7758, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '750', '1550', '5', '109', 'IIT Kharagpur', 'Aerospace Engg.', '6.71', '10', '0'), (7759, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (7760, '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (7761, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '4', '110', 'R V College of Engineering', 'ECE', '73.9', '100', '0'), (7762, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '152', '311', '3', '103', 'VTU', 'Computer Science', '81', '100', '0'), (7763, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (7764, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', 'None', 'SFIT mumbai', 'EXTC', '70', '100', '0'), (7765, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (7766, '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2011', '770', '530', '1300', '4', '113', 'SVCE', 'Biotechnology', '71.38', '100', '0'), (7767, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (7768, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (7769, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (7770, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (7771, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (7772, '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2015', '170', '157', '327', '3', '99', 'Osmania University', 'Mechanical Engineering', '79.71', '100', '29'), (7773, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '111', 'NIT Nagpur', 'CSE', '7.9', '10', '0'), (7774, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (7775, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (7776, '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7777, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '92', 'MIT Pune University', 'Mechanical', '68', '100', '0'), (7778, '11', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (7779, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (7780, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (7781, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (7782, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (7783, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (7784, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '155', '320', '3', '110', 'NIT Tirchy', 'Civil Engineering', '9.3', '10', '0'), (7785, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (7786, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3.5', '111', 'GZSCET Punjab Technical University', 'Computer Science and Engineering', '78.78', '100', '0'), (7787, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '158', '155', '313', '4.5', '115', 'MSRIT', 'Mechanical Engineering', '8.53', '10', '41'), (7788, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (7789, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (7790, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '104', 'CEG', 'Computer Science', '8.96', '10', '0'), (7791, '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (7792, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (7793, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7794, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '4', '107', 'NITK Surathkal', 'Computer Science', '7.93', '10', '0'), (7795, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (7796, '11', 'Reject', 'MS', 'analytics', 'Fall ', '2012', '166', '152', '318', 'None', '109', 'NIT-Trichy', 'Mechanical Engg.', '7.13', '10', '0'), (7797, '11', 'Reject', 'MS', 'CS', 'Fall ', '2012', '168', '156', '324', '4.5', '111', 'BITS Pilani', 'Computer Science', '8.19', '10', '0'), (7798, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (7799, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (7800, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', 'None', 'CEG', 'B.Tech/ IT', '8.783', '10', '0'), (7801, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (7802, '11', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (7803, '11', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7804, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (7805, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (7806, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (7807, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (7808, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (7809, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (7810, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (7811, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (7812, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (7813, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '650', '1400', '3.5', '105', 'SSN College of Engineering', 'Electrical and Electronics', '80', '100', '0'), (7814, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '170', '153', '323', '3.5', '108', 'IIT Kanpur', 'Mechancial', '9', '10', '0'), (7815, '11', 'Reject', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (7816, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (7817, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (7818, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (7819, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (7820, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '4', '115', 'Dharamsinh Desai University', 'Computer Engineering', '75.25', '100', '0'), (7821, '11', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '142', '303', '3', '99', 'Goa University', 'etc', '58.47', '100', '0'), (7822, '11', 'Reject', 'MS', 'MIS/CS', 'Fall ', '2012', '165', '151', '316', '4', '110', 'Pune University', 'Information Technology', '67.26', '100', '0'), (7823, '11', 'Reject', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (7824, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (7825, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (7826, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (7827, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '570', '1340', '4.5', '114', 'PESIT', 'Computer Science and Engg', '82', '100', '0'), (7828, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (7829, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '670', '1420', '2.5', '105', 'DA-IICT', 'CSE', '2.53', '4', '0'), (7830, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (7831, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (7832, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (7833, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '4.5', '106', 'NIT Tirchy', 'CS', '8.66', '10', '0'), (7834, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (7835, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (7836, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (7837, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (7838, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (7839, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '159', '143', '302', '3', '92', 'CBIT', 'Chem Engg', '65', '100', '0'), (7840, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (7841, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (7842, '11', 'Reject', 'MS', 'CS / MSIS / ITM', 'Fall', 'None', '760', '550', '1310', '4', '110', 'Model Engineering College', 'Computer Science and Engineering', '76.1', '100', '0'), (7843, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (7844, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (7845, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (7846, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '155', '317', '4', '109', 'None', '0', '7.94', '10', '48'), (7847, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (7848, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (7849, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (7850, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (7851, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (7852, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (7853, '11', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '157', '155', '312', '3.5', '102', 'B M S College of Engineering', 'Telecom', '8.33', '10', '30'), (7854, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (7855, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (7856, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (7857, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall', 'None', '169', '157', '326', '3.5', '102', 'VIT University', 'Chemical Engineering', '8.81', '10', '0'), (7858, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (7859, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (7860, '11', 'Reject', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (7861, '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2014', '168', '165', '333', '5.5', '118', 'BITS Pilani', 'Biological Sciences', '9.18', '10', '0'), (7862, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (7863, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (7864, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '670', '1460', '3.5', '104', 'Manipal Institue of Technology', 'Electrical & Electronics', '8.36', '10', '0'), (7865, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (7866, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (7867, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '710', '660', '1370', '4', '112', 'UPTU', 'Electrical', '74.26', '100', '0'), (7868, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (7869, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (7870, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7871, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (7872, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '158', '320', '3.5', '111', 'Manipal Institue of Technology', 'EEE', '8.2', '10', '0'), (7873, '11', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '800', '680', '1480', '5', '117', 'BITS Pilani', 'Biological Sci Computer Science', '8.5', '10', '0'), (7874, '11', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall', 'None', '162', '150', '312', '4', 'None', 'R V College of Engineering', 'Mechanical', '62.4', '100', '0'), (7875, '11', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '590', '1380', '3.5', '109', 'Lakshmi Niwas Mittal Institute of Information Technology Jaipur', 'Communication and Computer Engineering', '8.3', '10', '0'), (7876, '11', 'Reject', 'MS', 'nanotechnology', 'Fall ', '2013', '168', '160', '328', '3', '111', 'Jaypee Institute of Information Technology', 'Electronics & Communication', '6.5', '10', '0'), (7877, '11', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '73.4', '100', '0'), (7878, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (7879, '11', 'Reject', 'MS', 'MEM', 'Fall ', '2014', '168', '157', '325', '4.5', '116', 'GRIET', 'ECE', '78', '100', '0'), (7880, '11', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '510', '1310', '3.5', '104', 'Yanbian University of Science & Technology', 'EE', '3.2', '4', '0'), (7881, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '148', '306', '3.5', '102', 'BIT Mesra', 'ECE', '7.6', '10', '0'), (7882, '11', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (7883, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '323', '159', '482', '4', '115', 'NIT Jalandhar', 'Instrumentation and Control', '8.68', '10', '24'), (7884, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (7885, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (7886, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (7887, '11', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '780', '460', '1240', '3.5', '106', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.25', '10', '0'), (7888, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (7889, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (7890, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (7891, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4.5', '116', 'BIT Mesra', 'ECE', '8.24', '10', '0'), (7892, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '105', 'Jadavpur University', 'Mechanical Engineering', '8.12', '10', '0'), (7893, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (7894, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (7895, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'NIT Karnataka', 'Mechanical Engineering', '9.47', '10', '0'), (7896, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '163', '159', '322', '3', '98', 'NIT Silchar', 'Civil Engineering', '6.54', '10', '0'), (7897, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (7898, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (7899, '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '164', '144', '308', '3', '98', 'G.H.Patel college of Engg. & Tech.', 'EC', '8.67', '10', '0'), (7900, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (7901, '11', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '770', '600', '1370', '4.5', '107', 'NIT Bhopal', 'Bioinformatics', '8.14', '10', '0'), (7902, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (7903, '11', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (7904, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (7905, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (7906, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '163', '331', '4.5', '110', 'West Bengal University Of Technology', 'Electrical engg', '8.07', '10', '30'), (7907, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (7908, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (7909, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (7910, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (7911, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', '114', 'MU', 'Information Technology', '63.5', '100', '0'), (7912, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '113', 'Pune University', 'Computer Science', '67', '100', '0'), (7913, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (7914, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (7915, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (7916, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (7917, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (7918, '11', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (7919, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (7920, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (7921, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (7922, '11', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (7923, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (7924, '11', 'Reject', 'MS', 'Master of engineering management', 'Fall ', '2015', '163', '155', '318', '3.5', '112', 'Govt. College Of Engineering Pune (CoEP)', 'Production Engineering (Sandwich)', '7.1', '10', '18'), (7925, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (7926, '11', 'Reject', 'MS', 'Human Resources', 'Fall ', '2014', '160', '156', '316', '4', '104', 'VTU', 'Eⅇ', '61', '100', '0'), (7927, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '690', '1460', 'None', '118', 'Anna University', 'Computer Engineering', '73', '100', '0'), (7928, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (7929, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (7930, '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (7931, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (7932, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', '2.5', '101', 'NIT Calicut', 'Computer Science and Enginering', '8.28', '10', '0'), (7933, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (7934, '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (7935, '11', 'Admit', 'M.Eng.', 'Engineering Management', 'Fall', '2019', '170', '150', '320', '3.5', '116', 'Motilal Nehru National Institute of Technology Allahabad', 'Mechanical Engineering', '8.83', '10', '0'), (7936, '13', 'Admit', 'MSc', 'Computer Science', 'Fall', '2019', '157', '147', '304', '4', '-1', 'SRM University', 'Computer Science', '80.6', '100', '0'), (7937, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '101', 'VTU', 'telecommunications', '86.19', '100', '0'), (7938, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '144', '302', '4', '107', 'MU', 'CS', '0', '0', '0'), (7939, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (7940, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3', '89', 'Dr. M.G.R. University', 'ECE', '8.86', '10', '0'), (7941, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '106', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.71', '10', '0'), (7942, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (7943, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (7944, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (7945, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (7946, '13', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '490', '1200', '3.5', '108', 'JNTU', 'EEE', '62', '100', '0'), (7947, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (7948, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (7949, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (7950, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '167', '150', '317', '4', '106', 'Anna University', 'ECE', '73.34', '100', '47'), (7951, '13', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (7952, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (7953, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (7954, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '630', '1370', '4.5', 'None', 'VTU', 'Electronics and Communication', '64', '100', '0'), (7955, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (7956, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (7957, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (7958, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'MU', 'Computer', '67.4', '100', '0'), (7959, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (7960, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (7961, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '150', '311', '4.5', '104', 'University of Mumbai', 'Computer Engineering', '62.2', '100', '0'), (7962, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7963, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '470', '1270', '3', '100', 'ANU', 'ECE', '78.6', '100', '0'), (7964, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '3', '92', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '70', '100', '0'), (7965, '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (7966, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (7967, '13', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (7968, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7969, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (7970, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (7971, '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '720', '530', '1250', '3.5', '93', 'Amity School of Engineering and Technology', 'ECE', '6.43', '10', '0'), (7972, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '151', '308', '4', '104', 'Anna University', 'IT', '71', '100', '0'), (7973, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7974, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (7975, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (7976, '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (7977, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (7978, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '112', 'WBUT', 'ECE', '8.16', '10', '0'), (7979, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '165', '150', '315', '4', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communication Engineering', '63', '100', '0'), (7980, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (7981, '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (7982, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7983, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (7984, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (7985, '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '780', '530', '1310', '3', '92', 'klce', 'IT', '74', '100', '0'), (7986, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (7987, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '320', '1020', '3.5', '8', 'VIIT', 'E&TC;', '67', '100', '0'), (7988, '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '320', '1120', 'None', 'None', 'VIT University', 'BTECH-I.T', '8.9', '10', '0'), (7989, '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (7990, '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '740', '470', '1210', '3', '106', 'MDU', 'EEE', '58', '100', '0'), (7991, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '154', '149', '303', '3.5', '97', 'None', '0', '0', '0', '0'), (7992, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (7993, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7994, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (7995, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (7996, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7997, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '144', '299', '3.5', '97', 'MU', 'Information Technology', '58', '100', '0'), (7998, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (7999, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (8000, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (8001, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '152', '149', '301', '2.5', 'None', 'Acharya Nagarjuna University', 'electrical', '0', '0', '0'), (8002, '13', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2012', '720', '580', '1300', '2.5', '84', 'Pune University', 'E&TC;', '58', '100', '0'), (8003, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'IT', '7.32', '10', '0'), (8004, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (8005, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (8006, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '109', 'JNTU', 'Computer Science', '70', '100', '0'), (8007, '13', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', '160', '149', '309', '3', '102', 'IIT Madras', 'Biotechnology', '7.23', '10', '54'), (8008, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (8009, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (8010, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2015', '154', '151', '305', '3.5', '107', 'University of Pune', 'Electronics & Telecommunication', '53', '100', '0'), (8011, '13', 'Admit', 'MS', 'Information Security', 'Spring ', '2014', '1050', '350', '1400', '3', 'None', 'None', '0', '0', '0', '0'), (8012, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (8013, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (8014, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '700', '400', '1100', '3', '102', 'JNTU', 'ECE', '75', '100', '0'), (8015, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (8016, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '150', '149', '299', '2.5', '105', 'SNIST', 'CSE', '63.2', '100', '0'), (8017, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '320', '1050', '2.5', '86', 'MU', 'extc', '61.31', '100', '0'), (8018, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (8019, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '380', '1130', '2.5', '88', 'SNIST', 'computer science', '76', '100', '0'), (8020, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (8021, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (8022, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8023, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'None', '0', '0', '0', '0'), (8024, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '4', '94', 'VTU', 'Computer Science', '64', '100', '50'), (8025, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (8026, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8027, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (8028, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '149', '305', '3.5', '99', 'University of Mumbai', 'Electronics and Telecommunication', '60.2', '100', '0'), (8029, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '96', 'MU', 'computers', '64', '100', '0'), (8030, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '149', '151', '300', '3', '100', 'Sathyabama University', 'ECE', '65', '100', '0'), (8031, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (8032, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (8033, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '103', 'None', 'CSE', '3.75', '4', '0'), (8034, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '161', '320', '3', '108', 'Nitte institute of technology', 'Electronics and communication', '7.95', '10', '0'), (8035, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (8036, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (8037, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (8038, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3.5', '98', 'GVPCOE Vizag', 'CSE', '68', '100', '0'), (8039, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (8040, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '148', '305', '2.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8041, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (8042, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (8043, '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '420', '1200', '3', '99', 'Iran', '0', '0', '0', '0'), (8044, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (8045, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (8046, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '750', 'None', '750', 'None', '100', 'NMIT', 'ECE', '0', '0', '0'), (8047, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '660', '1390', '5', '300', 'MU', 'Computers', '68.27', '100', '0'), (8048, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (8049, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (8050, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '710', '600', '1310', '2.5', '88', 'MU', 'EXTC', '56.4', '100', '0'), (8051, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '450', '1190', '4', '273', 'U.P.Technical University', 'Eleectronics and Communication', '66', '100', '0'), (8052, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'SIES Graduate School of Technology', 'Computer', '53.38', '100', '0'), (8053, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (8054, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (8055, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (8056, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'Information Technology', '7.01', '10', '0'), (8057, '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '161', '146', '307', '3.5', '99', 'University of Pune', 'EC', '67.53', '100', '36'), (8058, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '3', '107', 'MU', 'Computer Engineering', '63', '100', '0'), (8059, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3.5', 'None', 'Velammal Engineering College', 'BE - computer science', '83', '100', '0'), (8060, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8061, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '145', '309', 'None', '82', 'Vignan Institute of Technology and Science', 'ECE', '8.7', '100', '0'), (8062, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '152', '315', '3', '95', 'UIET Punjab University', 'Information Technology', '62', '100', '0'), (8063, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (8064, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '166', '159', '325', '4', '116', 'VIT', 'IT', '8.67', '10', '25'), (8065, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (8066, '13', 'Admit', 'MS', 'CyberSecurity', 'Fall ', '2013', '160', '146', '306', '2.5', '90', 'Rajasthan Technical University', 'Computer Engineering', '74.4', '100', '0'), (8067, '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3.5', '106', 'RD Nation', 'BSC IT', '68', '100', '24'), (8068, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (8069, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (8070, '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '750', '610', '1360', '3.5', '110', 'VTU', 'Electronics and Communications', '70.66', '100', '0'), (8071, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (8072, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (8073, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (8074, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2008', '790', '350', '1140', '3', '104', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (8075, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '138', '290', '4', '95', 'K J Somaiya College of Engiineering', 'Electronics', '67', '100', '0'), (8076, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (8077, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (8078, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (8079, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (8080, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (8081, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '108', 'NIT Kurukshetra', 'Computers', '9.3376', '10', '0'), (8082, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (8083, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8084, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BNMIT', 'ECE', '0', '0', '0'), (8085, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (8086, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (8087, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3', '98', 'GGSIPU', 'computer science', '80', '100', '0'), (8088, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '141', '308', '2.5', '86', 'JNTU', 'electronics and communication engineering', '67.8', '100', '0'), (8089, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (8090, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (8091, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '150', '309', '2.5', '95', 'MU', 'Electronics and telecommunication', '63.5', '100', '39'), (8092, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (8093, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '3.5', '110', 'VTU', 'electronics', '73', '100', '0'), (8094, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '760', '330', '1090', '3', '95', 'JNTU', 'CSE', '67', '100', '0'), (8095, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (8096, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '370', '1170', '3', '100', 'CVRCE', 'cse', '68', '100', '0'), (8097, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (8098, '13', 'Admit', 'MS', 'Computational Science', 'Fall', 'None', '156', '150', '306', 'None', '103', 'None', '0', '0', '0', '0'), (8099, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (8100, '13', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (8101, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '89', 'MU', 'ELECTRONICS AND TELECOMMUNICATION', '67.8', '100', '0'), (8102, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (8103, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (8104, '13', 'Admit', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (8105, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (8106, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '360', '1120', '3', '100', 'BMSCE', 'Computer science', '75', '100', '0'), (8107, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '760', '680', '1440', '4', '110', 'Dr. D. Y. Patil University', 'Dept. Of Biotechnology & Bioinformatics', '4', '4', '0'), (8108, '13', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '410', '1210', '3', '115', 'RKNEC', 'EC', '74.55', '100', '0'), (8109, '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (8110, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (8111, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (8112, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (8113, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '1130', '430', '1560', '710', '98', 'Bandodkar College of Science', 'IT', '67', '100', '0'), (8114, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '155', '311', '3.5', '110', 'NIT Durgapur', 'Information Technology', '7.94', '10', '0'), (8115, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (8116, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (8117, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (8118, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (8119, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '149', '307', '2.5', '80', 'gayathri engineering college', 'ece', '80', '100', '0'), (8120, '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '161', '151', '312', '3.5', '97', 'BMSIT', 'Computer Science', '70', '100', '0'), (8121, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (8122, '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2011', '760', '300', '1060', '3', '101', 'Kakatiya University', 'EEE', '66', '100', '0'), (8123, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (8124, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (8125, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3', '100', 'JNTU', 'cse', '62', '100', '0'), (8126, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (8127, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (8128, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (8129, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (8130, '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '760', '370', '1130', '4', '106', 'Atharva College', 'Electronics and Telecommunicatons', '57', '100', '0'), (8131, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (8132, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '157', '145', '302', '3', '94', 'Cummins College of Engineering Pune', 'E&TC;', '0', '0', '0'), (8133, '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '730', '300', '1030', '2.5', '86', 'SVCE', 'ECE', '0', '0', '0'), (8134, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '102', 'JNTU', 'CSE', '77.92', '100', '0'), (8135, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (8136, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '139', '295', '3', '93', 'JNTU', 'eee', '67', '100', '0'), (8137, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (8138, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (8139, '13', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2009', '700', '340', '1040', '3.5', '106', 'MU', 'Electronics', '58', '100', '0'), (8140, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (8141, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', '98', 'Pune University', 'CS', '0', '0', '0'), (8142, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (8143, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (8144, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (8145, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '320', '1110', 'None', '94', 'Pune University', 'Elex & Telecom', '68', '100', '0'), (8146, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (8147, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (8148, '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '530', '1300', '3.5', '106', 'SAKEC Mumbai University', 'Electronics', '70.23', '100', '0'), (8149, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (8150, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (8151, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '146', '305', '3', '89', 'VTU', 'EC', '65', '100', '24'), (8152, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (8153, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '143', '300', '4', '100', 'University of Mumbai', 'Electronics Engineering', '63', '100', '0'), (8154, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (8155, '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '152', '150', '302', '3.5', '98', 'Canara Engineering College', 'Electronics & Communications', '60', '100', '0'), (8156, '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '157', '148', '305', '3', '102', 'Goa University', 'Computer Engineering', '61', '100', '0'), (8157, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (8158, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (8159, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (8160, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (8161, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (8162, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2016', '162', '142', '304', '2', 'None', 'JNTU', 'Ece', '64', '100', '0'), (8163, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '150', '305', '3', '99', 'Panimalar Engineering College', 'Electronics and Comminications', '71', '100', '0'), (8164, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', 'University of Pune', 'Chemical Engineering', '63.13', '100', '0'), (8165, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '750', '410', '1160', '3', '97', 'WBUT', 'IT', '7.84', '10', '0'), (8166, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (8167, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (8168, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '470', '1220', '4', '106', 'VTU', 'Computer Science', '77.47', '100', '0'), (8169, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '157', '144', '301', 'None', 'None', 'CVRCE', 'ECE', '72', '100', '0'), (8170, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (8171, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (8172, '13', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (8173, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '420', '1170', '3', 'None', 'GITAM', 'Information Technology', '8.13', '10', '0'), (8174, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '3.5', '110', 'JNTU', 'csit', '82', '100', '0'), (8175, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '146', '307', '3', '95', 'JNTU', 'Electical & Electronics Engineering', '77', '100', '0'), (8176, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '460', '1150', '3', '106', 'Datta Meghe College of Engineering', 'information technology', '70', '100', '0'), (8177, '13', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '770', '380', '1150', '3', '94', 'MU', 'Computer Engineering', '57.78', '100', '0'), (8178, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (8179, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (8180, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (8181, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (8182, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (8183, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (8184, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1130', '400', '1530', '3', '93', 'BMIT Jaipur', 'computer science', '75', '100', '0'), (8185, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (8186, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (8187, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3.5', '95', 'JNTU', 'CSE', '76.5', '100', '0'), (8188, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '530', '1280', '3', '108', 'LNMIIT', 'CCE', '8.32', '10', '0'), (8189, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '295', '137', '432', '158', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATIONS ENGINEERING', '76.88', '100', '0'), (8190, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '150', '312', '3.5', '101', 'Pune University', 'Comp Engg', '62', '100', '0'), (8191, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '620', '1380', '3', '102', 'VNR VJIET', 'EEE', '69.9', '100', '0'), (8192, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (8193, '13', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (8194, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8195, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (8196, '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '780', '580', '1360', '3', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATION', '78', '100', '0'), (8197, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '144', '304', '3', '107', 'Bhoj Reddy Engineering College JNTU', 'electronics and computer engineering', '77', '100', '0'), (8198, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '460', '1180', '3', '97', 'Kurukshetra University', 'computer science', '6.7', '10', '0'), (8199, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (8200, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (8201, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (8202, '13', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2016', '156', '148', '304', '3.5', '100', 'Pune University', 'E&TC;', '63', '100', '24'), (8203, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (8204, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (8205, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8206, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (8207, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (8208, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '760', '470', '1230', '2.5', '93', 'GIET', 'EEE', '78', '100', '0'), (8209, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (8210, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '710', '380', '1090', '2.5', '103', 'JNTU', 'ECE(2010 passout)', '61.27', '100', '0'), (8211, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '410', '1140', '3', '103', 'DVR College of Engineering', 'EEE', '63', '100', '0'), (8212, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (8213, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '0', '0', '0'), (8214, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (8215, '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (8216, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (8217, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (8218, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '108', 'GITAM', 'CSE', '7.9', '10', '0'), (8219, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '150', '316', '4', '100', 'University of Engineering & Technology Taxila', 'Electrical Engineering', '79.05', '100', '0'), (8220, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '107', 'Amrita School of Engineering', 'ECE', '7.8', '10', '0'), (8221, '13', 'Admit', 'MS', 'Electrical and Electronics', 'Spring ', '2013', '162', '148', '310', '2.5', '99', 'Pondicherry Engineering College', 'EIE', '7.73', '10', '0'), (8222, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (8223, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (8224, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (8225, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (8226, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (8227, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '550', '1280', '3', '97', 'Pune University', 'entc', '0', '0', '0'), (8228, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '360', '1130', '3', '100', 'Ambala College of Engineering And Applied Research', 'Electronics and communication', '63', '100', '0'), (8229, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (8230, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (8231, '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '740', '570', '1310', '3.5', '110', 'University of Mumbai', 'Electronics', '62', '100', '0'), (8232, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (8233, '13', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '163', '150', '313', '3', 'None', 'University of Pune', 'Electronics and Telecommunication', '7.95', '10', '20'), (8234, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (8235, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '440', '1210', '4', '108', 'None', 'IT', '70', '100', '0'), (8236, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (8237, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (8238, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '450', '1190', '4', '97', 'VTU', 'Computer Science', '59', '100', '0'), (8239, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '430', '1220', '2.5', '107', 'GITAM', 'Electronics', '7.32', '10', '0'), (8240, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '580', '1310', '3.5', '105', 'University of Mumbai', 'Information Technology', '70', '100', '0'), (8241, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '146', '304', '3', 'None', 'None', '0', '0', '0', '0'), (8242, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (8243, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '115', 'Heritage Institute of Technology', 'Electronics and Communication Engineering', '8.32', '10', '0'), (8244, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '1090', '390', '1480', '700', '93', 'teegala krishna reddy engineering college', 'ece', '0', '0', '0'), (8245, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (8246, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3.5', '102', 'None', '0', '0', '0', '0'), (8247, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (8248, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '540', '1300', '3.5', '98', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.4', '10', '0'), (8249, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '153', '153', '306', '3', 'None', 'VTU', 'CS', '64', '100', '0'), (8250, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '440', '1180', '3', '99', 'Anna University', 'EE', '8.61', '10', '0'), (8251, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (8252, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (8253, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '160', '152', '312', '3.5', '110', 'JNTU', 'Metallurgical Engineering', '68.9', '100', '19'), (8254, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (8255, '13', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (8256, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '146', '308', '3', '107', 'St.Martin Engg College affiliated with JNTU', 'ECE', '68', '100', '0'), (8257, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (8258, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (8259, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', 'None', '730', '3.5', '96', 'None', 'Information science', '80', '100', '0'), (8260, '13', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2010', '770', '450', '1220', '3', '100', 'VTU', 'Electronics and Communication', '70', '100', '0'), (8261, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (8262, '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2006', '740', '410', '1150', '4', '287', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (8263, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3', '114', 'None', 'Computer Science', '7.95', '10', '0'), (8264, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (8265, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (8266, '13', 'Admit', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2013', '161', '156', '317', '4.5', '113', 'University of Mumbai', 'Electronics', '73', '100', '0'), (8267, '13', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (8268, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (8269, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (8270, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (8271, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (8272, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8273, '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '750', '530', '1280', 'None', '103', 'Rajasthan Technical University', 'Information Technology', '70', '100', '0'), (8274, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', '730', '570', '1300', '3', '102', 'SASTRA', 'Bioinformatics', '7.6', '10', '0'), (8275, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (8276, '13', 'Admit', 'MS', 'Geographic and Cartographic Sciences', 'Fall ', '2011', '710', '490', '1200', '4', '107', 'None', 'Electronics & Telecomm', '68', '100', '0'), (8277, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8278, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '99', 'Sree Vidyanikethan Engineering College', 'Information Technology', '76', '100', '0'), (8279, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '380', '1170', '3.5', '107', 'JNTU', 'ECE', '64', '100', '0'), (8280, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (8281, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (8282, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (8283, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '770', '370', '1140', '3', '102', 'Koneru Lakshmaiah College of Engineering', 'Information Science and Technology', '8.44', '10', '0'), (8284, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '740', '370', '1110', '3', '96', 'None', '0', '0', '0', '0'), (8285, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (8286, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '420', '1150', 'None', '103', 'MDU', 'ECE', '0', '0', '0'), (8287, '13', 'Admit', 'MS', 'Biotechnology', 'Spring ', '2014', '151', '150', '301', '3.5', '100', 'SASTRA', 'Biotechnology', '8.1', '100', '0'), (8288, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (8289, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '148', '318', '3', '98', 'UCEK JNTUK', 'EEE', '77', '100', '12'), (8290, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (8291, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (8292, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '145', '143', '288', 'None', '87', 'None', '0', '0', '0', '0'), (8293, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '141', '137', '278', '2', 'None', 'Rajasthan Technical University', 'Electronics & Communication', '3', '100', '0'), (8294, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (8295, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (8296, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (8297, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (8298, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (8299, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (8300, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (8301, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '410', '1150', '2.5', '110', 'BITS Pilani', 'Computer Science', '7.91', '10', '0'), (8302, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (8303, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '3', '91', 'Vrsiddhartha Engineering College', 'CSE', '88.35', '100', '0'), (8304, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '160', '318', 'None', '112', 'Saboo Siddik', 'Computers', '62', '100', '0'), (8305, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '450', '1240', '3', '100', 'MU', 'Information Technology', '67', '100', '0'), (8306, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (8307, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (8308, '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '470', '1190', '3', '87', 'D Y Patil College of Engineering', 'Bioinformatics', '62.3', '100', '0'), (8309, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3', '92', 'Pune University', 'Mechanical Engineering', '62.5', '100', '53'), (8310, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (8311, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3.5', '105', 'Pune University', 'information technology', '56', '100', '0'), (8312, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (8313, '13', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (8314, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (8315, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (8316, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (8317, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (8318, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (8319, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (8320, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3.5', '105', 'None', '0', '0', '0', '0'), (8321, '13', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '89', 'MU', 'EXTC', '5.5', '10', '0'), (8322, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (8323, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (8324, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (8325, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '97', 'Vasavi College of Engineering', 'IT', '82', '100', '0'), (8326, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (8327, '13', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '147', '306', '3', 'None', 'JNTU', 'Electronics and Communication Engineering', '75.55', '100', '26'), (8328, '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '154', '154', '308', '3.5', '105', 'MU', 'IT', '63', '100', '0'), (8329, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '108', 'MU', 'Information Technology', '68', '100', '0'), (8330, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (8331, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (8332, '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Spring ', '2012', '690', '580', '1270', 'None', '98', 'JNTUK/REC', 'CSE', '58.6', '100', '0'), (8333, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (8334, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '143', '294', '3', '98', 'Sinhgad College of Engineering', 'Computer', '66.66', '100', '0'), (8335, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (8336, '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '151', '143', '294', '3', '83', 'Padre Conceicao College Of Engineering', 'Information Technology', '0', '0', '0'), (8337, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '330', '1050', '3', '95', 'Anna University', 'I.T.', '68', '100', '0'), (8338, '13', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '160', '149', '309', '3', '101', 'GGSIPU', 'CSE', '79', '100', '0'), (8339, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '310', '1050', '2.5', '87', 'KL University', 'Information Technology', '7.83', '10', '0'), (8340, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (8341, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (8342, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '3', '96', 'PESIT', 'Computer Science', '73.4', '100', '0'), (8343, '13', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '158', '145', '303', '3', '94', 'PESIT', 'Computer Science and Engineering', '6.71', '10', '42'), (8344, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (8345, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (8346, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '143', '297', '2.5', 'None', 'Vivekananda Institute Of Technology', 'Information Science', '67.8', '100', '58'), (8347, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (8348, '13', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '153', '149', '302', '3.5', '101', 'MU', 'Instrumentation', '55', '100', '8'), (8349, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (8350, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '93', 'Pune University', 'Computer Engg.', '58.9', '100', '0'), (8351, '13', 'Reject', 'MS', 'Computer Forensics', 'Fall ', '2012', '156', '153', '309', '4', '110', 'Anna University', 'Information Technology', '65', '100', '0'), (8352, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (8353, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (8354, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (8355, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (8356, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (8357, '13', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2015', '156', '151', '307', '3', '90', 'DMI College of Engineering', 'I.T', '6.53', '10', '22'), (8358, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (8359, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (8360, '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2007', '770', '420', '1190', '3.5', '103', 'Bharathidasan University', 'Biotechnology', '75', '100', '0'), (8361, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '151', '144', '295', '3.5', '90', 'VTU', 'CSE', '78', '100', '0'), (8362, '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (8363, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '670', '450', '1120', '3', '82', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '6.14', '10', '0'), (8364, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (8365, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '100', 'JNTU', 'ECE', '73', '100', '0'), (8366, '13', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (8367, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', 'None', 'VGEC GTU', 'Computer Engineering', '7.2', '10', '0'), (8368, '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (8369, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (8370, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (8371, '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2011', '157', '148', '305', '3.5', '105', 'College of engineering and technology', 'Electronics and Telecommunication', '-1', '-1', '0'), (8372, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (8373, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (8374, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '159', '329', '4', '113', 'IIT Indore', 'Mechanical Engineering', '7.7', '10', '24'), (8375, '14', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '154', '319', '4', '115', 'MU', 'Electronics', '75.7', '100', '0'), (8376, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (8377, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (8378, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '800', '550', '1350', '3', '104', 'BIT Mesra', 'Biotechnology', '7.02', '10', '0'), (8379, '14', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (8380, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '159', '325', '4', '115', 'NIT', 'Production Engineering', '92.4', '100', '0'), (8381, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (8382, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (8383, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '110', 'University of Mumbai', 'Electronics & Telecommunications', '80.57', '100', '0'), (8384, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '730', '1530', '4', '118', 'NSIT', 'Instrumentation and Control Engineering', '79.27', '100', '0'), (8385, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '166', '330', '4.5', '117', 'University of Mumbai', 'Engineering Electronics and Telecommunication', '60.38', '100', '0'), (8386, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '800', '570', '1370', '4', '112', 'VESIT', 'Electronics and Telecommunication', '87.37', '100', '0'), (8387, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (8388, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2008', '750', '520', '1270', 'None', '250', 'None', '0', '0', '0', '0'), (8389, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'D J Sanghvi', 'Electronics', '73.68', '100', '0'), (8390, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (8391, '14', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '161', '160', '321', '3', '103', 'TU', 'CS', '69.7', '100', '36'), (8392, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '158', '328', '4', '116', 'IIT Kharagpur', 'Electrical Engineering', '8.52', '10', '0'), (8393, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '680', '1480', '3', '102', 'Zhejiang University', 'Dpt. of Mechanical Engineering', '3.68', '4', '0'), (8394, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '120', 'PSG College of Technology', 'Mechanical', '8.9', '10', '0'), (8395, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '111', 'VESIT', 'Electronics', '78', '100', '0'), (8396, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '5', '117', 'NIT Karnataka', 'ECE', '9.36', '10', '0'), (8397, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4', '109', 'University of Mumbai', 'Electronics', '3.25', '4', '0'), (8398, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '155', '323', '5', '108', 'MSRIT', 'Electronics and Communication', '9.33', '10', '0'), (8399, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '750', '1550', '4.5', '117', 'SRM', 'CSE', '8.4', '10', '0'), (8400, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '160', '328', '4', '118', 'Amrita School of Engineering', 'ECE', '9.49', '10', '0'), (8401, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', '110', 'NIT Bhopal', 'IT', '7.9', '10', '0'), (8402, '14', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '166', '157', '323', '4', '112', 'BITS Pilani', 'Manufacturing', '7', '100', '24'), (8403, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '700', '1500', '3.5', '110', 'IIT Kharagpur', 'Industrial Engineering', '8.37', '10', '0'), (8404, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (8405, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '105', 'IIIT Delhi', 'Computer Science', '3.8', '10', '0'), (8406, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (8407, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '4', '110', 'Maharashtra Institute of Technology', 'EnTc', '76', '100', '0'), (8408, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (8409, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '650', '1440', '3.5', '111', 'BITS Pilani', 'MSc (Hons) Biological Science & BE (Hons) Computer Science', '9.18', '10', '0'), (8410, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (8411, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '114', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control', '71.4', '100', '0'), (8412, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (8413, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '540', '1340', '4', '114', 'R V College of Engineering', 'Chemical engineering', '9.14', '10', '0'), (8414, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '550', '1340', '3', '111', 'SSN College of Engineering', 'Computer Science', '87.74', '100', '0'), (8415, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (8416, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '110', 'MU', 'Computer Engineering', '75', '100', '0'), (8417, '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2014', '163', '159', '322', '5', '115', 'MU', 'Information Technology', '0', '0', '18'), (8418, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '800', '1600', '5.5', '117', 'MIT College of Engineering University of Pune', 'Computer Science and Engineering', '58.51', '100', '0'), (8419, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (8420, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '160', '322', '4', '117', 'None', 'Electronics & communication', '9.1', '10', '0'), (8421, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (8422, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (8423, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (8424, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (8425, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (8426, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (8427, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '157', '322', '4', 'None', 'Punjab Engineering College', 'Electronics and Electrical Communication', '9.65', '10', '0'), (8428, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8429, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '780', '680', '1460', '4', '109', 'NIT Surat', 'Civil', '8.75', '10', '0'), (8430, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (8431, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '163', '329', '4', '114', 'IET DAVV', 'Computer Science', '72', '100', '0'), (8432, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '164', '333', '4', '118', 'NIT Tirchy', 'production engineering', '9.03', '10', '0'), (8433, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '118', 'Galgotias college of engineering & technology', 'Information Technology', '73.5', '100', '0'), (8434, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (8435, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '620', '1420', '3.5', '109', 'IIT Delhi', 'Mechanical Engineering', '8.48', '10', '0'), (8436, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '112', 'University of Manchester', 'Aerospace Engineering', '3.74', '4', '12'), (8437, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (8438, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (8439, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'NIT Surat', 'Computer Engineering', '7.2', '10', '0'), (8440, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (8441, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '560', '1320', '4', '107', 'PSG College of Technology', 'Computer Science', '8.91', '10', '0'), (8442, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '770', '580', '1350', '3', '106', 'Madras Institute of Technology', 'Production Engineering', '9.45', '10', '24'), (8443, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '162', '323', '3.5', '116', 'SVCE', 'ECE', '7.98', '10', '0'), (8444, '14', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', '164', '159', '323', '4', '108', 'NIT Tirchy', 'Architecture', '9.43', '10', '0'), (8445, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (8446, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (8447, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '530', '1330', '4', '105', 'Sathyabama University', 'Aeronautical enggineering', '83', '100', '0'), (8448, '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '167', '159', '326', '5', '117', 'IIT Jodhpur', 'CSE', '10', '10', '0'), (8449, '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '770', '410', '1180', 'None', 'None', 'Fr Agnel', 'Computer', '0', '0', '0'), (8450, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '800', '680', '1480', '3.5', '114', 'NIT Calicut', 'Electrical and Electronics', '8.66', '10', '0'), (8451, '14', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '560', '1350', '3.5', '108', 'R V College of Engineering', 'Computer Science', '75', '100', '0'), (8452, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (8453, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '160', '329', '3.5', 'None', 'NIT Calicut', 'ECE', '9.62', '10', '0'), (8454, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '117', 'Anna University', 'IT', '83', '100', '0'), (8455, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (8456, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (8457, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '168', '158', '326', '5', '112', 'CEG', 'Mechanical Engineering', '9', '10', '0'), (8458, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (8459, '14', 'Admit', 'MS', 'None', 'Fall ', '2014', '165', '158', '323', '4', '112', 'MDU', 'ECE', '62', '100', '0'), (8460, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '108', 'COEP', 'Information Technology', '8.67', '10', '0'), (8461, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '800', '620', '1420', '4', '118', 'Manipal Institue of Technology', 'ECE', '9.15', '10', '0'), (8462, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '113', 'Gujarat Technological University', 'Computer Enigneering', '64.8', '100', '0'), (8463, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '560', '1360', '4.5', '117', 'Anna University', 'EEE', '72', '100', '0'), (8464, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '600', '1400', '5.5', '118', 'R V College of Engineering', 'Mechanical Engineering', '3.95', '4', '0'), (8465, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (8466, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '710', '1510', '4', '111', 'MU', 'Information Technology', '66.17', '100', '0'), (8467, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '720', '1490', '3.5', '106', 'Watumull Institute University of Mumbai', 'Electronics and Telecommunication', '0', '0', '0'), (8468, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '560', '1320', '3.5', '104', 'BITS Goa', 'Computer Science', '8.95', '10', '0'), (8469, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '149', '315', '3.5', '101', 'CoE Trivandrum', 'Industrial Engineering', '7.3', '10', '0'), (8470, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '170', '154', '324', 'None', '112', 'None', '0', '72', '100', '0'), (8471, '14', 'Admit', 'MS', 'Information Networking', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'CEG', 'Computer science & Engg', '8.3', '10', '0'), (8472, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '650', '1440', '5', 'None', 'National Technical University of Athens', 'ECE', '9.4', '4', '0'), (8473, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '108', 'R V College of Engineering', 'Electrical and Electronics', '9.38', '10', '0'), (8474, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '159', '321', '3', '111', 'SJCE', 'CS', '9.45', '10', '0'), (8475, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (8476, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4', '111', 'GGSIPU', 'Computer Science', '79', '100', '0'), (8477, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4.5', '113', 'VTU', 'Electronics and Communication', '73', '100', '0'), (8478, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '154', '318', '4', '118', 'kvw', 'ece', '69.9', '100', '0'), (8479, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (8480, '14', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (8481, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (8482, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', 'None', '106', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '9.01', '10', '0'), (8483, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'shu', 'physics', '4', '4', '0'), (8484, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (8485, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '158', '325', '4.5', '112', 'Delhi University', 'ECE', '69.93', '100', '0'), (8486, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '160', '319', '4', 'None', 'Amity University', 'Computer Science', '8.31', '10', '0'), (8487, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '620', '1400', '3.5', '110', 'Delhi College Of Engineeing', 'ECE', '79.7', '100', '0'), (8488, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '170', '336', '4.5', '119', 'BITS Goa', 'Computer Science', '8.8', '10', '0'), (8489, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '163', '331', '4.5', '112', 'NMIMS', 'Electronics engineering', '3.58', '4', '0'), (8490, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (8491, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '160', '322', '4.5', '112', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.1', '10', '0'), (8492, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (8493, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '99', 'Shanghai Jiao Tong University', 'ECE', '3.2', '4', '0'), (8494, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'PICT', 'Computer Engg.', '0', '0', '0'), (8495, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (8496, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (8497, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4', '106', 'SSN College of Engineering', 'ECE', '89', '100', '0'), (8498, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '169', '164', '333', '4', '109', 'BMSCE', 'EEE', '9.23', '10', '0'), (8499, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '163', '161', '324', '4.5', '116', 'SASTRA', 'Electronics and Communication Engg', '8.13', '10', '0'), (8500, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '630', '1410', '4', '96', 'Anna University', 'Mechanical Engineering', '8.93', '10', '0'), (8501, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', '4.5', '118', 'Pune University', '0', '75', '100', '0'), (8502, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (8503, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (8504, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '550', '1280', '4', '100', 'MU', 'Electronics', '61', '100', '0'), (8505, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '690', '1490', '4', '113', 'NSIT', 'COE', '75', '100', '0'), (8506, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8507, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '163', '332', '4.5', '115', 'BITS Pilani', 'Electronics', '8.65', '10', '0'), (8508, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (8509, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (8510, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '4.5', '114', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '9', '10', '0'), (8511, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', 'None', 'NIT Surathkal', 'Computer Engineering', '8.64', '10', '0'), (8512, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (8513, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '530', '1260', '3', 'None', 'MU', 'Electronics', '67', '100', '0'), (8514, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '3.5', '109', 'Sardar Patel College of Engineering', '0', '8', '10', '0'), (8515, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (8516, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '580', '1370', '4', '109', 'Gujarat Technological University', 'Electronics and Communications', '72.5', '100', '0'), (8517, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '164', '152', '316', '4', '108', 'VIT University', 'Bioinformatics', '8.74', '10', '0'), (8518, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '159', '328', '4.5', '118', 'Netaji Subhas Institute of Technology', 'Electronics and Communicartion', '74.95', '100', '0'), (8519, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '4.5', '117', 'VTU', 'Computer Science', '8.81', '10', '12'), (8520, '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (8521, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (8522, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (8523, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '169', '337', '5', 'None', 'SVCE', 'Computer Science & Engineering', '74', '100', '32'), (8524, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (8525, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '114', 'MANIT BHOPAL', 'Computer Science', '8.59', '10', '0'), (8526, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (8527, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '162', '328', '4', '117', 'NITK Surathkal', 'Computer Science and Engineering', '8.23', '10', '26'), (8528, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'MU', 'Computer Science', '73', '100', '0'), (8529, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4.5', '108', 'MU', 'Electronics Engg.', '0', '0', '0'), (8530, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3', '112', 'JNTU', 'Computer Science', '77.38', '100', '0'), (8531, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '790', '660', '1450', '4', '115', 'Cochin University of Science and Technology', 'Electronics & Communication', '66.6', '100', '0'), (8532, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '115', 'BITS Pilani', 'EEE', '0', '0', '0'), (8533, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '152', '322', '3.5', '108', 'NSIT', 'ECE', '74.64', '100', '36'), (8534, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '118', 'BITS Pilani', 'Information Systems', '8.81', '10', '0'), (8535, '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2015', '154', '149', '303', '3.5', '100', 'MSRIT', 'Electronics and Communication', '9.35', '10', '0'), (8536, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '157', '321', '5', '113', 'NIT Rourkela', 'Civil Engineering', '8.23', '10', '0'), (8537, '14', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0'), (8538, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '162', '153', '315', '4', '101', 'NIT', 'Electronics and Telecommunication Engineering', '9.59', '10', '22'), (8539, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8540, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '110', 'University of Pune', 'Mechanical Engineering', '102', '100', '0'), (8541, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '164', '328', '4', '119', 'BITS Pilani', 'CS and Physics', '7.97', '10', '0'), (8542, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2009', '720', '540', '1260', '3.5', '113', 'VTU', 'Computer Science', '68', '100', '0'), (8543, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '4', '114', 'None', 'Computer Science', '9.57', '10', '0'), (8544, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3.5', '116', 'Supelec (France)', 'Electrical Engineering', '3.5', '4', '0'), (8545, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '165', '148', '313', '4.5', '112', 'None', 'Computer Science', '8.3', '10', '0'), (8546, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '164', '329', '4', '111', 'Anna University', 'Computer Science and Engineering', '9.3', '10', '0'), (8547, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '570', '1340', '3', '105', 'None', '0', '0', '0', '0'), (8548, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '660', '1420', '4', '102', 'JNTU', 'Computer Science and Engineering', '71', '100', '0'), (8549, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '690', '1490', '4', '115', 'R V College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (8550, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (8551, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (8552, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (8553, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (8554, '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '630', '1430', '5', '112', 'NITC', 'ME', '0', '0', '0'), (8555, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (8556, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '157', '322', '4', '322', 'MU', 'it', '81', '100', '33'), (8557, '14', 'Admit', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2016', '160', '160', '320', '3.5', '115', 'University of Pune', 'Electronics and Telecommunication', '72', '100', '24'), (8558, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '780', '720', '1500', '4', '116', 'IGIT', 'Mechanical', '70', '100', '0'), (8559, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '720', '1520', '5.5', 'None', 'Anna University', 'Mech', '9.5', '10', '0'), (8560, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (8561, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '162', '151', '313', '4', '108', 'Naval Polytechnical Academy', 'Weapons Systems Engineering and Operations', '91.5', '100', '0'), (8562, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '590', '1380', '3', '107', 'Anna University', 'INFORMATION TECHNOLOGY', '82', '100', '0'), (8563, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '610', '1370', '4', '107', 'PSG College of Technology', 'Information Technology', '8.76', '10', '0'), (8564, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '169', '155', '324', '4', '119', 'VIT', 'Computer Engineering', '82', '100', '0'), (8565, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '4.5', '105', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '9.1', '10', '0'), (8566, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '167', '156', '323', '4', '114', 'VJTI', 'Civil Engineering', '7.7', '10', '0'), (8567, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (8568, '14', 'Admit', 'MS', 'Financial Engineering', 'Spring ', '2011', '800', '540', '1340', '4', '105', 'None', '0', '74', '100', '0'), (8569, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (8570, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (8571, '14', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (8572, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (8573, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3.5', '103', 'Maharishi Dayanand University', 'Computer Science & Engineering', '63.4', '100', '0'), (8574, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '490', '1280', '4', '106', 'College of Engineering and Technology', 'Biotechnology', '77', '100', '0'), (8575, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (8576, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '700', '1470', '3.5', '116', 'SASTRA', 'Information and Communication Technology', '8.4', '10', '0'), (8577, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (8578, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (8579, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (8580, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '168', '334', '4', '117', 'None', '0', '9.3', '10', '0'), (8581, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '3.5', 'None', 'SVCE', 'CS', '75', '100', '0'), (8582, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '620', '1420', '4', '115', 'PICT', 'Information Technology', '62', '100', '0'), (8583, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '164', '167', '331', '5', 'None', 'Georgia Tech', 'Computer Science', '2', '4', '138'), (8584, '14', 'Admit', 'MS', 'computer science / MIS', 'Fall ', '2015', '168', '157', '325', '4', '107', 'BITS Goa', 'CS', '8.39', '10', '42'), (8585, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (8586, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (8587, '14', 'Admit', 'MS', 'Chemical/Environmental Engg.', 'Fall ', '2014', '163', '163', '326', '4.5', '114', 'R V College of Engineering', 'Chem Engineering', '9.12', '10', '0'), (8588, '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '800', '610', '1410', '4.5', '109', 'NIT Tirchy', 'Electronics & Comm. (ECE)', '9.1', '10', '0'), (8589, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '610', '1390', '5', '107', 'None', 'E&TC;', '3.92', '4', '0'), (8590, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '162', '331', '5', '112', 'IIT Bombay', 'Chemical Engineering', '9.22', '10', '0'), (8591, '14', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '1430', '640', '2070', '3.5', '114', 'D J Sanghvi', 'EXTC', '81.4', '100', '0'), (8592, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4.5', '112', 'CEG', 'Computer Science', '9.21', '10', '0'), (8593, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (8594, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '5', '112', 'NITK Surathkal', 'Civil Engineering', '9.22', '10', '0'), (8595, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '100', 'D J Sanghvi', 'EXTC', '79', '100', '0'), (8596, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (8597, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '162', '326', '4', '116', 'R V College of Engineering', 'Information Science', '9.35', '10', '0'), (8598, '14', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '163', '157', '320', '3.5', '116', 'IIT Roorkee', 'Architecture & Planning', '7.714', '10', '0'), (8599, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '107', 'Thapar University', 'Computer Science', '9', '10', '0'), (8600, '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (8601, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '160', '322', '4', '110', 'University of Pune', 'Civil', '73.73', '100', '6'), (8602, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4', 'None', 'IT BHU', 'Metallurgical Engineering', '7.74', '10', '0'), (8603, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IT BHU', 'CSE', '8.17', '10', '0'), (8604, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (8605, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (8606, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '163', '330', '4.5', '118', 'R V College of Engineering', 'Information Science Engineering', '9.09', '10', '0'), (8607, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8608, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.8', '10', '0'), (8609, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '730', '1530', '4.5', '116', 'CEG', 'ECE', '9.7', '10', '0'), (8610, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '170', '158', '328', '3.5', '111', 'YMCA', 'Electronics & Communication Engg', '9.225', '10', '7'), (8611, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '154', '322', '4', '112', 'Manipal Institue of Technology', 'Mechanical & Manufacturing', '9.2', '10', '0'), (8612, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '151', '321', '3.5', '100', 'IIT Roorkee', 'Mech and Industrial Engg', '7.4', '10', '10'), (8613, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '111', 'VIT Pune', 'Computer Engineering', '72', '100', '0'), (8614, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CEG', 'ECE', '8.81', '10', '0'), (8615, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (8616, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (8617, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '3.5', '101', 'D J Sanghvi', 'Computer Engineering', '70', '100', '0'), (8618, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (8619, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '163', '158', '321', '4', '111', 'None', '0', '0', '0', '0'), (8620, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '113', 'CEG', 'ECE', '9.27', '10', '0'), (8621, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (8622, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (8623, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '158', '328', '4', '110', 'Sir MVIT', 'Computer Science and Engg', '83.5', '100', '0'), (8624, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (8625, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '630', '1390', '3.5', 'None', 'UPTU', '0', '69', '100', '0'), (8626, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (8627, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '108', 'VESIT', 'Electronics and Telecommunication', '70.53', '100', '0'), (8628, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '5', '117', 'CEG', 'ECE', '9.3', '10', '0'), (8629, '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'SSN College of Engineering', 'Computer Science', '68.8', '100', '0'), (8630, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'BITS Goa', 'B.E(Hons) Computer Science & M.Sc(Hons) Economics', '8.47', '10', '0'), (8631, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '640', '1440', '4.5', '116', 'M.U.', 'Infotech', '64.5', '100', '0'), (8632, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '163', '333', '4', '109', 'BITS Pilani', 'Electrical and Electronics', '8.9', '10', '0'), (8633, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '104', 'SSN College of Engineering', 'CSE', '87.5', '100', '0'), (8634, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '168', '337', '4', '111', 'None', '0', '0', '0', '0'), (8635, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (8636, '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'R V College of Engineering', 'Computer Science', '77.7', '100', '0'), (8637, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '102', 'SSN College of Engineering', 'Computer Science and Enginnering', '86.6', '100', '0'), (8638, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '118', 'Anna University', 'IT', '80', '100', '0'), (8639, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '440', '1240', '3', '105', 'Sri Jayachamarajendra College of Engineering', 'ELECTRONICS AND COMMUNICATION', '9.82', '10', '0'), (8640, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4', '113', 'BITS Pilani', 'Computer Science', '9.36', '10', '0'), (8641, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '3.5', '103', 'CEG', 'Computer Science', '9.01', '10', '0'), (8642, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (8643, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2007', '800', '390', '1190', '4', '263', 'Nirma Institute of Technology', 'Civil Engineering', '8.65', '10', '0'), (8644, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '163', '151', '314', '4', '108', 'VIT', 'EEE', '8.53', '10', '0'), (8645, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'PICT', 'IT', '60', '100', '0'), (8646, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (8647, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '630', '1420', '4', '108', 'B N M Institute of Technology', 'ECE', '87.65', '100', '0'), (8648, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '156', '162', '318', 'None', '115', 'Universidad Simon Bolivar', 'Computer Science', '4.6', '5', '0'), (8649, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '15', '168', '158', '326', '4', '109', 'IIT Guwahati', 'ECE', '9.47', '10', '8'), (8650, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (8651, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '550', '1260', '4.5', '108', 'ITESM', 'CS', '86', '100', '0'), (8652, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'University of madras/ Vellammal Engineering College', 'Computer science and Engineering', '73', '100', '0'), (8653, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4.5', '106', 'Manipal Institue of Technology', 'Computer science engineering', '8.8', '10', '0'), (8654, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '600', '1340', '3.5', '117', 'Netaji Subhas Institute of Technology', 'Information Technology', '76.7', '100', '0'), (8655, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '149', '315', '4', '107', 'VESIT', 'Electronics', '78.25', '100', '0'), (8656, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '155', '325', '4', '112', 'BITS Pilani', 'Electrical and Electronics', '9.13', '10', '0'), (8657, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (8658, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (8659, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '162', '328', '4', '117', 'BITS Pilani', 'Computer Science', '8.52', '10', '0'), (8660, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '570', '1350', '4', '113', 'National University of Singapore', 'ECE', '4.42', '5', '0'), (8661, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '164', '162', '326', '4', '113', 'Manipal Institue of Technology', 'IT', '7.24', '10', '0'), (8662, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (8663, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '113', 'NIT Karnataka', 'Computer Science', '7.75', '10', '0'), (8664, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (8665, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4.5', '115', 'BITS Hyderabad', 'Computer Science', '8.55', '10', '30'), (8666, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics Engineering', '66.82', '100', '0'), (8667, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3.5', '116', 'Mahatma Gandhi University Kerala', 'Electronics & Communication Engineering', '68', '100', '0'), (8668, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4.5', '117', 'VTU', 'Information Science', '79', '100', '0'), (8669, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (8670, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (8671, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (8672, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '158', '326', '4', '112', 'VIT University', 'EEE', '8.9', '10', '0'), (8673, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (8674, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (8675, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1334', '530', '1864', '4', '113', 'JSS Noida', 'Computer Science and Engineering', '73.2', '100', '0'), (8676, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '168', '160', '328', '4.5', '119', 'None', 'ECE', '9.8', '100', '24'), (8677, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '115', 'MU', 'electronics engineering', '70', '100', '0'), (8678, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '161', '320', '4', '116', 'R V College of Engineering', 'Information Science', '76', '100', '0'), (8679, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4.5', 'None', 'MU', 'Computer Engineering', '71', '100', '0'), (8680, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (8681, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'VTU', 'E&C;', '82.6', '100', '0'), (8682, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (8683, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (8684, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (8685, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '3', '116', 'VTU', 'electronics & communication', '82', '100', '0'), (8686, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '3', '113', 'NIT Nagpur', 'Computer Science', '9.49', '10', '0'), (8687, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (8688, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '162', '329', '5', 'None', 'Madras Institute of Technology', 'Computer Science', '8.8', '100', '36'), (8689, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (8690, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2014', '170', '159', '329', '3.5', '103', 'PEC University of Technology', 'Electronics Engineering', '7.1', '10', '0'), (8691, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (8692, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (8693, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '152', '321', '4', '115', 'IIT Roorkee', 'Industrial Engineering-B.Tech', '0', '0', '0'), (8694, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '167', '336', '4', '116', 'IIITDM Kancheepuram', 'Computer Engineering', '8.96', '10', '0'), (8695, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '600', '1380', '4.5', '116', 'SSN College of Engineering', 'Computer Science and Engineering', '8.41', '10', '0'), (8696, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (8697, '14', 'Admit', 'MS', 'Industrial Design', 'Fall ', '2014', '168', '158', '326', '4.5', '105', 'IIT Roorkee', 'Mechanical Engineering', '6.8', '10', '0'), (8698, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (8699, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '650', '1450', '4', 'None', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control Engg', '78.27', '100', '0'), (8700, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (8701, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '117', 'SSN College of Engineering', 'CSE', '81', '100', '0'), (8702, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (8703, '14', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'Manipal Institue of Technology', 'Electronics', '8.7', '10', '0'), (8704, '14', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'SSN College of Engineering', 'CSE', '80.2', '100', '0'), (8705, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '610', '1410', '4', '115', 'SSN College of Engineering', 'ECE', '80.2', '100', '0'), (8706, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (8707, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '112', 'Model Engineering College', 'Computer Science and Engineering', '76.3', '100', '0'), (8708, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '5', '116', 'BITS Pilani', 'Computer Science', '7.9', '10', '0'), (8709, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '4', '113', 'RGPV', 'Computer Science', '75.7', '100', '0'), (8710, '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '155', '146', '301', '2.5', '105', 'R V College of Engineering', 'Biotechnology', '8.57', '10', '0'), (8711, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '4.5', '105', 'Delhi College Of Engineeing', 'Electronics and Communication', '67.5', '100', '0'), (8712, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '113', 'Sardar Patel College of Engineering', 'Electronics Engineering 2009 Batch (old syllabus)', '73.7', '100', '0'), (8713, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '114', 'IIT Kharagpur', 'Elctronics and Communication', '9.35', '10', '0'), (8714, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '20'), (8715, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '112', 'BITS Goa', 'Electronics and Instrumentation', '9.313', '10', '0'), (8716, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (8717, '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2013', '167', '159', '326', '3.5', '109', 'Pune University', 'Electronics and Telecommunications', '78.78', '100', '36'), (8718, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (8719, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (8720, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '155', '320', '3.5', '118', 'NITK Surathkal', 'Electronics and communication', '9.01', '10', '0'), (8721, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Institute of Engineering and Technology Lucknow', 'Computer science', '74.4', '100', '0'), (8722, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (8723, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '750', '570', '1320', '3', '102', 'Jaypee Institute of Information Technology', 'CSE/IT', '6.62', '10', '0'), (8724, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '167', '157', '324', '5', '113', 'VIT', 'Electrical and Electronics Engineering', '8.65', '10', '1'), (8725, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '107', 'R V College of Engineering', 'Electronics and communication', '84', '100', '0'), (8726, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (8727, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '155', '316', '4', '106', 'NIT Surat', 'Civil Engineering', '8.31', '10', '0'), (8728, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (8729, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'IIT Madras', 'Electrical Engineering', '9.13', '10', '0'), (8730, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (8731, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '72.9', '100', '0'), (8732, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '161', '321', '4', '113', 'KSRCT Anna university', 'Biotechnology', '86', '100', '0'), (8733, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '710', '420', '1130', '3.5', '106', 'Padmashree Dr D Y Patil University', 'Dept. of Biotechnology and Bioinformatics', '68.1', '100', '0'), (8734, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '710', '660', '1370', '4.5', '111', 'VIT University', 'Bioinformatics', '8.83', '10', '0'), (8735, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '4', '110', 'BITS Pilani', 'Electrical and Electronics', '8.86', '10', '0'), (8736, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (8737, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (8738, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '3', '108', 'MIT', 'CSE', '9', '10', '0'), (8739, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '117', 'SSN College of Engineering', 'Electronics & Communications', '82', '100', '0'), (8740, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '107', 'Thapar University', 'Computer Engineering', '8.15', '10', '0'), (8741, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '158', '322', '3.5', '111', 'GGSIPU', 'ECE', '79.22', '100', '0'), (8742, '14', 'Admit', 'MS', 'EE / CS', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'IIT Bombay', 'EE', '9.69', '10', '0'), (8743, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (8744, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '600', '1400', '4', '110', 'COEP', 'Mechanical', '6.97', '10', '0'), (8745, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '115', 'VTU', 'ECE', '77', '100', '0'), (8746, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2015', '167', '158', '325', '4', '115', 'Pune University', 'Electronics', '9.7', '10', '0'), (8747, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '560', '1360', '3.5', '108', 'R V College of Engineering', 'Electronics and Communication', '9.54', '10', '0'), (8748, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'NITK Surathkal', 'Computer Science', '8.82', '10', '0'), (8749, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (8750, '14', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (8751, '14', 'Admit', 'MS', 'Operations Research', 'Spring ', '2012', '790', '430', '1220', '4', '107', 'Anna University', 'ECE', '88', '100', '0'), (8752, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '165', '332', '4.5', '113', 'University of Pune', 'Electronics and Telecommunication', '63.33', '100', '0'), (8753, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (8754, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '156', '322', '4', '106', 'IIT', 'EE', '9.1', '10', '48'), (8755, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (8756, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (8757, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '690', '1440', '4.5', '113', 'VTU', 'ECE', '8.77', '10', '0'), (8758, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (8759, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.6', '10', '0'), (8760, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '106', 'None', '0', '8.7', '10', '0'), (8761, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (8762, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '162', '332', '3.5', '109', 'Delhi College Of Engineeing', 'Mechanical', '79.02', '100', '0'), (8763, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'DCE', 'EC', '80', '100', '0'), (8764, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '160', '168', '328', '4', '110', 'VIT', 'CS', '8.1', '10', '0'), (8765, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '560', '1360', '4', '108', 'MU', 'Computer', '58.7', '100', '0'), (8766, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '500', '1290', '3', '105', 'VJTI', 'IT', '8.4', '10', '0'), (8767, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '4', '111', 'NIT Surathkal', 'ECE', '8.15', '10', '0'), (8768, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '160', '323', '4', '109', 'Amity School of Engineering and Technology', 'Computer Science and Engineering', '7.56', '10', '0'), (8769, '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '168', '159', '327', '4', '114', 'RAIT', 'INSTRUMENTATION', '77', '100', '0'), (8770, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '4', '109', 'TSEC', 'Chem Engg', '72', '100', '0'), (8771, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '157', '326', '4.5', '118', 'VIT University', 'ECE', '9.28', '10', '2'), (8772, '14', 'Admit', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2012', '800', '630', '1430', '4', '110', 'University of Pune', 'E&TC;', '3.95', '4', '0'), (8773, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'VIT', 'Computer Science and Engineering', '8.61', '10', '0'), (8774, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '4', 'CEG', 'Manufacturing', '8.61', '10', '0'), (8775, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '166', '161', '327', '4', '111', 'D J Sanghvi', 'Chemical Engineering', '6', '10', '0'), (8776, '14', 'Admit', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (8777, '14', 'Admit', 'MS', 'HCI / CS', 'Fall', 'None', '166', '160', '326', '4', '114', 'BMSCE', 'Electronics and Communication Engineering', '9.24', '10', '0'), (8778, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (8779, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4.5', '117', 'IIT Bombay', 'Computer Science', '7.84', '10', '0'), (8780, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8781, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', 'None', 'University of Texas at Austin', 'ECE', '3.64', '4', '0'), (8782, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3.5', 'None', 'VIT', 'Information Technology', '9.25', '10', '0'), (8783, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (8784, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '169', '335', '4', '113', 'IIT Guwahati', 'ECE', '8.37', '100', '0'), (8785, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (8786, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '630', '1380', 'None', '114', 'PESIT', 'Information Science', '8.1', '10', '0'), (8787, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (8788, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '660', '1460', '4.5', '118', 'MU', 'Electronics and Telecommunication', '80.66', '100', '0'), (8789, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '108', 'VIT University', 'EE', '8.7', '10', '0'), (8790, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '155', '318', '4', '116', 'MSRIT', 'Electronics and Communication', '9.22', '10', '0'), (8791, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'IIT Roorkee', 'Architecture', '8.2', '10', '0'), (8792, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (8793, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '770', '670', '1440', '3', '113', 'SGSITS', 'Information Technology', '75.6', '100', '0'), (8794, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (8795, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4', '110', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73', '100', '0'), (8796, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '160', '325', '4', '117', 'SJCE', 'E&C;', '9.5', '10', '0'), (8797, '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '170', '162', '332', '4', '110', 'BITS Pilani', 'Electronics and Communication', '9.43', '10', '3'), (8798, '14', 'Admit', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '170', '154', '324', '4', '110', 'IIT Bombay', 'Mechanical Engineering', '7.32', '10', '22'), (8799, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'SRM', 'Civil Engineering', '9.66', '10', '0'), (8800, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '111', 'Thadomal Shahani Engineering College', 'Computer Engineering', '67', '100', '0'), (8801, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '610', '1390', '4', '108', 'PESIT', 'Computer Science', '69.56', '100', '0'), (8802, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '106', 'COEP', 'Computer Engineering & Information Technology', '8.27', '10', '0'), (8803, '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '166', '158', '324', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.8', '10', '0'), (8804, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '1420', '116', 'IIT Roorkee', 'ECE', '8.026', '10', '0'), (8805, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '98', 'D j Sanghvi', 'EXTC', '71', '100', '0'), (8806, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '690', '1490', '4.5', '115', 'DA-IICT', 'Information and Communication Technology', '8.29', '10', '0'), (8807, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '163', '333', '3.5', '113', 'NITK Surathkal', 'ECE', '8.17', '100', '0'), (8808, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '151', '309', '4.5', '110', 'Nagpur University', 'Electronics and Communication', '76', '100', '0'), (8809, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall', 'None', '169', '165', '334', '4.5', '114', 'IIT Bombay', 'Chemical Engineering', '7.43', '10', '0'), (8810, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '590', '1390', '4', '112', 'University of Mumbai', 'Chemical Engineering', '0', '0', '0'), (8811, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '157', '326', '4', '116', 'BITS Pilani', 'EEE', '8.83', '10', '0'), (8812, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '112', 'NIT Tirchy', 'CS', '8.81', '10', '0'), (8813, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '5', '113', 'Delhi College Of Engineeing', 'Computer Engineerring', '63', '100', '0'), (8814, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8815, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '470', '1260', '4.5', '110', 'VTU', 'biotechnology', '7.9', '10', '0'), (8816, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '157', '150', '307', '3', '106', 'DY Patil University Navi Mumbai', 'Bioinformatics', '71', '100', '0'), (8817, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '155', '320', '4.5', '110', 'SASTRA', 'ECE', '9.1', '10', '0'), (8818, '14', 'Admit', 'MS', 'Computer vision/image-video processing', 'Fall ', '2013', '165', '160', '325', '5', '114', 'SPCE', 'IT', '61', '100', '0'), (8819, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '640', '1430', '4', '109', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '60', '100', '0'), (8820, '14', 'Admit', 'MS', 'Biotechnology/bio-engineering', 'Fall', 'None', '780', '530', '1310', '3.5', '103', 'NIT Rourkela', 'Biotechnology', '8.8', '10', '0'), (8821, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (8822, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2008', '800', '600', '1400', '4', '112', 'University of Kerala', 'Mechanical', '73', '100', '0'), (8823, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '153', '148', '301', '3.5', '101', 'VTU', 'Computer science and engineering', '72.07', '100', '0'), (8824, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1300', 'None', '1300', 'None', '100', 'BITS Pilani', 'Electrical and electronics', '7.5', '10', '0'), (8825, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '166', '335', '3.5', '113', 'NIT', 'Civil Engineering', '9.22', '10', '0'), (8826, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (8827, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '620', '1420', '1420', '105', 'RAIT', 'ECE', '72', '100', '0'), (8828, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '107', 'SSN College of Engineering', 'Electronics and Communication Engineering', '86', '100', '0'), (8829, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '162', '322', '4', '114', 'R V College of Engineering', 'Computer Science and Engineering', '9.18', '10', '0'), (8830, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (8831, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (8832, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (8833, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '600', '1370', '5', 'None', 'Toronto', 'EE', '3.6', '4', '0'), (8834, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '480', '1280', '4', '115', 'IIT Madras', 'Electrical Engineering', '7.3', '10', '0'), (8835, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8836, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (8837, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8838, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (8839, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (8840, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '760', '350', '1110', '3.5', '96', 'VTU', 'Mechanical', '67', '100', '0'), (8841, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '161', '327', '4.5', '107', 'MSRIT', 'Electronics and Communication Engineering', '9.22', '10', '0'), (8842, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '690', '1490', '4', '113', 'Sri Jayachamarajendra College of Engineering', 'Electronics & Communication', '81.92', '100', '0'), (8843, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '770', '650', '1420', '4', '115', 'Anna University', 'computer science', '80', '100', '0'), (8844, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '109', 'Velammal Engineering College', 'Computer Science and Engineering', '8.8', '10', '0'), (8845, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (8846, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '108', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '75.26', '100', '0'), (8847, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (8848, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '104', 'DCE', '0', '74', '100', '0'), (8849, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (8850, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (8851, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '159', '154', '313', '3.5', '107', 'KIIT', 'Civil Engineering', '7.85', '10', '1'), (8852, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '620', '1420', '4', '110', 'IIT Guwahati', 'Design', '8.04', '10', '0'), (8853, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (8854, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (8855, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '162', '327', '4', '111', 'NIT Calicut', 'ECE', '9.04', '10', '17'), (8856, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '165', '333', '4', '117', 'BITS Pilani', 'Computer Science', '9.12', '10', '14'), (8857, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '710', '1490', '4.5', '111', 'VJTI', 'Electronics', '9.1', '10', '0'), (8858, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (8859, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '163', '163', '326', '4.5', '118', 'VTU', 'Telecommunication', '8.38', '10', '0'), (8860, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (8861, '14', 'Admit', 'MS', 'Urban Design', 'Fall ', '2015', '156', '155', '311', '4.5', '110', 'University of Mumbai', 'Sir J J College of Architecture', '74', '100', '36'), (8862, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '5', '111', 'SSN College of Engineering', 'Electronics and Communication Engineering', '87', '100', '0'), (8863, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '155', '321', '3.5', '113', 'YMCA', 'EIC', '8.17', '10', '0'), (8864, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '510', '1310', '4', '112', 'BITS Pilani', '0', '9.91', '10', '0'), (8865, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', '116', 'Jadavpur University', 'Electrical Engineering', '8.82', '10', '0'), (8866, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (8867, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '166', '161', '327', '4', '117', 'University of Mumbai', 'Electronics and Telecom', '72', '100', '0'), (8868, '14', 'Admit', 'MS', 'HCI / CS', 'Fall ', '2014', '168', '149', '317', '3', 'None', 'IIIT Hyderabad', 'Computer Science', '7.87', '10', '0'), (8869, '14', 'Admit', 'MS', 'civil', 'Fall ', '2012', '163', '155', '318', '3.5', '107', 'Jadavpur University', 'construction engg', '8.56', '10', '0'), (8870, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (8871, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '165', '328', '4.5', '115', 'Anna University', 'CSE', '96.4', '100', '0'), (8872, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (8873, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (8874, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2010', '770', '560', '1330', '4.4', '116', 'UIIT HPU', '0', '67', '100', '0'), (8875, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (8876, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '169', '160', '329', '3.5', '114', 'Pune University', 'E&TC;', '64.47', '100', '0'), (8877, '14', 'Admit', 'MS', 'statistics', 'Fall ', '2015', '166', '165', '331', '3.5', '110', 'IIT Roorkee', 'Chemistry', '7.4', '10', '0'), (8878, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (8879, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (8880, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '530', '1330', '3.5', '108', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.87', '10', '0'), (8881, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (8882, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '114', 'Sardar Patel College of Engineering', 'Computer Science', '70', '100', '0'), (8883, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '152', '320', '4', 'None', 'Thiagarajar College of engineering', 'electrical and electronics', '9.53', '10', '0'), (8884, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (8885, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8886, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (8887, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '730', '490', '1220', '4', '110', 'Jaypee Institute of Information Technology', 'CSE', '8.7', '10', '0'), (8888, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '164', '330', '5', '119', 'CoE Trivandrum', 'Electronics and Communication Engg', '8.5', '10', '0'), (8889, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '430', '1130', '3', '91', 'Andal Alagar College of Engineering', 'EEE', '79.3', '100', '0'), (8890, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '780', '570', '1350', '3.5', '114', 'BITS Dubai', 'Mechanical Engineering', '9.64', '10', '0'), (8891, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '720', '1520', '4', '118', 'Sardar Patel College of Engineering', 'Electrical Engineering', '68', '100', '0'), (8892, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (8893, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '114', 'NITK Surathkal', 'IT', '8.8', '10', '0'), (8894, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '151', '321', '3', '104', 'BITS Goa', 'Mechanical', '8.32', '10', '0'), (8895, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', '167', '155', '322', '4', '116', 'MU', 'EXTC', '77', '100', '0'), (8896, '14', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (8897, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '3.5', '113', 'NITK Surathkal', 'ECE', '8.4', '10', '0'), (8898, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '158', '152', '310', '4', '106', 'Sri Venkateswara College of Engineering', 'ECE', '79', '100', '0'), (8899, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '800', '660', '1460', '3.5', '110', 'University of Mumbai', 'Information Technology', '78.48', '100', '0'), (8900, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '106', 'NIT Jalandhar', 'Computer Science', '74', '100', '0'), (8901, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (8902, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (8903, '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '710', '1510', '4.5', '111', 'Coimbatore Insitute of Technology', 'Computer Science', '8.8', '10', '0'), (8904, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3', '103', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '8.36', '10', '0'), (8905, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (8906, '14', 'Admit', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '740', '1540', '5', '114', 'R V College of Engineering', 'EEE', '82', '100', '0'), (8907, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (8908, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (8909, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '161', '325', '5', '118', 'NIT Calicut', 'Electronics and Communication Engineering', '5.9', '10', '0'), (8910, '14', 'Admit', 'MS', 'Finance', 'Fall ', '2011', '50', '34', '84', '4.5', '103', 'IIT Madras', 'Biotechnology', '7.37', '10', '0'), (8911, '14', 'Admit', 'MS', 'CS / MSIS / ITM', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'SMVDU Jammu', 'CSE', '8.73', '10', '39'), (8912, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '120', 'PICT', 'Information Technology', '4.92', '5', '24'), (8913, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (8914, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '680', '1440', '4', '114', 'VESIT', 'Electronics and Telecom', '76', '100', '0'), (8915, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (8916, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (8917, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (8918, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '108', 'Model Engineering College', 'Computer science', '75', '100', '0'), (8919, '14', 'Admit', 'MS', 'Structural', 'Fall ', '2013', '164', '154', '318', '4', '104', 'NIT Srinagar', 'Civil Engineering', '9.603', '10', '0'), (8920, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '115', 'CEG', 'Computer Science', '8.3', '10', '0'), (8921, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '164', '334', '4', '113', 'NIT Warangal', 'ECE', '8.64', '10', '0'), (8922, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '790', '700', '1490', '4.5', 'None', 'None', '0', '80', '100', '0'), (8923, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (8924, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '650', '1420', '4', '111', 'VESIT', 'Electronics and Tele communications', '70', '100', '0'), (8925, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (8926, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (8927, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '170', '157', '327', '4', '102', 'BITS Pilani', 'EEE', '9.94', '10', '0'), (8928, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'University of Mumbai', 'Electronics and Telecommunication', '70.57', '100', '0'), (8929, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '152', '322', 'None', '110', 'SASTRA', 'ECE', '8.1', '10', '24'), (8930, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (8931, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '790', '660', '1450', '4', '111', 'University of Pune', 'Mechanical Engineering', '63', '100', '0'), (8932, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '670', '1470', '4.5', '113', 'Delhi College Of Engineeing', 'Environmental Engineering', '74.54', '100', '0'), (8933, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (8934, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (8935, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3.5', '106', 'BMSCE', 'Telecommunication', '70', '100', '0'), (8936, '14', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2015', '168', '164', '332', '4', '119', 'University of Mumbai', 'Electronics and Telecommunication', '83', '100', '0'), (8937, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (8938, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8939, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (8940, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '158', '324', '3.5', '105', 'Manipal Institue of Technology', 'Mechatronics', '7.1', '10', '0'), (8941, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '99', '91', '190', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.6', '10', '0'), (8942, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (8943, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '4', '117', 'None', 'EEE', '8.9', '10', '0'), (8944, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '156', '319', '4', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (8945, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (8946, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (8947, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (8948, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (8949, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (8950, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (8951, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '156', '314', '3', '109', 'MSRIT', 'Telecommunication', '8.52', '10', '0'), (8952, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', 'None', 'Anna University', 'Production', '8.57', '10', '0'), (8953, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '450', '1250', '4.5', '112', 'Dr. Ambedkar Institute of Technology', 'Computer Science', '75', '100', '0'), (8954, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (8955, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.99', '10', '0'), (8956, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'VTU', 'Computer Science', '76', '100', '0'), (8957, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (8958, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '154', '315', '4', '109', 'SRM', 'Civil Engineering', '8.95', '10', '0'), (8959, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '113', 'Galgotias College Of Engineering & Technology', 'CSE', '68.7', '100', '0'), (8960, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (8961, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '169', '152', '321', '3.5', '97', 'VIT', 'ECE', '89.3', '100', '0'), (8962, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '105', 'University of Pune', 'Computer Engineering', '65', '100', '0'), (8963, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (8964, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (8965, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (8966, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (8967, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (8968, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', 'None', '107', 'Thapar University', 'Computer Science', '7.44', '10', '0'), (8969, '14', 'Reject', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (8970, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (8971, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (8972, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (8973, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '111', 'Siddaganga Institue of Technology', 'Telecommunication Engineering', '9.17', '10', '0'), (8974, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (8975, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (8976, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (8977, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (8978, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (8979, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (8980, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '108', 'PESIT', 'Electronics and Communication', '69.6', '100', '14'), (8981, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '104', 'D J Sanghvi', 'Information Technology', '74', '100', '0'), (8982, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '170', '153', '323', '4', '110', 'IIT', '0', '8.4', '10', '0'), (8983, '14', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (8984, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2015', '800', '650', '1450', '4', '115', 'BITS Goa', 'Electrical and Electronics Engineering', '8.2', '10', '32'), (8985, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (8986, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '3.5', '114', 'GITAM', 'CSE', '8.04', '100', '0'), (8987, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (8988, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (8989, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (8990, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '450', '1230', '3.5', 'None', 'Walchand College Of Engineering', 'Electronics', '76', '100', '0'), (8991, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '104', 'COEP', 'Civil Engineering', '7.52', '10', '0'), (8992, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (8993, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (8994, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'ECE', '76.59', '100', '0'), (8995, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8996, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '166', '334', '5', '116', 'IIT BHU', '0', '8.4', '10', '0'), (8997, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4', '100', 'DTU', 'IT', '71', '100', '0'), (8998, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (8999, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '111', 'Osmania University', 'Mechanical Engineering', '83', '100', '0'), (9000, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (9001, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (9002, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (9003, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (9004, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '4', '110', 'D J Sanghvi', 'Computer Engg', '69', '100', '21'), (9005, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '157', '320', '4.5', '117', 'Shiv Nadar University', 'Computer Science', '9.15', '10', '0'), (9006, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (9007, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (9008, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (9009, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (9010, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (9011, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '162', '331', '4', '113', 'Visvesvaraya NIT Nagpur', 'Mechanical Engineeing', '7.94', '10', '0'), (9012, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '99', 'BIT Mesra', 'Electronics and Communication', '80.8', '100', '0'), (9013, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (9014, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '156', '319', '3.5', '104', 'MU', 'Computers', '67.72', '100', '0'), (9015, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (9016, '14', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (9017, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'University school of chemical technology GGS Indraprastha University Delhi', '0', '79', '100', '0'), (9018, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '107', 'Veermata Jijabai Technological Institute', 'Electronics Engineering', '8.7', '10', '14'), (9019, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '4.5', '111', 'GITAM', 'CSE', '9.25', '10', '0'), (9020, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '159', '323', '5', '116', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.6', '10', '0'), (9021, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (9022, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (9023, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4', '114', 'CoE Trivandrum', 'Computer Science', '7.64', '10', '0'), (9024, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (9025, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (9026, '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall', 'None', '163', '150', '313', 'None', '100', 'University of Pune', 'Mechanical Engg', '3.76', '4', '46'), (9027, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '156', '317', '3.5', '105', 'Vishwakarma Institute of Technology', 'Computer Engineering', '75', '100', '0'), (9028, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (9029, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (9030, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (9031, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (9032, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (9033, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '108', 'Delhi College Of Engineeing', 'Department of Computer Science', '71.4', '100', '0'), (9034, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '163', '154', '317', '3.5', '103', 'VTU', 'Computer science', '75.8', '100', '0'), (9035, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '170', '155', '325', '4', '101', 'NIT Goa', 'CSE', '8.1', '10', '14'), (9036, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '161', '327', '3.5', 'None', 'CoE Trivandrum', 'ELECTRONICS AND COMMUNICATION', '6.95', '10', '0'), (9037, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '420', '1200', '3.5', '105', 'SRM', 'Computer Science and Engineering', '9.28', '10', '0'), (9038, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (9039, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '106', 'BIT Mesra', 'Information Technology', '7.34', '10', '0'), (9040, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '154', '150', '304', '4', '97', 'CEG', 'Media Sciences', '8.235', '10', '0'), (9041, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '164', '327', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication engineering', '81.94', '100', '0'), (9042, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (9043, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (9044, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '530', '1270', '3', '105', 'Pune University', 'IT', '68', '100', '0'), (9045, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '107', 'VJTI', 'IT', '7.8', '10', '0'), (9046, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (9047, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (9048, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (9049, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (9050, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (9051, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '94', 'Amravati University', 'Mechanical Engineering', '72.35', '100', '0'), (9052, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (9053, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '156', '326', '3', 'None', 'Thapar University', 'Mechanical', '7.65', '10', '23'), (9054, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', 'None', '108', 'MU', 'Electronics Engineering', '63', '100', '0'), (9055, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (9056, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (9057, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '111', 'Maharaja Surajmal Institute of Technology', 'Computer Science', '0', '0', '30'), (9058, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '157', '322', '3', '104', 'NIT Calicut', 'Production Engineering', '8.5', '10', '0'), (9059, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '153', '316', '3', '112', 'VIT', 'electronics', '8.86', '10', '0'), (9060, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '163', '330', '4', 'None', 'NITK Surathkal', 'Mechanical Engineering', '8.92', '10', '29'), (9061, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '164', '327', '4.5', '106', 'Nationl Institute of Technology Jamshedpur', 'Electronics and Communication Engineering', '9.42', '10', '0'), (9062, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (9063, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '4', '112', 'IIITD', 'Computer Science', '8.67', '10', '0'), (9064, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '780', '690', '1470', 'None', 'None', 'SSN College of Engineering', 'ECE', '83', '100', '0'), (9065, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (9066, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (9067, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (9068, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (9069, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '107', 'K J Somaiya College of Engiineering', 'Computer Engineering', '68.6', '100', '0'), (9070, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '109', 'NIT Calicut', 'ECE', '8.1', '10', '0'), (9071, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '147', '310', '3.5', '106', 'SJCE', 'Electronics and Communication', '9.01', '10', '0'), (9072, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '106', 'IIIT Jabalpur', 'Computer Science', '8.4', '10', '0'), (9073, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (9074, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (9075, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '100', 'IIT', 'Information Technology', '8.28', '10', '48'), (9076, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '680', '1450', '3', '99', 'BMSCE', 'EC', '85', '100', '0'), (9077, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '4', '115', 'IIT Kharagpur', 'ECE', '9.28', '10', '0'), (9078, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (9079, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (9080, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '104', 'VTU', 'Computer Science', '81.3', '100', '0'), (9081, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (9082, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (9083, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (9084, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '152', '320', '3.5', '103', 'KIIT', 'Computer Science', '9', '10', '0'), (9085, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '3', '104', 'MU', 'Electronics and telecommunication', '78', '100', '0'), (9086, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (9087, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (9088, '14', 'Reject', 'MS', 'HCI / CS', 'Fall ', '2014', '169', '149', '318', '3.5', '108', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '8', '10', '0'), (9089, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '107', 'Jaypee Institute of Information Technology', 'ECE', '7.6', '10', '0'), (9090, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (9091, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '106', 'Jaypee Institute of Information Technology', 'Computer Science and Engineering', '7.5', '10', '0'), (9092, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (9093, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (9094, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (9095, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (9096, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (9097, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '160', '326', '4', '108', 'Bhilai Institute of Technology', 'Computer Science', '7.81', '10', '0'), (9098, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '167', '328', '3.5', '109', 'RNSIT', '0', '78.23', '100', '0'), (9099, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (9100, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '149', '308', '3.5', '100', 'VIT Pune', 'I. T', '8.5', '10', '0'), (9101, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (9102, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '151', '317', '3.5', '95', 'VJTI', 'CS', '7.6', '10', '0'), (9103, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (9104, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '153', '316', '3.5', '114', 'Jabalpur Engg College', 'EE', '8.21', '10', '0'), (9105, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (9106, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '760', '440', '1200', '3.5', '110', 'Pune University', 'Computer Science', '70.66', '100', '0'), (9107, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (9108, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (9109, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (9110, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '660', '1380', '4', '107', 'Anna University', 'Information Technology', '7.5', '10', '0'), (9111, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (9112, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (9113, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '165', '333', '4.5', 'None', 'Delhi College Of Engineeing', 'ECE', '78.48', '100', '0'), (9114, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (9115, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '113', 'NIT-Trichy', 'EEE', '8.61', '10', '0'), (9116, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4', '117', 'Thadomal Shahani Engineering College', 'Computer Engineering', '64.96', '100', '0'), (9117, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '153', '311', '3', '97', "St Joseph's College of Engineering", 'Mechanical engineering', '74', '100', '0'), (9118, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '152', '314', '4', '105', 'L D College Of Engineering', 'Civil Engineering', '7.9', '10', '0'), (9119, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (9120, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (9121, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (9122, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (9123, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (9124, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3.5', '113', 'NIT Calicut', 'ECE', '7.27', '10', '24'), (9125, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'NIT Hamirpur', 'Computer Science and Engineering', '8.64', '10', '0'), (9126, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (9127, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', 'None', 'DA-IICT', 'Information and Communication Technology', '9.26', '10', '15'), (9128, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (9129, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'VTU', 'Mechanical Engineering', '81', '100', '0'), (9130, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (9131, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '156', '319', '4', '115', 'BITS Pilani', 'Chemical Engineering', '8.4', '10', '0'), (9132, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '161', '154', '315', '3.5', '111', 'SASTRA', 'CSE', '8.75', '10', '0'), (9133, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '550', '1350', '3', '107', 'University of Mumbai', 'ELECTRONICS AND TELECOMMUNICATIONS', '67', '100', '0'), (9134, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (9135, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '161', '325', '5', '111', 'Sir MVIT', 'Information Science and Engineering', '74.34', '100', '24'), (9136, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '110', 'Thadomal Shahani Engineering College', 'Computers', '75.2', '100', '0'), (9137, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '161', '329', '3', '105', 'IIT BHU', 'Electronics and communication', '7.86', '10', '0'), (9138, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (9139, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (9140, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '117', 'Don Bosco Institute of Technology', 'Computer Science', '75.5', '100', '14'), (9141, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3', '105', 'Uttarakhand Technical University', 'Computer Science and Engineering', '72', '100', '0'), (9142, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (9143, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (9144, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (9145, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '580', '1300', 'None', 'None', 'IIT Guwahati', 'CSE', '6.55', '10', '0'), (9146, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (9147, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9148, '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '800', '500', '1300', '3.5', '110', 'SRM', 'Computer Science', '8.47', '10', '0'), (9149, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '680', '1450', '3.5', '101', 'Anna University', 'Production Engg', '8.6', '10', '0'), (9150, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (9151, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (9152, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (9153, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '3', '102', 'BITS Pilani', 'Electronics & Communication', '9.73', '10', '0'), (9154, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (9155, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '110', 'Pune University', 'Computer Science', '65', '100', '0'), (9156, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (9157, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '157', '327', '3.5', '109', 'IIT Roorkee', 'Mechanical Engineering', '8.06', '10', '0'), (9158, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'Madras Institute of Technology', 'Aerospace engineering', '9.46', '10', '0'), (9159, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (9160, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '163', '324', '4', '116', 'D J Sanghvi', 'Computers', '75.8', '100', '24'), (9161, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (9162, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '107', 'Jadavpur University', 'Electrical Engineering', '8.56', '10', '0'), (9163, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3', '106', 'NSIT', 'Computer Engineering', '78.88', '100', '32'), (9164, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '114', 'NIT Calicut', 'Computer Science and Engineering', '9.48', '10', '0'), (9165, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (9166, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (9167, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (9168, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (9169, '14', 'Reject', 'MS', 'MIS/MS CS', 'Fall ', '2013', '800', '450', '1250', '4.5', '101', 'Sri Sairam Engineering College', 'Computer Science', '73', '100', '0'), (9170, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (9171, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (9172, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '107', 'BITS Pilani', 'CS', '8.5', '10', '44'), (9173, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '490', '1240', '4', '114', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.2', '10', '0'), (9174, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (9175, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (9176, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '89', 'Coimbatore Insitute of Technology', 'Mechanical', '8.34', '10', '0'), (9177, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (9178, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '114', 'BITS Pilani', 'Computer Science and Information systems', '7.23', '10', '0'), (9179, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Electrical engineering', '7.64', '10', '0'), (9180, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (9181, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (9182, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '152', '321', '4', '109', 'MU', 'Information Technology', '62.47', '100', '28'), (9183, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (9184, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '167', '160', '327', '4', '115', 'BITS Goa', 'Physics + Electronics and Electrical', '8.05', '10', '3'), (9185, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (9186, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '800', '590', '1390', '3', '109', 'Biju Patnaik University of Technology', 'Electronics and Instrumentation', '8.85', '10', '0'), (9187, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (9188, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (9189, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '4', '111', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '79', '100', '30'), (9190, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (9191, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (9192, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (9193, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4', '112', 'University of Pune', 'Electronics & Telecommunications', '61', '100', '0'), (9194, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (9195, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (9196, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '115', 'BITS Pilani', 'Computer Science', '8.13', '10', '0'), (9197, '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2013', '164', '151', '315', '3', '94', 'SSN College of Engineering', 'CSE', '76.4', '100', '0'), (9198, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '161', '158', '319', '5', '112', 'VJTI', 'Electronics', '82', '100', '0'), (9199, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '113', 'SSN College of Engineering', 'ECE', '8.8', '10', '0'), (9200, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (9201, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '157', '323', '4', '119', 'BITS Goa', 'Computer Science', '8.48', '10', '0'), (9202, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', '3.5', '111', 'GGSIPU', 'IT', '72', '100', '0'), (9203, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '530', '1280', '4.5', '110', 'VTU', 'Computer Science', '82', '100', '0'), (9204, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (9205, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '155', '324', '4', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engineering', '69', '100', '0'), (9206, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (9207, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '790', '760', '1550', '4', '116', 'University College of Engineering Osmania University', 'ECE', '3.2', '4', '0'), (9208, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '170', '156', '326', '5', 'None', 'Jadavpur University', 'Instrumentation and Electronics Engineering', '8.948', '10', '0'), (9209, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '116', 'MU', 'Electronics', '66.7', '100', '0'), (9210, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4.5', '113', 'JNTU', 'Computer Science and Information Technology', '77', '100', '0'), (9211, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (9212, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '105', 'IIT Kharagpur', 'Aerospace', '8.66', '10', '0'), (9213, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '3.5', '107', 'MSRIT', 'ELEC & COMM', '8.74', '10', '0'), (9214, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '109', 'Anna University', 'Mech', '7.41', '10', '0'), (9215, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '560', '1340', '4', '112', 'B M S College of Engineering', 'Telecommunication', '9.1', '10', '0'), (9216, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2012', '780', '720', '1500', '4.5', '115', 'PESIT', 'Telecommunication', '7.69', '10', '0'), (9217, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (9218, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (9219, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (9220, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '104', 'Sir MVIT', 'E&CE;', '8.305', '10', '0'), (9221, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (9222, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '560', '1340', '3', '89', 'Jadavpur University', 'Chemical Engineering', '74', '100', '0'), (9223, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (9224, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (9225, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (9226, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (9227, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (9228, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (9229, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (9230, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (9231, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4', '99', 'Sardar Patel College of Engineering', 'Electronics', '69', '100', '0'), (9232, '14', 'Reject', 'MS', 'CS/SE', 'Fall ', '2012', '800', '610', '1410', '4', '104', 'NMIMS', 'CE', '3.07', '4', '0'), (9233, '14', 'Reject', 'MS', 'Systems and Control', 'Fall ', '2014', '165', 'None', '165', '3.5', '104', 'NIT Surat', 'Electrical Engineering', '8.18', '10', '0'), (9234, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '600', '1400', '4', '103', 'MU', 'Information Technology', '72', '100', '0'), (9235, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '780', '680', '1460', '4', '110', 'U.P. Technical University', 'CS', '67', '100', '0'), (9236, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (9237, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (9238, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '112', 'None', '0', '8.36', '10', '0'), (9239, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '530', '1300', '3', '106', 'MU', 'CS', '72.48', '100', '0'), (9240, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '104', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '76.56', '100', '0'), (9241, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'COEP', 'Computer and Information Tehnology', '8.39', '10', '0'), (9242, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (9243, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2010', '800', '570', '1370', '3.5', '116', 'NITK Surathkal', 'ECE', '8.56', '10', '0'), (9244, '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '166', '157', '323', '4', '109', 'BITS Pilani', 'EEE', '8.64', '10', '0'), (9245, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '4.5', '111', 'NIT Tirchy', 'Mechanical Engg', '8.59', '10', '0'), (9246, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (9247, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (9248, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (9249, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '800', '1600', '4', '110', 'Thapar University', 'Mechanical Engineering', '9.35', '10', '0'), (9250, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (9251, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (9252, '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '166', '156', '322', '4', '113', 'Pune University', 'Electronics & Telecomm', '62.9', '100', '22'), (9253, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4', '112', 'NIT Calicut', 'ECE', '7.84', '10', '0'), (9254, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (9255, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (9256, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT (Information and Communication Technology)', '6.4', '10', '23'), (9257, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '400', '1200', '4', '105', 'CEG', '0', '9.2', '10', '0'), (9258, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '157', '316', '4', '111', 'NITK Surathkal', 'Computer Engineering', '7.7', '10', '0'), (9259, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (9260, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (9261, '14', 'Reject', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (9262, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (9263, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (9264, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (9265, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (9266, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '108', 'VTU', 'Electronics', '8.84', '10', '0'), (9267, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '326', '156', '482', '4', '113', 'VTU', 'CSE', '82.64', '100', '12'), (9268, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '155', '321', '3', '107', 'NIT- Surat', 'Civil Engineering', '9.38', '10', '0'), (9269, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (9270, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (9271, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (9272, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'BITS Goa', 'Chemical Engineering', '7.34', '10', '0'), (9273, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '151', '316', '4', '103', 'J.N.T. University Hyderabad', 'Electronics and Communication Engineering', '81.85', '100', '0'), (9274, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (9275, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (9276, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '162', '148', '310', '3', '104', 'VESIT', 'CompEngg', '66', '100', '15'), (9277, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (9278, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '168', '336', '5', '118', 'Madras Institute of Technology', 'Computer Science', '8.65', '10', '24'), (9279, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'K J Somaiya College of Engiineering', 'Computer', '69', '100', '0'), (9280, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (9281, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9282, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4', '115', 'None', '0', '8.74', '10', '0'), (9283, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', '100', 'Pune University', 'Mechanical Engineering', '72.4', '100', '0'), (9284, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (9285, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (9286, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '680', '1480', '4', '108', 'R V College of Engineering', 'Electronics & Comm', '9.25', '10', '0'), (9287, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (9288, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (9289, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '154', '315', '4', '108', 'VIT', 'ECE', '8.78', '10', '0'), (9290, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (9291, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '3.5', '109', 'MU', 'Information Technology', '69.82', '100', '30'), (9292, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (9293, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (9294, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (9295, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (9296, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (9297, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '470', '790', '1260', '3.5', '112', 'Madras Institute of Technology', 'Electronics and Communication engineering', '8', '10', '0'), (9298, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '760', '540', '1300', '3', '102', 'Coimbatore Insitute of Technology', 'Computer Science & Engineering', '9.06', '10', '0'), (9299, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '162', '324', '3', '109', 'VTU', 'Civil Engineering', '8.12', '10', '12'), (9300, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (9301, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (9302, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '4.5', '115', 'SRM', 'Electrical & electronics engineering', '8.881', '10', '0'), (9303, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (9304, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '109', 'Osmania University', 'CSE', '86.2', '100', '0'), (9305, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '165', '161', '326', '3', '105', 'VTU', 'ECE', '87', '100', '0'), (9306, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (9307, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (9308, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '163', '164', '327', '4', '115', 'Anna University', 'Aeronautical Engg.', '8.73', '10', '0'), (9309, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '670', '1450', '3.5', '108', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9310, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (9311, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '165', '333', '4', '117', 'PESIT', 'ECE', '9.7', '10', '0'), (9312, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '157', '326', '3.5', '110', 'TU', 'Computer Science', '9.9', '10', '0'), (9313, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (9314, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (9315, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (9316, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (9317, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '150', '310', '4', '105', 'Sri Jayachamarajendra College of Engineering', 'ECE', '9.06', '10', '0'), (9318, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (9319, '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'MU', 'IT', '62', '100', '0'), (9320, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (9321, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '580', '1350', '3', '107', 'PSG College of Technology', 'Production Engineering', '9.32', '10', '0'), (9322, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (9323, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (9324, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (9325, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (9326, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '116', 'D J Sanghvi', 'Comps', '67', '100', '0'), (9327, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '105', 'GGSIPU', 'CSE', '69', '100', '0'), (9328, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '154', '324', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication', '9.53', '10', '0'), (9329, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (9330, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '98', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (9331, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (9332, '14', 'Reject', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (9333, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (9334, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '600', '1350', '4', '106', 'Anna University', 'ECE', '84', '100', '0'), (9335, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (9336, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (9337, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (9338, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (9339, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (9340, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3.5', '105', 'BVCOE', 'IT', '75', '100', '0'), (9341, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9342, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '102', 'C.I.T.M M.D.U Rohtak', 'Mechanical Engineering', '70', '100', '0'), (9343, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '161', '320', '3', '106', 'Anna University', 'Information Technology', '74', '100', '0'), (9344, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (9345, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '103', 'IIT Bhubaneswar', 'Electrical Engineering', '9.47', '10', '0'), (9346, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (9347, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (9348, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '116', 'MU', 'Computer Engineering', '72.95', '100', '0'), (9349, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (9350, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '590', '1380', '3', '104', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.6', '10', '0'), (9351, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (9352, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (9353, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (9354, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (9355, '14', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (9356, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '162', '158', '320', '3', '113', 'RAIT', 'Electronics', '61', '100', '0'), (9357, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '163', '331', '4', '118', 'Government Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '78.4', '100', '81'), (9358, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '107', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '77', '100', '0'), (9359, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '161', '157', '318', '4', '109', 'Manipal Institue of Technology', 'Electronics and Communication', '8.78', '10', '0'), (9360, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '640', '1430', '3', '105', 'JNNCE / VTU', 'Computer Science', '78', '100', '0'), (9361, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (9362, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (9363, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '166', '331', '4', '113', 'Madras Institute of Technology', 'ECE', '9.1', '10', '0'), (9364, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (9365, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (9366, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (9367, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '107', 'BITS Dubai', 'Ece', '9.68', '10', '0'), (9368, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2006', '800', '600', '1400', '4', '267', 'Andhra University', 'Chemical Engg', '83.2', '100', '0'), (9369, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '520', '1310', '3.5', '99', 'MU', 'Electronics and Telecommunication', '75.34', '100', '0'), (9370, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '540', '1280', '4', '111', 'MU', 'Computer Engineering', '69', '100', '0'), (9371, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (9372, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (9373, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '151', '318', '3.5', '95', 'NIT Calicut', 'ECE', '7.88', '10', '24'), (9374, '14', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '163', '155', '318', '3', '112', 'BITS Dubai', 'ECE', '9.45', '10', '0'), (9375, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (9376, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (9377, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (9378, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (9379, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '162', '314', '3', '107', 'Amrita School of Engineering', 'Computer Science', '8.68', '10', '0'), (9380, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (9381, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (9382, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (9383, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '560', '1340', '3.5', '108', 'NIT', 'ECE', '9.02', '10', '0'), (9384, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (9385, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '155', '318', '4', '104', 'IIIT Jabalpur', 'ECE', '8', '100', '0'), (9386, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (9387, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (9388, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '164', '334', '4', '112', 'Delhi College Of Engineeing', 'Electronics And Communication', '64.09', '100', '0'), (9389, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '103', 'NIT Warangal', 'Computer science', '7.2', '10', '0'), (9390, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (9391, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (9392, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '4', '106', 'SASTRA', 'CSE', '9.37', '10', '12'), (9393, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (9394, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (9395, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (9396, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '93', 'PICT', 'IT', '3.55', '4', '0'), (9397, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (9398, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (9399, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '580', '1360', '4', '106', 'Anna University', 'Electronics and Communication', '74', '100', '0'), (9400, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '790', '640', '1430', '4', '116', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '79', '100', '0'), (9401, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (9402, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (9403, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '157', '322', '4.5', '116', 'Nanyang Technological University', 'EEE', '4.48', '5', '0'), (9404, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (9405, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (9406, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', '0', 'None', '152', '3', '155', '0', '101', 'BITS Pilani', 'EEE', '8', '10', '0'), (9407, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (9408, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (9409, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (9410, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (9411, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '110', 'Nirma Institute of Technology', 'Information Technology', '7.87', '10', '0'), (9412, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '3.5', '108', 'D J Sanghvi', 'Chemical Engineering', '67', '100', '0'), (9413, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (9414, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (9415, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (9416, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (9417, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '154', '144', '298', '3', '98', 'Anna University', 'CSE', '75', '100', '0'), (9418, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3.5', '101', 'D j Sanghvi', 'computer engineering', '69', '100', '0'), (9419, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (9420, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (9421, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (9422, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '165', '334', '3.5', '120', 'None', 'Electronics and Comm', '8.19', '10', '0'), (9423, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (9424, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '166', '336', '3.5', '114', 'IIT Madras', 'Electrical Engineering', '6.7', '10', '7'), (9425, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '760', '590', '1350', '3.5', '110', 'VTU', 'Computer Science and Engineering', '80', '100', '0'), (9426, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (9427, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (9428, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '164', '153', '317', '4', '112', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.87', '10', '0'), (9429, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (9430, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (9431, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (9432, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Science', '70', '100', '0'), (9433, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (9434, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '110', 'VTU', 'Computer Science', '72', '100', '0'), (9435, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', '105', 'MSRIT', 'Computer Science', '75', '100', '0'), (9436, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '110', 'IIT Guwahati', 'Computer Science', '7.1', '10', '0'), (9437, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '5', '112', 'RNSIT', 'Information Science', '75', '100', '0'), (9438, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (9439, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3.5', 'None', 'NIT Warangal', 'ECE', '7.83', '10', '0'), (9440, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '144', '313', '4', '102', 'Chulalongkorn', 'Mechanical Engineering', '3.34', '4', '0'), (9441, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (9442, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (9443, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (9444, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '108', 'The Maharaja Sayajirao University', 'Electronics', '3.7', '4', '0'), (9445, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '155', '321', '2.5', '98', 'BITS Goa', 'Mechanical', '8.36', '10', '0'), (9446, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'Thapar University', 'Chemical Engineering Department', '7.1', '10', '0'), (9447, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (9448, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '157', '324', '4', '105', 'Shah And anchor Kutchhi Engineering College', 'IT', '72.71', '100', '0'), (9449, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (9450, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (9451, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '158', '325', '5', '117', 'GGSIPU', 'Computer Science', '82', '100', '41'), (9452, '14', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '170', '159', '329', '3', '112', 'MU', 'Electronics', '74', '100', '0'), (9453, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (9454, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '660', '1440', '4', '117', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '78', '100', '0'), (9455, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (9456, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (9457, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (9458, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (9459, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '103', 'Khon Kaen University', 'Computer Engineering', '3.86', '4', '0'), (9460, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '167', '154', '321', '3.5', '112', 'Motilal Nehru National Institute of Technology', 'Electronics and Communication Engineering', '9.17', '10', '49'), (9461, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '3', 'None', 'IIT Guwahati', 'Mathematics and Computing', '7.56', '10', '0'), (9462, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (9463, '14', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (9464, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (9465, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (9466, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3.5', '108', 'Sikkim Manipal Institute of Technology', 'CSE', '8.38', '10', '0'), (9467, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (9468, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '160', '330', '4.5', '115', 'NIT Calicut', 'Computer Science and Engineering', '8.29', '10', '15'), (9469, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '540', '1320', '3', '93', 'NIT Jalandhar', 'Chemical Engineering', '7.3', '10', '0'), (9470, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (9471, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '152', '314', '3.5', '115', 'PSG College of Technology', 'Mechanical', '8.34', '100', '0'), (9472, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '148', '318', '4', '108', 'SJCE', 'Electronics and Communication', '9.63', '10', '32'), (9473, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '159', '325', '3', '107', 'IIT Indore', 'Electrical Engineering', '8.64', '10', '0'), (9474, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '800', '530', '1330', '3.5', '110', 'NITK Surathkal', 'Mechanical Engineering', '8.34', '10', '0'), (9475, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (9476, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '4.5', '114', 'KIIT', 'ECE', '9.13', '10', '0'), (9477, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '145', '315', '3', '108', 'Thapar University', 'Electronics and Communication', '8.52', '10', '0'), (9478, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '490', '1250', '3', '103', 'WBUT', 'MCA', '8', '10', '0'), (9479, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (9480, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (9481, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (9482, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (9483, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '165', '331', '5.5', '112', 'Manipal Institue of Technology', 'Information Technology', '7.99', '10', '0'), (9484, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '112', 'MU', 'Electronics', '70', '100', '0'), (9485, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (9486, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '158', '324', '4.5', '113', 'NIT Calicut', 'Mechanical Engineering', '8.03', '10', '0'), (9487, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3', '98', 'KLUniversity', 'Computer science and engineering', '8.67', '10', '0'), (9488, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (9489, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '103', 'NIT', 'Electrical Engineering', '65.2', '100', '0'), (9490, '14', 'Reject', 'MS', 'Nuclear Engineering', 'Fall ', '2011', '760', '660', '1420', '4.5', '114', 'NIT Bhopal', 'Electrical Engineering', '7.3', '10', '0'), (9491, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (9492, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (9493, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (9494, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '4', '110', 'PEC University of Technology', 'ECE', '9.2', '10', '0'), (9495, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (9496, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (9497, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (9498, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (9499, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '660', '1450', '4', '115', 'RNSIT', 'Electronics/communication', '77', '100', '0'), (9500, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (9501, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (9502, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (9503, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '102', 'CEG', 'Computer Science', '8.8', '10', '0'), (9504, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '104', 'Madras Institute of Technology', 'Production engg', '8.4', '10', '0'), (9505, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '152', '317', '4', '98', 'R V College of Engineering', 'ECE', '9.11', '10', '0'), (9506, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (9507, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '159', '325', '3.5', '116', 'BITS Pilani', 'Electrical & Electronics Engineering', '7.58', '10', '0'), (9508, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (9509, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (9510, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (9511, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '104', 'VIT University', 'Electronics & Instrumentation', '9.01', '10', '0'), (9512, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (9513, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (9514, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (9515, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '112', 'Pune University', 'IT', '67.63', '100', '0'), (9516, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (9517, '14', 'Reject', 'MS', 'Computer Science/ Mgmt', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'Sri manakula vinayagar engg college/Pondicherry university', 'computer science', '8.14', '10', '0'), (9518, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (9519, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (9520, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (9521, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (9522, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (9523, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '111', 'BITS Pilani', 'Computer Science', '8.7', '10', '0'), (9524, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (9525, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (9526, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (9527, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (9528, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (9529, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (9530, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (9531, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '630', '1380', '3.5', '110', 'SRM', 'ECE', '7.03', '10', '0'), (9532, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '98', 'S.V Engineering College', 'Electrical & Electronics Engg', '7.2', '10', '0'), (9533, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'IIT (BHU) Varanasi', 'Electrical', '7.91', '10', '0'), (9534, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '109', 'Thadomal Shahani Engineering College', 'Information Technology', '64', '100', '0'), (9535, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (9536, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4', '119', 'NIT Karnataka', 'Electronics & Communication', '8.9', '10', '21'), (9537, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (9538, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (9539, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (9540, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (9541, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'VIT University', 'B.Tech Electronics and Communication', '8.99', '10', '0'), (9542, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (9543, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (9544, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'BESU Shibpur', 'Information Technology', '89', '100', '0'), (9545, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '157', '321', '3.5', '104', 'IIT Guwahati', 'Mechanical', '6.23', '10', '0'), (9546, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (9547, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '155', '325', '3.5', '110', 'BITS Hyderabad', 'Electronics & Communication', '9.26', '10', '0'), (9548, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3', '110', 'Mukesh Patel School of Technology Management and Engineering', 'Information Technology', '3.22', '4', '0'), (9549, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (9550, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '800', '670', '1470', '4', '114', 'University of Pune', 'Computer', '59', '100', '0'), (9551, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '156', '324', '4.5', '114', 'University of Pune', 'Mechanical Engg.', '77.35', '100', '12'), (9552, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (9553, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (9554, '14', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (9555, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (9556, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (9557, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (9558, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (9559, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (9560, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '163', '330', '4', '111', 'BITS Pilani', 'BE EEE', '8.3', '100', '24'), (9561, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '153', '322', '3.5', '100', 'Thiagarajar College of engineering', 'ECE', '8.78', '10', '0'), (9562, '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '170', '158', '328', '3.5', '113', 'NIT Warangal', 'Electronics and Communication Engg', '8.3', '10', '30'), (9563, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '5.5', '116', 'VIT University', 'ECE', '8.81', '10', '0'), (9564, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '610', '1400', '3', '108', 'JNTU', 'Information Technology', '79', '100', '0'), (9565, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '150', '315', '3.5', '104', 'BITS Hyderabad', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (9566, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (9567, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (9568, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '151', '315', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer Engineering', '76.2', '100', '0'), (9569, '14', 'Reject', 'MS', 'Information Management', 'Fall ', '2015', '166', '159', '325', '4', '114', 'EEC', 'IT', '8.34', '10', '12'), (9570, '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '163', '157', '320', '3.5', '100', 'VSS Univ of Technology', 'Mechanical Engineering', '7.68', '10', '77'), (9571, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'R V College of Engineering', 'Computer Science', '78', '100', '0'), (9572, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'VTU', 'Computer Science', '79.33', '100', '0'), (9573, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (9574, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (9575, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '152', '161', '313', '3', '105', 'PSG College of Technology', 'Computer Science & Engineering', '8.9', '10', '60'), (9576, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (9577, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '166', '165', '331', '4', '112', 'NIT Calicut', 'Mechanical Engineering', '8.12', '10', '0'), (9578, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (9579, '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (9580, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (9581, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', 'None', '112', 'Coimbatore Insitute of Technology', 'Computer technology and Applications', '80', '100', '0'), (9582, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (9583, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '102', 'Madras Institute of Technology', 'Computer Science', '8.9', '10', '0'), (9584, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '114', 'SIES Graduate School of Technology', 'Computer engineering', '70.68', '100', '0'), (9585, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (9586, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (9587, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (9588, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (9589, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '163', '142', '305', '3.5', '102', 'G. H. Patel College of Engineering and Technology', 'Mechatronics', '8.06', '10', '0'), (9590, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (9591, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '165', '150', '315', 'None', 'None', 'Punjabi University', 'B.tech', '7.55', '10', '0'), (9592, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '3', '105', 'ISM Dhanbad', 'Computer Science & Engineering', '7.83', '10', '0'), (9593, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '168', '154', '322', '4', '112', 'L D College Of Engineering', 'Electronics & Communication', '8.75', '10', '0'), (9594, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '160', '321', '4', '113', 'BITS Dubai', 'Computer Science', '9.07', '10', '0'), (9595, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '101', 'VRSEC', 'CSE', '86', '100', '0'), (9596, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (9597, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '102', 'Pune University', 'Computer Science and engineering', '69.2', '100', '0'), (9598, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (9599, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (9600, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '4', '103', 'Thadomal Shahani Engineering College', 'EXTC', '0', '0', '0'), (9601, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'VTU', 'Computer Science', '82', '100', '0'), (9602, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', 'None', 'NIT Tirchy', 'Production Engineering', '8.96', '10', '0'), (9603, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (9604, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (9605, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '159', '321', '4', '115', 'VTU', 'Comp Science', '79', '100', '0'), (9606, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4.5', '109', 'MSRIT', 'CSE', '9.07', '10', '0'), (9607, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '114', 'Vidyalankar Institute of Technology', 'computer science', '67', '100', '36'), (9608, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '107', 'PSG College of Technology', 'B.E (CSE)', '8.8', '10', '0'), (9609, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '660', '1440', '3', '114', 'MU', 'electronics and telecomm', '71', '100', '0'), (9610, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '800', '610', '1410', '3.5', '109', 'Anna University', 'Information Technology', '77', '100', '0'), (9611, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '550', '1350', '3', '108', 'NITK Surathkal', 'ECE', '8.2', '10', '0'), (9612, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (9613, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '153', '321', '3.5', '106', 'Manipal Institue of Technology', 'ECE', '8.62', '10', '0'), (9614, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (9615, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (9616, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '153', '322', '3.5', '108', 'NSIT', 'Maufacturing and Automation', '73', '100', '0'), (9617, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (9618, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (9619, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (9620, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (9621, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (9622, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (9623, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (9624, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '113', 'GGSIPU', 'Electronics and Communication', '76', '100', '0'), (9625, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (9626, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (9627, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '3.5', '104', 'Pune University', 'Computer', '66', '100', '0'), (9628, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (9629, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (9630, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (9631, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '630', '1430', '4', '104', 'Anna University', 'ECE', '9.02', '10', '0'), (9632, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '580', '1370', '4.5', '114', 'VIT University', 'School Of Electrical Engineers', '8.85', '10', '0'), (9633, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '650', '1430', '3', '110', 'MU', 'IT', '74', '100', '0'), (9634, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (9635, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (9636, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (9637, '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (9638, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '168', '156', '324', '5', '115', 'VTU', 'Information Science & Engineering', '8.66', '10', '0'), (9639, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '710', '1510', '4', '115', 'None', 'Electronics & Communication', '70', '100', '0'), (9640, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '155', '314', '4', '110', 'None', 'E&Tc;', '64', '100', '0'), (9641, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (9642, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (9643, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (9644, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (9645, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (9646, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '166', '327', '4', '114', 'SSN College of Engineering', 'Computer Science Engineering', '8.06', '10', '0'), (9647, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (9648, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '153', '317', 'None', '101', 'BITS Goa', 'Electrical & Electronics', '6.6', '10', '0'), (9649, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (9650, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '410', '1190', 'None', '90', 'R V College of Engineering', 'Information Science & Engg', '78', '100', '0'), (9651, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (9652, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (9653, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (9654, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (9655, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (9656, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (9657, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '150', '319', '3.5', '110', 'NITK Surathkal', 'Information Technology', '8.92', '10', '0'), (9658, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'PESIT', 'ISE', '8.55', '10', '0'), (9659, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'IIT Roorkee', 'Mechanical & Industrial', '8', '10', '0'), (9660, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (9661, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (9662, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '4', '106', 'Pune University', 'computer', '67', '100', '0'), (9663, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'BVBCET', 'Computer science', '75.55', '100', '0'), (9664, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'IIT BHU', 'Electrical Engineering', '8.23', '10', '0'), (9665, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (9666, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (9667, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3.5', '101', 'Mepco Schlenk Engineering College', 'Electronics and Communication', '9', '10', '0'), (9668, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (9669, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (9670, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (9671, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (9672, '14', 'Reject', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.4', '10', '24'), (9673, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '4', '113', 'University of Mumbai', 'Computer', '68', '100', '0'), (9674, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3', '104', 'VIT', 'Informatin Technology', '9.72', '10', '0'), (9675, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (9676, '14', 'Reject', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (9677, '14', 'Reject', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (9678, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (9679, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (9680, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (9681, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '3.5', '111', 'NIT Tirchy', 'E.C.E', '9.67', '10', '0'), (9682, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (9683, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (9684, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '560', '1300', '3', '103', 'The National Institute of Engineering', 'Information Science(same as Computer science differing in terms of electives towards the last 3 semesters of engineering)', '76.55', '100', '0'), (9685, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (9686, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (9687, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (9688, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '170', '157', '327', '3.5', '112', 'IIT Madras', 'Electrical Engineering', '8.4', '10', '14'), (9689, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (9690, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '98', 'Manipal Institue of Technology', 'Industrial and production', '9.01', '10', '0'), (9691, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (9692, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '3.5', '109', 'BITS Pilani', 'Computer Science', '7.6', '10', '0'), (9693, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '107', 'PEC University of Technology', 'Electronics', '9.6', '10', '0'), (9694, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (9695, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (9696, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', '115', 'VIT', 'Computer Science', '8.8', '10', '0'), (9697, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '167', '333', '4.5', '113', 'Punjab Engineering College', 'Mechanical Engineering', '7.74', '10', '0'), (9698, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (9699, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (9700, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (9701, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (9702, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'COEP', 'Electronics and Telecommunication', '8.52', '10', '0'), (9703, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '116', 'COEP', 'Computer Engineering', '9.16', '10', '0'), (9704, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (9705, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (9706, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '610', '1410', '3', '112', 'IIT Kanpur', 'Civil Engineering', '8.4', '10', '0'), (9707, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (9708, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '116', 'Anna University', 'IT', '8.97', '10', '0'), (9709, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (9710, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (9711, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '149', '305', '4', '108', 'MSRIT', 'Computer Science', '9.67', '10', '0'), (9712, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '113', 'MANIT Bhopal', 'Computer Science and Engineering', '8.89', '10', '0'), (9713, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '104', 'BIT Mesra', 'COMPUTER SCIENCE', '8.7', '10', '0'), (9714, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (9715, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (9716, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (9717, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '158', '319', '4', '119', 'MU', 'Information Technology', '60', '100', '0'), (9718, '14', 'Reject', 'MS', 'CS/ EE', 'Fall ', '2015', '158', '169', '327', '4', '113', 'IIT Roorkee', 'Electrical', '7.66', '10', '32'), (9719, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '113', 'VIT', 'Computer Science', '8.92', '10', '0'), (9720, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (9721, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (9722, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (9723, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '4', '103', 'MU', 'Computer', '66', '100', '0'), (9724, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '108', 'BITS Pilani', 'Computer Science', '6.8', '10', '0'), (9725, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (9726, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (9727, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '150', '164', '314', '3', '102', 'Shah And anchor Kutchhi Engineering College', 'Computers', '59.27', '100', '0'), (9728, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (9729, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (9730, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (9731, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9732, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '107', 'NIT Karnataka', 'IT', '8.98', '10', '0'), (9733, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4.5', '110', 'Sinhgad College of Engineering', 'Mechanical Engineering', '66', '100', '0'), (9734, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (9735, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (9736, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (9737, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '160', '326', '4.5', '110', 'NIT Karnataka', 'Electronics and Communication Engineering', '7.75', '10', '0'), (9738, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (9739, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '165', '159', '324', '4', '109', 'BITS Goa', 'Mechanical', '7.28', '10', '55'), (9740, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3.5', '103', 'NIT Rourkela', 'Computer Science and Engineering', '8.54', '10', '0'), (9741, '14', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (9742, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '4', '112', 'LNMIIT', 'CSE', '7.49', '10', '0'), (9743, '14', 'Reject', 'MS', 'Data Science', 'Fall ', '2015', '167', '154', '321', '4', '117', 'VTU', 'ISE', '69', '100', '0'), (9744, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '150', '312', '4', '102', 'Sardar Patel College of Engineering', 'Electronics', '80.58', '100', '0'), (9745, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (9746, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '3.5', 'None', 'University of Kerala', 'Computer Science and Engineering', '8.1', '10', '0'), (9747, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '168', '336', '4', '111', 'Sardar Patel College of Engineering', 'Electronics', '75.87', '100', '0'), (9748, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '162', '326', '4', '114', 'MU', 'IT', '76', '100', '24'), (9749, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '162', '330', '4', '113', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes & Automation', '72', '100', '46'), (9750, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (9751, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (9752, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2011', '760', '600', '1360', '4', '113', 'Anna University', 'ECE', '9.1', '10', '0'), (9753, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '150', '307', '3.5', '101', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engineering', '9.2', '10', '0'), (9754, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (9755, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (9756, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (9757, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '4', 'None', 'JNTU', 'Computer Science', '73.6', '100', '0'), (9758, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (9759, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (9760, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (9761, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '450', '1170', '3.5', '107', 'VTU', 'Computer Science', '71', '100', '0'), (9762, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (9763, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4.5', '114', 'COEP', 'Computer Engineering', '9.31', '10', '0'), (9764, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (9765, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '570', '1350', '3.5', '95', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9766, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '3.5', '108', 'Pune University', 'Computer engg', '8.54', '10', '0'), (9767, '14', 'Reject', 'MS', 'Electrical & Computer Engg/MIS/Industrial/Systems Engg', 'Fall ', '2012', '166', '158', '324', '3', '111', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Intrumentation', '8.04', '10', '0'), (9768, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '160', '325', '4.5', '108', 'VTU', 'CSE', '8.46', '10', '0'), (9769, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '740', '570', '1310', '3', '101', 'Siddaganga Institue of Technology', 'Information Science and Engineering', '74.8', '100', '0'), (9770, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (9771, '14', 'Reject', 'MS', 'Mech and Elec', 'Fall ', '2012', '800', '570', '1370', '4', 'None', 'None', '0', '8.07', '10', '0'), (9772, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (9773, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (9774, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (9775, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '4', '113', 'NIT Bhopal', 'Information Technology', '8.58', '10', '0'), (9776, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (9777, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (9778, '14', 'Reject', 'MS', 'Electronics & Communication', 'Spring ', '2014', '170', '144', '314', '3.5', '94', 'GCET V.V.Nagar', 'Electronics & Communication', '7.6', '10', '0'), (9779, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '760', '520', '1280', '4', '107', 'Anna University', 'EEE', '87.3', '100', '0'), (9780, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (9781, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (9782, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (9783, '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '161', '164', '325', '3.5', '111', 'Sathyabama University', 'Biotechnology', '81', '100', '0'), (9784, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '153', '322', '4', '118', 'NITK Surathkal', 'ECE', '8.84', '10', '0'), (9785, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '162', '330', '4', 'None', 'GGSIPU', 'ECE', '68', '100', '42'), (9786, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '3.5', '113', 'University of Alberta', 'Computing Science', '3.8', '4', '0'), (9787, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (9788, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (9789, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (9790, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4.5', '105', 'BITS Pilani', 'Electrical & Electronics', '7.81', '10', '0'), (9791, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3.5', '96', 'Gautam Buddh Technical University', 'Information Technology', '73.52', '100', '0'), (9792, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'Thapar University', 'ECE', '8.77', '10', '0'), (9793, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (9794, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '157', '159', '316', '3.5', '108', 'MU', 'I.T.', '72', '100', '0'), (9795, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3.5', '116', 'None', 'IT', '9.47', '10', '0'), (9796, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '3.5', '91', 'MU', 'Electronics and Telecommunication', '3.97', '4', '0'), (9797, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (9798, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '105', 'SSN College of Engineering', 'Information technology', '8.73', '10', '0'), (9799, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (9800, '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2011', '780', '660', '1440', '3', '98', 'CEG', 'ECE', '9.13', '10', '0'), (9801, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (9802, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '480', '1260', '3.5', '105', 'JNTU', 'EIE', '82.75', '100', '0'), (9803, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (9804, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (9805, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '148', '314', '4', '104', 'SJCE', 'CS', '8.73', '10', '0'), (9806, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (9807, '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2013', '160', '154', '314', '3.5', '103', 'SASTRA', 'Mechatronics', '8.79', '10', '0'), (9808, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '160', '328', '3.5', '106', 'Institute of Technology Nirma University', 'Instrumentation & Control', '7.81', '10', '0'), (9809, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (9810, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (9811, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (9812, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (9813, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3.5', '105', 'CEG', 'I.T', '8.45', '10', '0'), (9814, '14', 'Reject', 'MS', 'statistics', 'Fall ', '2014', '169', '153', '322', '3', '107', 'Bangalore Institute of Technology', 'ECE', '73', '100', '0'), (9815, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (9816, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (9817, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '720', '610', '1330', '4', '104', 'SASTRA', 'Mechanical Engineering', '9.04', '10', '0'), (9818, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (9819, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '4', '103', 'PSG College of Technology', 'IT', '8.71', '10', '0'), (9820, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (9821, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '152', '318', '4', '110', 'MU', 'Electronics and telecommunication', '67', '100', '0'), (9822, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '153', '318', '4', '119', 'CEG', 'Electronics and Communication Engineering', '9.26', '10', '0'), (9823, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (9824, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (9825, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3', '106', 'BMSCE', 'Electronics and Communication Engineering', '9.83', '10', '9'), (9826, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (9827, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '164', '331', '4.5', '112', 'Jadavpur University', 'Mechanical Engineering', '8.56', '10', '24'), (9828, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '102', 'CEG', 'IT', '8.95', '10', '0'), (9829, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (9830, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (9831, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '149', '319', '3.5', '114', 'NIT Warangal', 'Computer Science and Engineering', '8.5', '10', '0'), (9832, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '163', '328', '5', '118', 'VTU', 'Electrical and Electronics Engineering', '73.7', '100', '0'), (9833, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (9834, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '164', '334', '4', 'None', 'University of Mumbai', 'Electronics and Telecommunication', '68', '100', '12'), (9835, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '167', '159', '326', '3.5', '103', 'Anna University', 'AERONAUTICAL', '7.9', '10', '1'), (9836, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (9837, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '167', '145', '312', '3', '99', 'Keshav memorial Institute of Technology Hyderabad', 'ECE', '79', '100', '0'), (9838, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (9839, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (9840, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (9841, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (9842, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '520', '1320', '3.5', '97', 'IET DAVV', 'Information Technology', '80', '100', '0'), (9843, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (9844, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (9845, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '600', '1390', '3', '101', 'SASTRA', 'Computer Science', '7.98', '10', '0'), (9846, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '161', '330', '3', '108', 'VNIT Nagpur', 'ECE', '9.36', '100', '24'), (9847, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (9848, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (9849, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (9850, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (9851, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (9852, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (9853, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (9854, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '167', '155', '322', '4', '108', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.33', '10', '2'), (9855, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (9856, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '3', '111', 'MU', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9857, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (9858, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '520', '1270', '3.5', '116', 'Pune University', 'Computer Science', '59.9', '100', '0'), (9859, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '4', '111', 'BITS Pilani', 'Computer Science', '8.3', '10', '0'), (9860, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (9861, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (9862, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (9863, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (9864, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (9865, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '520', '1320', '3.5', '109', 'SSN College of Engineering', 'Electronics and Communication', '80.02', '100', '0'), (9866, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '159', '327', '3', '105', 'CEG', 'ECE', '9.32', '10', '24'), (9867, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (9868, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (9869, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3.5', '111', 'R V College of Engineering', 'Electronics & Communication', '9.26', '10', '0'), (9870, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (9871, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (9872, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '4.5', '114', 'NSIT', 'Computer Engineering', '82.97', '100', '0'), (9873, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (9874, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '750', '570', '1320', '3.5', '93', 'MU', 'Electronics and Telecommunication', '70.08', '100', '0'), (9875, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '145', '310', '3', '98', 'Anna University', 'Information Technology', '7.8', '10', '0'), (9876, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '690', '1490', '4', '116', 'MU', 'Mechanical Engineering', '64.42', '100', '0'), (9877, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '101', 'BITS Pilani', 'E.E.E', '8.3', '10', '0'), (9878, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '150', '313', '3', '102', 'Sri Jayachamarajendra College of Engineering', 'Electronics and communications', '9.17', '10', '0'), (9879, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '155', '322', 'None', 'None', 'NIT Warangal', 'Civil', '8.14', '10', '0'), (9880, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (9881, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (9882, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (9883, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (9884, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (9885, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (9886, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (9887, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (9888, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '169', '152', '321', '4.5', '100', 'BITS Pilani', 'BE (Civil)', '6.31', '10', '0'), (9889, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (9890, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (9891, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (9892, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '5', '116', 'BITS Pilani', 'EEE', '8.44', '10', '0'), (9893, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '560', '1330', '3.5', '108', 'NIT Bhopal', 'Electrical Engineering', '8.61', '10', '0'), (9894, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '161', '324', '4.5', '107', 'MU', 'Electrical Engineering', '73.4', '100', '0'), (9895, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '4', '112', 'MSRIT', 'Computer Science and Engineering', '9.31', '10', '0'), (9896, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (9897, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (9898, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '550', '1320', '3', '110', 'Anna University', 'IT', '74', '100', '0'), (9899, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (9900, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '148', '318', '3', '100', 'NIT Warangal', 'CSE', '7.96', '10', '24'), (9901, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '167', '149', '316', '4', '106', 'IIT Madras', 'Civil Engineering', '7.3', '10', '24'), (9902, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (9903, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '4.5', '118', 'IIT X', 'CSE', '8.44', '10', '0'), (9904, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (9905, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '166', '152', '318', '4', '103', 'NIT Rourkela', 'B.tech in Biomedical Engineering', '9.1', '10', '0'), (9906, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (9907, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Manipal Institue of Technology', 'ECE', '8.51', '10', '0'), (9908, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '114', 'University of Mumbai', 'Electronics Engineering', '74.76', '100', '0'), (9909, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (9910, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (9911, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '780', '550', '1330', '3.5', '106', 'NIT Karnataka', 'Computer Engineering', '8.05', '10', '0'), (9912, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (9913, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '162', '326', '4', '109', 'PESIT', 'ECE', '8.45', '10', '24'), (9914, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '110', 'Sri Venkateswara College of Engineering', 'EEE', '83', '100', '36'), (9915, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2013', '163', '150', '313', '3', '91', 'UPTU', '0', '64', '100', '0'), (9916, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', 'None', '105', 'JNTU', 'IT', '70', '100', '0'), (9917, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '3.5', '112', 'VJTI', 'Computer', '8.6', '10', '0'), (9918, '14', 'Reject', 'MS', 'Computer Engineering/Comp Science', 'Fall ', '2014', '160', '153', '313', '3', '112', 'MU', 'COMPUTER', '67', '100', '0'), (9919, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'Jaypee Institute of Information Technology', 'CS', '8', '10', '0'), (9920, '14', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '166', '159', '325', '3.5', '111', 'International Institute of Information Technology Hyderabad', 'Computer Science Dual Degree', '8.02', '10', '36'), (9921, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (9922, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '155', '324', '3', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science & Engineering', '71.7', '100', '19'), (9923, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (9924, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '146', '316', '4.5', '111', 'IIT Guwahati', 'ECE', '8.59', '10', '0'), (9925, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (9926, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (9927, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (9928, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (9929, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '165', '332', '5.5', '114', 'Amrita School of Engineering', 'Computer Science', '9.41', '10', '0'), (9930, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '159', '329', '4', '114', 'None', 'mechanical', '9.71', '10', '0'), (9931, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (9932, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (9933, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (9934, '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '3.5', '110', 'Anna University', 'Computer Science and Engineering', '73', '100', '0'), (9935, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4.5', '117', 'VJTI', 'Computer Science', '8.7', '10', '0'), (9936, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '151', '316', '3.5', '101', 'IIT Roorkee', 'Electrical Engineering (Dual Degree)', '8.174', '10', '0'), (9937, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (9938, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (9939, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '470', '1220', '3', '108', 'NIT Hamirpur', 'CSE', '8.36', '10', '0'), (9940, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '154', '146', '300', 'None', 'None', 'Portland State University', 'ECE', '3.33', '4', '0'), (9941, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (9942, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3.5', '117', 'Vishwakarma Institute of Technology', 'Computer Science', '9.65', '10', '0'), (9943, '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2014', '166', '152', '318', '3.5', '105', 'Bangalore Institute of Technology', 'Electrical and Electronics', '79', '100', '0'), (9944, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '105', 'PSG College of Technology', 'Theoretical Computer Science (Department of Mathematics and Computer Applications)', '9.05', '10', '0'), (9945, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (9946, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (9947, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (9948, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (9949, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (9950, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (9951, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (9952, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9953, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (9954, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (9955, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (9956, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (9957, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (9958, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (9959, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '153', '316', '4', '117', 'BITS Pilani', 'Electronics', '7.59', '10', '16'), (9960, '14', 'Reject', 'MS', 'Industrial Engg/Robotics', 'Fall ', '2014', '164', '152', '316', '3', '100', 'Amrita School of Engineering', 'MECHANICAL ENGG', '8.4', '10', '0'), (9961, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4.5', '119', 'University of Mumbai', 'Computer Engg', '65', '100', '0'), (9962, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '163', '331', '5', '118', 'University of Pune', 'Mechanical Engineering', '73', '100', '0'), (9963, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '154', '320', '3', '106', 'M.V.S.R Engineering College', 'Information Technology', '90.8', '100', '0'), (9964, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (9965, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (9966, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (9967, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (9968, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '152', '319', '4', '107', 'Sardar Patel College of Engineering', 'Electronics Engineering', '73.5', '100', '0'), (9969, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (9970, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '159', '158', '317', '4', '116', 'MU', 'Production Engineering', '74', '100', '0'), (9971, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (9972, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '700', '1480', '4.5', '108', 'VIT', 'Electronics and Communication Engineering', '8.74', '10', '0'), (9973, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '670', '1470', '3.5', '102', 'None', '0', '72.5', '100', '0'), (9974, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (9975, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (9976, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '750', '1540', '4', '111', 'K J Somaiya College of Engiineering', 'Electronics', '66', '100', '0'), (9977, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '150', '317', '3', '99', 'International Institute of Information Technology Hyderabad', 'Computer Science', '8.7', '10', '0'), (9978, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '146', '299', '3', '84', 'PTU', 'ECE', '71.1', '10', '0'), (9979, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '150', '311', '3.5', '102', 'Manipal Institue of Technology', 'EEE', '8.6', '10', '0'), (9980, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'BITS Pilani', 'Electronics and Instrumentation', '0', '0', '0'), (9981, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (9982, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '590', '1380', '3', '107', 'University of Pune', 'Computer Science', '70', '100', '0'), (9983, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5', '117', 'JNTU', 'Electronics and Communication Engineering', '85.9', '100', '0'), (9984, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (9985, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (9986, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '161', '328', '4', '116', 'None', 'Mechanical', '9.17', '10', '0'), (9987, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '114', 'MSRIT', 'Computer Science', '9.12', '10', '0'), (9988, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '153', '317', '3', '100', 'Sathyabama University', 'Mech & Prod', '82', '100', '24'), (9989, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '3', '95', 'MU', 'Electronics', '62', '100', '0'), (9990, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'University of Mumbai', 'computer', '75', '100', '0'), (9991, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (9992, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '114', 'NITK Surathkal', 'Mechanical', '8.86', '10', '24'), (9993, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '670', '1450', '5', '116', 'MU', 'Computer Science', '66.22', '100', '0'), (9994, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '164', '328', '4', '112', 'Manipal Institue of Technology', 'Computer Sceince', '8.1', '10', '26'), (9995, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (9996, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (9997, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '149', '310', '3.5', '105', 'Gujarat Technological University', 'Electronics and Communication', '8.83', '10', '0'), (9998, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (9999, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (10000, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '109', 'CEG', 'Computer Science and Engineering', '8.58', '10', '0'), (10001, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '148', '310', '3.5', '99', 'IIT Hyderabad', 'Mechanical Engineering', '8', '10', '0'), (10002, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (10003, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (10004, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '108', 'Jaypee Institute of Information Technology', 'CSE', '7.5', '10', '0'), (10005, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '157', '323', '4', '104', 'NIT Warangal', 'Computer Science & Engineering', '8.76', '10', '54'), (10006, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4.5', '110', 'VTU', 'COMPUTER SCIENCE', '82.75', '100', '0'), (10007, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '107', 'Fr. Conceicao Rodrigues College of Engineering', 'Computers', '62.72', '100', '0'), (10008, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (10009, '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (10010, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (10011, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '4', '117', 'Siliguri Institute of Technology', 'Computer Science', '8.81', '10', '0'), (10012, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (10013, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (10014, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (10015, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'MU', 'COMPUTER SCIENCE', '69.3', '100', '0'), (10016, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '156', '322', '3.5', '107', 'PSG College of Technology', 'Electrical Engineering', '9.51', '10', '0'), (10017, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2012', '157', '156', '313', '4', '106', 'Manipal Institue of Technology', 'IT', '8.1', '10', '0'), (10018, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (10019, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '114', 'Amrita Vishwa Vidhyapeetham', 'Computer Science & Engineering', '7.2', '10', '0'), (10020, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (10021, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '3', '112', 'The LNM Institute of Information Technology', 'Communication and computer engg', '9.19', '10', '0'), (10022, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (10023, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'VNIT Nagpur', 'ECE', '9.12', '10', '0'), (10024, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (10025, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (10026, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '600', '1330', '4', '113', 'BMSCE', 'telecommunication engineering', '9.4', '10', '0'), (10027, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10028, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '800', '530', '1330', '3', '105', 'MU', 'Electronics and Telecommunication', '71.37', '100', '0'), (10029, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (10030, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '154', '321', '4', '111', 'IIT Madras', 'Mechanical Engineering', '8.66', '10', '0'), (10031, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '112', 'COEP', 'Electronics and Telecommunication', '9.32', '10', '0'), (10032, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '740', '530', '1270', '3.5', '111', 'VIT University', 'Biomedical', '9.04', '10', '0'), (10033, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'IIT (BHU) Varanasi', 'Mechanical', '8.25', '10', '12'), (10034, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (10035, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (10036, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (10037, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (10038, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (10039, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (10040, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (10041, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (10042, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4.5', '112', 'BITS Pilani', 'ComputerScience', '5.71', '10', '0'), (10043, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '3.5', '108', 'Manipal Institue of Technology', 'Computer Science & Engineering', '3', '4', '0'), (10044, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (10045, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '114', 'NIT Durgapur', 'ECE', '8.05', '10', '0'), (10046, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '159', '321', '4', '109', 'PESIT', 'Information Science', '8.7', '10', '24'), (10047, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '167', '157', '324', '4', 'None', 'BITS Pilani', 'Electronics and Instrumentation', '8.14', '10', '0'), (10048, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'DA-IICT', 'ICT', '8', '10', '0'), (10049, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', 'None', 'None', 'CoE Trivandrum', 'Electrical & Electronics Engineering', '8.12', '10', '0'), (10050, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (10051, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3.5', '115', 'R V College of Engineering', 'Mechanical Engineering', '9.06', '10', '0'), (10052, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (10053, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '153', '319', '3.5', '106', 'K J Somaiya College of Engiineering', 'Computers', '67', '100', '0'), (10054, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'COEP', 'Computer Engineering & IT', '8.4', '10', '0'), (10055, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (10056, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (10057, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '109', 'CEG', 'Computer Science & Engineering', '9.32', '10', '24'), (10058, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '158', '317', 'None', 'None', 'Madras Institute of Technology', 'Computer Science', '7.762', '10', '0'), (10059, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '560', '1310', '5', '114', 'Kolhapur Institute of Technology', 'Computer Science and Engg', '65', '100', '0'), (10060, '14', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2014', '168', '156', '324', '3', '116', 'IIT Roorkee', 'Mechanical Engineering', '8.5', '10', '0'), (10061, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10062, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (10063, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '3', '113', 'SSN College of Engineering', 'CSE', '85.26', '100', '0'), (10064, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10065, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '105', 'BITS Hyderabad', 'Mechanical Engineering', '9.66', '10', '6'), (10066, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (10067, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '4', '114', 'MU', 'Information Technology', '60', '100', '0'), (10068, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '107', 'BITS Pilani', 'Computer science', '7.5', '10', '0'), (10069, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (10070, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '156', '324', '4.5', '102', 'MIT College of Engineering', 'Information Technology', '63.12', '100', '0'), (10071, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (10072, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '170', '147', '317', '4', '99', 'Anna University', 'Electronics & Instrumentation Engineering', '8.98', '10', '0'), (10073, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '104', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (10074, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (10075, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '114', 'NITAllahabad', 'Electrical', '8.54', '10', '0'), (10076, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '163', '330', '3.5', '113', 'NIT Srinagar', 'ECE', '8.57', '10', '0'), (10077, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2014', '164', '153', '317', '3.5', '106', 'GGSIPU', 'Computer Science', '76', '100', '0'), (10078, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (10079, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '600', '1390', '4', '112', 'NIT Silchar', 'Computer Science', '7.92', '10', '0'), (10080, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '580', '1380', '4.5', '115', 'NITT', 'Instrumentation and Control Engg', '8.55', '10', '0'), (10081, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '650', '1440', 'None', 'None', 'MSRIT', 'ECE', '9.39', '10', '0'), (10082, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '530', '1300', '3', '92', 'PSG College of Technology', 'ECE', '9.26', '10', '0'), (10083, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '109', 'Anna University', 'Information Technology', '78', '100', '0'), (10084, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '163', '145', '308', '4', '100', 'VIT Pune', 'Industrial Engineering', '8.97', '10', '0'), (10085, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '680', '1460', '4', '110', 'Anna University', 'Mechanical', '85', '100', '0'), (10086, '14', 'Reject', 'MS', 'EE / CE / CS', 'Fall ', '2015', '167', '160', '327', '3.5', '113', 'BITS Goa', 'Electronics and Instrumentation', '8.54', '10', '15'), (10087, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '119', 'MU', 'Electronics', '66.95', '100', '0'), (10088, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (10089, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', 'None', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes and Automation Engineering', '77.9', '100', '0'), (10090, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '100', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '70', '100', '0'), (10091, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '159', '320', '3.5', '111', 'VIT University', 'ECE', '8.58', '10', '0'), (10092, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '106', 'Osmania University', 'Information Technology', '84', '100', '18'), (10093, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (10094, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (10095, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '146', '313', '3.5', '105', 'VIT', 'BTech CSE', '9.22', '10', '0'), (10096, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10097, '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '156', '323', '3.5', '105', 'Government College of Engineering Amravati', 'Computer Science', '8.73', '10', '0'), (10098, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '620', '1420', '3.5', '105', 'Osmania University', 'Mech', '8.47', '10', '0'), (10099, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2015', '159', '150', '309', '3.5', '104', 'VTU', 'Electronics & Telecommunication', '80', '100', '42'), (10100, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (10101, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '116', 'BNMIT', 'ISE', '75', '100', '15'), (10102, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (10103, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (10104, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '160', '324', '4', '116', 'VIT', 'Mechanical Engineering', '9.16', '10', '0'), (10105, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (10106, '14', 'Reject', 'MS', 'Engineering Management / Industrial Engineering / IMSE', 'Fall ', '2014', '166', '156', '322', '3', '104', 'Institute of Chemical Technology', 'Polymer and Surface Coating', '63.2', '100', '0'), (10107, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '99', 'Anna University', 'CSE', '81', '100', '0'), (10108, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '580', '1370', '3', '102', 'IIIT Hyderabad', 'Computer Science', '8.67', '10', '0'), (10109, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '159', '317', '3', '109', "Lingaya's University", 'ECE', '7.98', '10', '0'), (10110, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (10111, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (10112, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '156', '322', '4', '99', 'PSG College of Technology', 'Mechanical Engineering', '8.86', '10', '0'), (10113, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (10114, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '113', 'VIT University', 'Electronics and Instrumentation', '8.98', '10', '0'), (10115, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '3.5', '99', 'IITB MTech', 'CSE', '9.33', '10', '0'), (10116, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10117, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (10118, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '161', '331', '3.5', '118', 'National Institue of Technology Karnataka', 'Computer Science and engineering', '8.72', '10', '0'), (10119, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (10120, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '3', '101', 'GITAM', 'Information Technology', '8.6', '10', '0'), (10121, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (10122, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10123, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '107', 'Madras Institute of Technology', 'Information Technology', '8.66', '10', '0'), (10124, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '580', '1380', '4', '117', 'Anna University', 'Electronics and Instrumentation', '9.7647', '10', '0'), (10125, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (10126, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2016', '164', '149', '313', '4', '100', 'Anna University', 'Computer Science', '8.89', '10', '21'), (10127, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (10128, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '700', '1470', '4', 'None', 'SASTRA', 'mechanical', '7.55', '100', '0'), (10129, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (10130, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10131, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (10132, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '550', '1340', '4.5', '112', 'ITM Gurgaon', 'Electronics and Communication', '73.3', '100', '0'), (10133, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '156', '147', '303', '3', '95', 'Osmania University', 'Mechanical', '67', '100', '69'), (10134, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (10135, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (10136, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (10137, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (10138, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (10139, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '760', '490', '1250', '3', '93', 'VTU', 'Eⅇ', '73.4', '100', '0'), (10140, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '68.9', '100', '0'), (10141, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '105', 'HBTI', 'Computer Science & Engg', '82', '100', '0'), (10142, '14', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '660', '420', '1080', '3.5', '110', 'Amravati University', 'Electronics & Telecommunication', '3.64', '4', '0'), (10143, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '3', '99', 'Madras Institute of Technology', 'ECE', '8.5', '10', '0'), (10144, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (10145, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (10146, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3.5', '107', 'Delhi College Of Engineeing', 'ELECTRICAL ENGINEERING', '77', '100', '0'), (10147, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (10148, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3', '99', 'Anna University', 'CSE', '8.8', '10', '0'), (10149, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3', '102', 'University of Pune', 'Computer science', '67', '100', '0'), (10150, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (10151, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '4', '117', 'MU', 'BE Information Technology', '66', '100', '0'), (10152, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (10153, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (10154, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3', '114', 'VIT Pune', 'Computer Engineering', '68', '100', '0'), (10155, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (10156, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '660', '1440', '5', '102', 'Pune University', 'Electronics', '9.1', '10', '0'), (10157, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '790', '800', '1590', '4', '111', 'I.E.T D.A.V.V.', 'Computer Engineering', '72', '100', '0'), (10158, '14', 'Reject', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (10159, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (10160, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '4', '112', 'Anna University', 'Computer Science', '8.45', '10', '0'), (10161, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '156', '326', '4', '115', 'NIT Rourkela', 'Electronics and Communication', '9.61', '10', '0'), (10162, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (10163, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2008', '800', '640', '1440', '4.5', '118', 'Bangalore Institute of Technology', 'ECE', '77.77', '100', '0'), (10164, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (10165, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (10166, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10167, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (10168, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3', '113', 'VTU', 'BE MS', '8.5', '10', '18'), (10169, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (10170, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (10171, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (10172, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (10173, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (10174, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '155', '325', '3', '105', 'BITS Pilani', 'Electrical and Electronics', '7.23', '10', '0'), (10175, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10176, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '116', 'PICT', 'Information Technology', '3.56', '4', '0'), (10177, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (10178, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (10179, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.25', 'None', 'IIT Ropar', 'Mechanical Engineering', '8.87', '10', '0'), (10180, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (10181, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '115', 'SSN College of Engineering', 'Computer Science and Engineering', '83', '100', '0'), (10182, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3.5', '117', 'IIT', 'ECE', '9.1', '10', '0'), (10183, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '153', '320', '4.5', '108', 'VIT Pune', 'Industrial Engineering', '8.54', '10', '24'), (10184, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '105', 'Rajiv Gandhi Technical University', 'IT', '78.69', '100', '0'), (10185, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10186, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3.5', '101', 'PICT', 'CS/IT', '3.23', '4', '0'), (10187, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (10188, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '620', '1400', '5.5', '114', 'University of Massachesetts Amherst', 'Computer Engineering', '3.63', '4', '0'), (10189, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (10190, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (10191, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '710', '540', '1250', '4', '267', 'University of Mumbai', 'Computers', '58.5', '100', '0'), (10192, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '117', 'L D College Of Engineering', 'Civil Engineering', '8.49', '10', '0'), (10193, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (10194, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '460', '1240', '4.5', '116', 'VIT', 'Information Technology', '9.36', '10', '0'), (10195, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (10196, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (10197, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (10198, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '410', '1210', '5', '253', 'IT BHU', 'Electrical Engg', '8.41', '10', '0'), (10199, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (10200, '14', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2011', '730', '510', '1240', '3.5', '106', 'Anna University', 'cse', '8.67', '10', '0'), (10201, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '3.5', '111', 'Pune University', 'Information Technology', '70', '100', '0'), (10202, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '112', 'VNR VJIET', 'CSE', '74', '100', '0'), (10203, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (10204, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Fall ', '2011', '800', '600', '1400', '4.5', '108', 'MU', 'Electronics Engg', '68', '100', '0'), (10205, '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2011', '800', '550', '1350', '4.5', '110', 'not IIT', 'CBE', '75', '100', '0'), (10206, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (10207, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (10208, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '680', '1480', '4', '107', 'NIT Nagpur', 'mechanical engg.', '8.17', '10', '0'), (10209, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10210, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', 'None', '113', 'Lovely Professional University', 'CSE', '9.3', '10', '30'), (10211, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (10212, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0'), (10213, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Madras', 'Electrical Engineering', '7.1', '10', '0'), (10214, '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (10215, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (10216, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (10217, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '95', 'NIT Tirchy', 'CSE', '8.75', '10', '42'), (10218, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (10219, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10220, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (10221, '14', 'Reject', 'MS', 'Electrical Engg/ comp engg', 'Spring ', '2011', '800', '500', '1300', '3.5', '107', 'MG University', 'Electronics and Communication', '73', '100', '0'), (10222, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10223, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (10224, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '161', '330', '4.5', '116', 'BITS Pilani', 'Civil Engineering', '7.89', '10', '0'), (10225, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (10226, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (10227, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '111', 'PICT', 'Computer Science', '3.3', '4', '0'), (10228, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', 'None', 'BMSCE', 'Computer Science', '8.67', '10', '0'), (10229, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (10230, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (10231, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (10232, '14', 'Reject', 'MS', 'Financial Engineering', 'Spring ', '2014', '161', '157', '318', '3.5', '99', 'Anna University', 'EEE', '82.4', '100', '0'), (10233, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (10234, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (10235, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '165', '158', '323', '4', '115', 'VTU', 'Computer Science', '73', '100', '0'), (10236, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (10237, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '550', '1350', '3', '107', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Communication Engineering', '8.8', '10', '0'), (10238, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '160', '324', '3', '106', 'VIT', 'ECE', '8.5', '10', '0'), (10239, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (10240, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '102', 'PESIT', 'Computer Science', '8.72', '10', '0'), (10241, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (10242, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '570', '1350', '3.5', '116', 'VIT', 'Mechanical', '8.23', '10', '0'), (10243, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (10244, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10245, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '152', '319', '3', '108', 'Government College of Engineering Aurangabad', 'Mechanical', '7.976', '10', '0'), (10246, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (10247, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (10248, '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (10249, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '103', 'R V College of Engineering', 'CSE', '8.95', '10', '0'), (10250, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '470', '1270', '3.5', '110', 'NIT - Bhopal', 'ECE', '7.99', '10', '0'), (10251, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (10252, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '150', '319', '4', '107', 'BITS Pilani', 'Computer Science', '7.5', '10', '0'), (10253, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2006', '800', '650', '1450', '5.5', '290', 'MVSR', 'Production Engineering', '84', '100', '0'), (10254, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (10255, '14', 'Reject', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (10256, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '162', '325', '4', '119', 'NITC', 'Computer Science', '8.17', '10', '0'), (10257, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (10258, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Computer Science and Engineering', '75', '100', '36'), (10259, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10260, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '154', '319', 'None', '106', 'GGSIPU', 'IT', '78', '100', '0'), (10261, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '640', '1420', '3', '104', 'NIT', 'Mechanical Engineering', '9.1', '10', '0'), (10262, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '3.5', '107', 'GGSIPU', 'IT', '79', '100', '0'), (10263, '14', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'BMSCE', 'Telecommunication Engineering', '73.91', '100', '0'), (10264, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '660', '1430', '4', '113', 'MU', 'Mechanical Engineering', '66', '100', '0'), (10265, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (10266, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (10267, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (10268, '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2015', '163', '160', '323', '4', '111', 'BITS Pilani', 'Electrical and Electronics', '7.99', '10', '54'), (10269, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VIT', 'Information Technology', '8.6', '10', '0'), (10270, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '167', '158', '325', '4', '111', 'MSRIT', 'Electrical and Electronics Enginnering', '7.84', '10', '0'), (10271, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (10272, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (10273, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (10274, '14', 'Reject', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '157', '157', '314', '4.5', '115', 'Anna University', 'Computer science', '81', '100', '0'), (10275, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (10276, '14', 'Reject', 'MS', 'EE / CS', 'Fall ', '2013', '800', '630', '1430', '3.5', '117', 'VTU', 'EE', '87', '100', '0'), (10277, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (10278, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '800', '560', '1360', '3.5', '108', 'CEG', 'ECE', '8.908', '10', '0'), (10279, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3.5', '108', 'NIT Karnataka', 'NIT Karnataka Surathkal', '7.67', '10', '0'), (10280, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (10281, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '154', '316', '4', '104', 'NIT - Surat', 'Mechanical Engineering', '8.61', '10', '0'), (10282, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4.5', '115', 'SJCE', 'Computer Science', '8.8', '10', '41'), (10283, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (10284, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', 'None', 'IIT Madras', 'Mechanical', '8.7', '10', '0'), (10285, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', 'None', 'None', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '6.6', '10', '0'), (10286, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '780', '600', '1380', '4', '108', 'D J Sanghvi', 'Chemical Engineering', '67.34', '100', '0'), (10287, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '700', '1470', '4', '119', 'VTU', 'CS', '75', '100', '0'), (10288, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10289, '14', 'Reject', 'MS', 'Computer Science/ Electronics and Communication', 'Fall ', '2015', '170', '154', '324', '3.5', '110', 'IIT Guwahati', 'Electronics and Communication Engineering', '7.95', '10', '20'), (10290, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (10291, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '155', '322', '4', '107', 'NIT Calicut', 'Mechanical', '9.36', '10', '20'), (10292, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (10293, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (10294, '14', 'Reject', 'MS', 'Computer vision/image-video processing', 'Fall ', '2014', '160', '152', '312', '3.5', '112', 'Anna University', 'Electronics and Communication Engineering', '9.09', '10', '0'), (10295, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '161', '329', '4', '109', 'VTU', 'Information Science', '71.08', '100', '72'), (10296, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3.5', '106', 'CMRIT', 'Computer Science', '73', '100', '0'), (10297, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (10298, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (10299, '14', 'Reject', 'MS', 'Computer Engineering / Electrical Computer Engineering', 'Fall ', '2015', '770', '600', '1370', '3', '98', 'Manipal Institue of Technology', 'ECE', '8.23', '10', '36'), (10300, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (10301, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (10302, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10303, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '5', '102', 'VTU', 'CSE', '73', '100', '0'), (10304, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '5', '116', 'DA-IICT', 'Information and Communication Technology', '8.48', '10', '0'), (10305, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (10306, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '152', '170', '322', '3.5', '107', 'VTU', 'Electronics and communication', '9', '10', '0'), (10307, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '113', 'VIT', 'CSE', '8.83', '10', '0'), (10308, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electronics & Communications Engg', '8.45', '10', '15'), (10309, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '730', '670', '1400', '3.5', '101', 'CEG', 'Mechanical', '8.61', '10', '0'), (10310, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '115', 'VIT University', 'Computer Science', '8.8', '10', '0'), (10311, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10312, '14', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '730', '470', '1200', '3.5', '107', 'BITS Pilani', 'Biological Sciences and Computer Science (Dual)', '7.86', '10', '0'), (10313, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (10314, '14', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (10315, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (10316, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10317, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (10318, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10319, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '3', '103', 'NIT Kurukshetra', 'ECE', '8.41', '10', '0'), (10320, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (10321, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (10322, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '106', 'IIIT Allahabad', 'Information Technology', '8.5', '10', '0'), (10323, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10324, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '3.5', '104', 'The LNM Institute of Information Technology', 'CSE', '7.66', '10', '0'), (10325, '14', 'Reject', 'MS', 'Computational Science and Engineering', 'Fall ', '2014', '167', '164', '331', '4', '115', 'VIT', 'Mechanical Engineering (Energy Specialization)', '8.53', '10', '0'), (10326, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (10327, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (10328, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '730', '1530', '5.5', '290', 'MU', 'Computer Engg.', '63', '100', '0'), (10329, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (10330, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', '2017', '170', '150', '320', '3.5', '105', 'BIT Mesra', 'Mechanical Engineering', '80.02', '100', '0'), (10331, '15', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2015', '168', '156', '324', '4.5', '118', 'School of Planning and Architecture New Delhi India', 'Architecture', '74', '100', '0'), (10332, '15', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'NIT Calicut', 'Biotechnology', '9.1', '10', '0'), (10333, '15', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Harvard University', 'Graduate School of Design', '0', '0', '0'), (10334, '15', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (10335, '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Kharagpur', 'Electrical Engg', '8.42', '10', '0'), (10336, '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '158', '149', '307', '4', 'None', 'Indian Institute of Information and Technology design and manufacturing', 'ECE', '8', '10', '0'), (10337, '15', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '540', '1340', '4.5', '113', 'BITS Pilani', 'Department of Physics', '8.79', '10', '0'), (10338, '15', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (10339, '15', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2013', '163', '154', '317', '4', '113', 'ISM Dhanbad', 'Environmental Science and Engineering', '8.94', '10', '0'), (10340, '15', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '114', 'Manipal Institue of Technology', 'ECE', '9.58', '10', '0'), (10341, '15', 'Reject', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (10342, '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (10343, '15', 'Reject', 'MS', 'Computational/Systems BIology', 'Fall ', '2014', '165', '166', '331', 'None', '117', 'Not too well known', 'Electronics and Electrical Engineering', '7.74', '10', '0'), (10344, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '550', '1330', '1330', '112', 'BITS Goa', 'Information Systems', '8.6', '10', '0'), (10345, '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (10346, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (10347, '15', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10348, '15', 'Reject', 'MS', 'optics', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'electronics and communication engg.', '75', '100', '0'), (10349, '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'Electronics and Communication engg', '74', '100', '0'), (10350, '15', 'Reject', 'MS', 'Biostatistics', 'Fall ', '2011', '800', '670', '1470', 'None', '115', 'Indian Statistical Institute', 'Mathematical Statistics and Probability', '0', '0', '0'), (10351, '15', 'Reject', 'MS', 'Learning Sciences', 'Fall ', '2011', '720', '630', '1350', '3.5', '112', 'University of Delhi', 'English Hons.', '0', '0', '0'), (10352, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (10353, '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (10354, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10355, '15', 'Reject', 'PhD', 'Electronics & Communication', 'Fall', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani, Pilani Campus', 'EEE', '8.1', '10', '0'), (10356, '16', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', '2018', '155', '147', '302', '4', '101', 'R.M.K. Engineering College', 'ECE', '8.11', '10', '15'), (10357, '16', 'Admit', 'MS', 'Civil Engineering', 'Fall', '2016', '161', '148', '309', '3.5', '102', 'RV College of Engineering', 'Civil Engineering', '8.44', '10', '0'), (10358, '17', 'Reject', 'Masters', 'Computer Science', 'Fall', '2016', '166', '144', '310', '3', '92', 'Shri guru govind singh college of engineering, nanded', 'Computer Science', '8.59', '10', '0'), (10359, '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2018', '167', '152', '319', '3', '108', 'Shri Ramdeobaba College of Engineering', 'Mechanical Engineering', '8.43', '10', '18'), (10360, '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2015', '167', '157', '324', '0', '102', '-1', '-1', '-1', '-1', '0'), (10361, '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10362, '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10363, '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2016', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy Studies', 'Computer Science', '3.24', '4', '0'), (10364, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '105', 'Delhi College Of Engineeing', 'Computer Science', '0', '0', '0'), (10365, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '100', 'GITAM', 'Computer Science', '9.21', '10', '0'), (10366, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (10367, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (10368, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '690', '1490', '4.5', '117', 'BITS Goa', 'Electronics & Instrumentation Physics', '0', '0', '0'), (10369, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '48', '34', '82', '5', '100', 'NIT Surat', 'Mech Engg', '64', '100', '0'), (10370, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (10371, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (10372, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (10373, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (10374, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (10375, '20', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (10376, '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (10377, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (10378, '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '800', '640', '1440', '4.5', '117', 'MU', 'Electronics', '67', '100', '30'), (10379, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (10380, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (10381, '20', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '155', '319', '3', '110', 'COEP', 'Electrical Engineering', '7.23', '10', '10'), (10382, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (10383, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (10384, '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (10385, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (10386, '20', 'Admit', 'MS', 'Organizational Behavior', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'Penn State', 'Psychology/Business', '3.9', '4', '0'), (10387, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3', '102', 'Malwa Institute', 'Computer Science', '67', '100', '0'), (10388, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (10389, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (10390, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (10391, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (10392, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10393, '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (10394, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (10395, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (10396, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (10397, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '550', '1320', '3.5', '106', 'Galgotia college of engineering and technology II UPTU', 'Computer science', '72', '100', '0'), (10398, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (10399, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '4', '113', 'University of Pune', 'Computer Engineering Dept.', '64.6', '100', '3'), (10400, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '510', '1310', '3.5', '100', 'MDU', 'IT', '69', '100', '0'), (10401, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (10402, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '164', '151', '315', 'None', '101', 'None', 'CS', '72', '100', '64'), (10403, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (10404, '20', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '152', '149', '301', '3', '95', 'PSG College of Technology', 'BIOTECHNOLOGY', '8.2', '100', '0'), (10405, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '4', '116', 'GGSIPU', 'IT', '76', '100', '0'), (10406, '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (10407, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '630', '1430', '4', '120', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '66.67', '100', '0'), (10408, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '570', '1360', '4', '283', 'VTU', 'Information Science', '74.5', '100', '0'), (10409, '20', 'Admit', 'MS', 'physical therapy', 'Fall ', '2011', '580', '530', '1110', '3.5', '116', 'Christian Medical College Vellore', '0', '3.96', '4', '0'), (10410, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '111', 'MU', 'Computer Science', '64', '100', '0'), (10411, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '730', '520', '1250', '3.5', '104', 'SSN College of Engineering', '0', '75', '100', '0'), (10412, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (10413, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '110', 'NIT Calicut', 'CSE', '6.91', '10', '0'), (10414, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '95', 'Jaypee Institute of Information Technology', 'computer science', '6.83', '10', '0'), (10415, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (10416, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10417, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (10418, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '490', '1290', '3', 'None', 'None', '0', '0', '0', '0'), (10419, '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (10420, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '750', '580', '1330', '5.5', '112', 'Anna University', 'Information Technology', '81', '100', '0'), (10421, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (10422, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '600', '1290', '3.5', '94', 'K J Somaiya College of Engiineering', 'Computer Science', '64', '100', '0'), (10423, '20', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (10424, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', 'None', 'Western Michigan University', 'Computer Science', '3.2', '4', '0'), (10425, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '146', '310', '3', '91', 'JNTU', 'Electrical Engineering', '78.33', '100', '0'), (10426, '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '138', '300', '3', '84', 'Anna University', 'mechanical', '7.8', '10', '0'), (10427, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '630', '1360', '3', '97', 'VJTI', 'Computer Engineering', '7.8', '10', '0'), (10428, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'Andhra University', 'CS', '75', '100', '0'), (10429, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (10430, '20', 'Admit', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (10431, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10432, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (10433, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (10434, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (10435, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (10436, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (10437, '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (10438, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (10439, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (10440, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (10441, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (10442, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (10443, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (10444, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (10445, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (10446, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '158', '321', '4', '99', 'Amity University', 'Information Technology', '7.55', '10', '0'), (10447, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (10448, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '4', '107', 'Nirma Institute of Technology', 'Computer Engineering', '7.5', '10', '0'), (10449, '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2014', '155', '150', '305', '3.5', '104', 'BITS Pilani', 'EEE', '7.22', '100', '0'), (10450, '20', 'Admit', 'MS', 'CS/ EE', 'Fall ', '2011', '730', '670', '1400', '4.5', '116', 'VTU', 'ECE', '72', '100', '0'), (10451, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (10452, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (10453, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '157', '320', '4', '109', 'Punjabi University', 'Computer', '6.55', '10', '0'), (10454, '20', 'Admit', 'MS', 'CS / MIS', 'Fall', 'None', '168', '166', '334', '3.5', '116', 'MU', 'IT', '7.1', '10', '0'), (10455, '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2015', '158', '157', '315', '4', '112', 'Rajasthan Technical University', 'Computer Engineering', '67.11', '100', '30'), (10456, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (10457, '20', 'Admit', 'MS', 'Journalism', 'Fall ', '2015', '161', '162', '323', '4.5', '115', 'Visvesvaraya NIT Nagpur', 'Electronics and Communication Engineering', '7.36', '10', '66'), (10458, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '560', '1340', '5', '114', 'MU', 'IT', '63.2', '100', '0'), (10459, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '109', 'PTU', 'Electrical Engineering', '76.3', '100', '0'), (10460, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (10461, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '750', '450', '1200', '3', '90', 'Andhra University', 'Information Technology', '86', '100', '0'), (10462, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (10463, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '114', 'UPTU', 'CS', '0', '0', '0'), (10464, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (10465, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '390', '1190', '3', '97', 'UIR', 'MIS', '3.67', '4', '0'), (10466, '20', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (10467, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (10468, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (10469, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '600', '1400', '3.5', '108', 'ITM Gurgaon', 'Electronics and Communications', '67', '100', '0'), (10470, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '153', '318', '3', '108', 'Symbiosis Institute of Technology', 'Computer Science', '3.305', '4', '8'), (10471, '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '500', '1250', '4.5', '111', 'VIT University', 'B.Tech Bioinformatics', '8.88', '10', '0'), (10472, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (10473, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '3.5', '109', 'CEG', 'Computer Science and Engineering', '7.9', '10', '0'), (10474, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'MU', 'Information Technology', '0', '0', '0'), (10475, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '770', '540', '1310', '4', '112', 'Vishwakarma Institute of Technology', 'Computer', '64', '100', '0'), (10476, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (10477, '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Spring ', '2015', '163', '155', '318', '3', '98', 'SSN College of Engineering', 'EEE', '8.2', '10', '12'), (10478, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (10479, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Ecole des Mines', 'Computer Science', '0', '0', '0'), (10480, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (10481, '20', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '162', '151', '313', '3.5', '104', 'JNTU', 'ECE', '70', '100', '0'), (10482, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '147', '308', '3', '100', 'Anna University', 'B.E in Computer Science', '8.51', '10', '0'), (10483, '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (10484, '20', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', '98', 'JSS Noida', 'mechanical', '0', '0', '0'), (10485, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (10486, '20', 'Admit', 'MS', 'Real Estate Finance & Development', 'Fall ', '2011', '800', '320', '1120', '3.5', '104', 'NIT Warangal', 'Civil Engineering', '7.3', '10', '0'), (10487, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3', '100', 'None', '0', '0', '0', '0'), (10488, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '168', '334', '4.5', 'None', 'University of Mumbai', 'Electronics & Telecommunications', '66', '100', '0'), (10489, '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (10490, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '158', '323', '3.5', '112', 'Thapar University', 'Computer Science', '7.91', '10', '38'), (10491, '20', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (10492, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (10493, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '109', 'Sardar Patel University', 'I.T', '9.3', '10', '0'), (10494, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (10495, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10496, '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2013', '169', '159', '328', '4.5', '114', 'BITS Pilani', 'Computer Science', '7.63', '10', '4'), (10497, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '590', '1390', '3', '100', 'IP University Delhi', 'CSE', '74', '100', '0'), (10498, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '293', '141', '434', '3', 'None', 'dr d.y patil institute of engineering and techonology', 'electronics', '55', '100', '0'), (10499, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '440', '1210', '4', '105', 'MU', 'Information Technology', '65', '100', '0'), (10500, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (10501, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (10502, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (10503, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (10504, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '156', '325', '4', '107', 'NIT Tirchy', 'ECE', '7.95', '10', '14'), (10505, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (10506, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '155', '155', '310', '3', '105', 'Atharva College', 'electronics & telecommunication', '65.2', '100', '0'), (10507, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (10508, '20', 'Admit', 'MS', 'Information Technology', 'Spring ', '2013', '800', '450', '1250', '4', '108', 'Nirma Institute of Technology', 'IT', '7.78', '10', '0'), (10509, '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Fall ', '2013', '164', '166', '330', '4', '119', 'WBUT', 'CSE', '7.83', '10', '0'), (10510, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (10511, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '550', '1300', '3.5', '106', 'MU', 'Computer', '55.6', '100', '0'), (10512, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10513, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (10514, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (10515, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3.5', '110', 'GITAM', 'CSE', '8.22', '10', '0'), (10516, '20', 'Admit', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (10517, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (10518, '20', 'Admit', 'MS', 'CS / SE / IT / MIS', 'Spring ', '2016', '164', '148', '312', '4', '103', 'VTU', 'CS', '63', '100', '68'), (10519, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '160', '323', '3', '109', 'IIIT Hyderabad', 'Electronics & Communication', '7.6', '10', '0'), (10520, '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2015', '165', '155', '320', '3', '102', 'Hi-Tech College of Engineering and Technology', 'Computer Science', '67.26', '100', '54'), (10521, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (10522, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (10523, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '152', '317', '3.5', '106', 'MNNIT', 'Civil Engineering', '7.1', '10', '0'), (10524, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (10525, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '145', '308', '3', '93', 'Chitkara University', 'CSE', '7.05', '10', '0'), (10526, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '148', '310', '4.5', '7', 'Manipal Institue of Technology', 'IT', '7.62', '10', '60'), (10527, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (10528, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (10529, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (10530, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '470', '1260', '3', 'None', 'Techno India Salt Lake Kolkata', 'Electronics and Instrumentation Engineering', '8.4', '10', '0'), (10531, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (10532, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (10533, '20', 'Admit', 'MS', 'MS Analytics/ MIS', 'Fall ', '2013', '161', '156', '317', '3.5', '105', 'Nagpur University', '0', '75.5', '10', '0'), (10534, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'Pune University', 'Electronics', '54', '100', '0'), (10535, '20', 'Admit', 'MS', 'Information Systems', 'Spring', 'None', '800', '630', '1430', '3', '105', 'PEC University of Technology', 'Electrical', '8.69', '10', '0'), (10536, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (10537, '20', 'Admit', 'MS', 'Finance', 'Fall ', '2013', '800', '600', '1400', '4', '104', 'NIT', 'Civil', '7.8', '10', '0'), (10538, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (10539, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '108', 'VTU', 'Electronics', '68', '100', '0'), (10540, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (10541, '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (10542, '20', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (10543, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (10544, '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '156', '320', '3.5', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '6.5', '10', '19'), (10545, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (10546, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (10547, '20', 'Admit', 'MS', '(MIS / MSIM / MSIS / MSIT)', 'Fall ', '2015', '164', '147', '311', '4', '103', 'MU', 'Electronics', '60', '100', '42'), (10548, '20', 'Admit', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2012', '800', '610', '1410', '3', '104', 'MU', 'Information Technology', '77', '100', '0'), (10549, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (10550, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '550', '1280', '3.5', '105', 'IGIT', 'CSE', '73.8', '100', '0'), (10551, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10552, '20', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (10553, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', 'None', '95', 'JMIT Radaur', 'CS', '71', '100', '0'), (10554, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '157', '319', '3', '112', 'Nirma Institute of Technology', 'Instrumentation and Control', '7.8', '10', '12'), (10555, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (10556, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (10557, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '91', 'SSN College of Engineering', 'Computer Science', '7.2', '10', '0'), (10558, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (10559, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '600', '1400', '3', 'None', 'VTU', 'Computer Science', '79', '100', '0'), (10560, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (10561, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '105', 'IIT Delhi', 'Chemical Engg', '6.7', '10', '0'), (10562, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (10563, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '100', 'VIT', 'E.C.E', '8.64', '10', '0'), (10564, '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2015', '158', '154', '312', 'None', '102', 'Osmania University', 'Mechanical Engineering', '76', '100', '0'), (10565, '20', 'Admit', 'MS', 'MIS/CS', 'Spring ', '2015', '162', '162', '324', '5', 'None', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '78', '100', '52'), (10566, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '108', 'Techno. Inst. of Tech. Bhopal', 'Computer Science', '76', '100', '0'), (10567, '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '710', '1510', '5.5', '116', 'NSIT', 'Information Technology', '71.2', '100', '0'), (10568, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '540', '1340', '3', '101', 'Ajay Kumar Garg Engineering College', 'CS', '78.6', '100', '0'), (10569, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '600', '800', '1400', '3.5', '110', 'MU', 'Comp Engg', '68.67', '100', '0'), (10570, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '151', '318', '3', '7', 'Manipal Institue of Technology', 'ICT', '8', '10', '0'), (10571, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3', '101', 'University of Mumbai', 'Computer Science', '66.2', '100', '0'), (10572, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '700', '1500', 'None', '101', 'CEG', 'MSc Computeer Science', '9.02', '10', '32'), (10573, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (10574, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '35', '85', '5', '112', 'MU', 'Electronics', '61', '100', '0'), (10575, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (10576, '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Spring ', '2011', '760', '660', '1420', '3.5', '109', 'Devi Ahilya University', 'Computer Science', '7.76', '10', '0'), (10577, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (10578, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '145', '310', '3', 'None', 'Pune University', 'ECE', '66', '100', '62'), (10579, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (10580, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '161', '327', '3', '111', 'VTU', 'Computer Science', '65', '100', '0'), (10581, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (10582, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '470', '1270', 'None', '94', 'VTU', 'INFORMATION SCIENCE', '80', '100', '0'), (10583, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '69', '100', '0'), (10584, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (10585, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '650', '1380', '4', '108', 'MU', 'Computer Engineering', '58', '100', '0'), (10586, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (10587, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '167', '156', '323', '4', '107', 'SRM', 'CSE', '7.8', '10', '10'), (10588, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (10589, '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '162', '158', '320', '4', '105', 'GGSIPU', 'IT', '70.25', '100', '0'), (10590, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '111', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73.5', '100', '0'), (10591, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '162', '324', '4', '108', 'JNTU', 'EIE', '67', '100', '0'), (10592, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (10593, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (10594, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (10595, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (10596, '20', 'Admit', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (10597, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (10598, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '98', 'PESIT', 'CS', '8.16', '10', '0'), (10599, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (10600, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '154', '323', '4', '117', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '8.2', '10', '0'), (10601, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (10602, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '780', '380', '1160', '3', '103', 'CEG', 'Comp Science dept', '7', '10', '0'), (10603, '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (10604, '20', 'Admit', 'MS', 'Human Resources', 'Fall ', '2011', '650', '570', '1220', '3.5', '113', 'University of Mumbai', 'Management', '67', '100', '0'), (10605, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '630', '1370', '3.5', '112', 'VTU', 'Information Science', '64', '100', '0'), (10606, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10607, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (10608, '20', 'Admit', 'MS', 'CS / MIS', 'Fall ', '2013', '790', '480', '1270', '3', '100', 'Sir MVIT', 'CS', '75', '100', '0'), (10609, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '650', '1400', '4', '114', 'Anna University', 'CS', '75.3', '100', '0'), (10610, '20', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '154', '156', '310', '3', '110', 'Bangalore Institute of Technology', 'electronics', '66', '100', '0'), (10611, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (10612, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '600', '1370', '4.5', '116', 'Nirma Institute of Technology', 'EC', '7.96', '10', '0'), (10613, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '680', '1470', '3', '107', 'University of Mumbai', 'i.t.', '65.94', '100', '0'), (10614, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (10615, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10616, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (10617, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '4.5', '109', 'Bharati Vidyapeeth', 'Electronics', '63.6', '100', '0'), (10618, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '105', 'None', 'CSE', '7.9', '10', '0'), (10619, '20', 'Admit', 'MS', 'advertising', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Osmania University', 'Mathematics Statisitcs and Computer Science', '3.92', '10', '0'), (10620, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (10621, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '114', 'NIT Tirchy', 'ECE', '8.75', '10', '0'), (10622, '20', 'Admit', 'MS', 'None', 'Fall ', '2015', 'None', 'None', '0', 'None', '110', 'VTU', 'Electrical & Electronics', '72', '100', '0'), (10623, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10624, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (10625, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '136', '139', '275', '1.5', 'None', 'JNTU', 'Computer science', '6.02', '10', '0'), (10626, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '161', '158', '319', '4', '110', 'CEG', 'Computer Science and Engineering', '9.35', '10', '0'), (10627, '20', 'Admit', 'MS', 'Electrical/ Art & Technology', 'Fall ', '2012', '166', '155', '321', '4', '113', 'University of Pune', 'E&TC;', '58', '100', '0'), (10628, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '600', '1350', '3', '105', 'None', '0', '8.5', '10', '0'), (10629, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (10630, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (10631, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (10632, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '73', '100', '0'), (10633, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '4.5', '108', 'NIT Silchar', 'Computer Science', '8.53', '10', '20'), (10634, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (10635, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '154', '321', '3', '112', 'Jaypee Institute of Information Technology', 'I.T', '8.2', '10', '0'), (10636, '20', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '168', '161', '329', '4', '109', 'CoE Trivandrum', 'EE', '8.29', '10', '0'), (10637, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (10638, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (10639, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '103', 'Punjab Technical University', 'Information Technology', '77', '100', '42'), (10640, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10641, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '740', '1540', '5.5', '290', 'MU', 'computers', '60', '100', '0'), (10642, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10643, '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (10644, '20', 'Admit', 'MS', 'Computer Engineering / Computer Networking / Computer Science', 'Fall ', '2013', '168', '156', '324', '3.5', '114', 'ITM University', 'Computer Science', '8.3', '10', '0'), (10645, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (10646, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10647, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (10648, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (10649, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'MU', 'Computer', '67', '100', '0'), (10650, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (10651, '20', 'Admit', 'MS', 'Information Management', 'Fall ', '2015', '163', '153', '316', '3.5', '103', 'None', '0', '0', '0', '0'), (10652, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '114', 'Anna University', 'CSE', '77', '100', '0'), (10653, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (10654, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10655, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'Guru Gobind Singh Indraprashta University', 'B.Tech (CSE)', '80.3', '100', '0'), (10656, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (10657, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3.5', '114', 'NIT Warangal', 'EEE', '7.57', '10', '0'), (10658, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10659, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10660, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (10661, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '790', '450', '1240', '4', '107', 'NMIMS', 'Computer Science', '3.62', '4', '0'), (10662, '20', 'Reject', 'MS', 'analytics', 'Fall ', '2014', '166', '160', '326', '3.5', '109', 'None', 'computer science', '7.94', '10', '0'), (10663, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (10664, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (10665, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (10666, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'VIT University', 'CSE', '9.14', '10', '0'), (10667, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '530', '1330', '4', '110', 'IIT BHU', 'CSE', '7.96', '100', '0'), (10668, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '450', '1180', '3', '104', 'VTU', 'Electrical & Electronics', '61', '100', '0'), (10669, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (10670, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '101', 'University of Mumbai', 'Computers', '63', '100', '0'), (10671, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (10672, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (10673, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '147', '150', '297', 'None', '93', 'DEVI AHILYA VISHWAVIDYALAYA INDORE', 'IIPS', '9.39', '10', '0'), (10674, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', 'None', 'VJTI', 'Computer Engg', '8.3', '10', '0'), (10675, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (10676, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '110', 'MGU', 'CSE', '71', '100', '0'), (10677, '20', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (10678, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (10679, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (10680, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (10681, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (10682, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (10683, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3.5', '111', 'University of Mumbai', 'Computer Engineering', '67', '100', '0'), (10684, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (10685, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (10686, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (10687, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (10688, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (10689, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (10690, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (10691, '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (10692, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (10693, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (10694, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '580', '1370', '4', 'None', 'VTU', 'Computer Science', '8.11', '10', '0'), (10695, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (10696, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (10697, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (10698, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '158', '314', '4', '105', 'KIIT', 'Computer Science', '7.16', '10', '31'), (10699, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (10700, '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (10701, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '4.5', '117', 'Thadomal Shahani Engineering College', 'Information Technology', '60', '100', '0'), (10702, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '146', '306', '3', '100', 'GGSIPU', 'Computer Sceince & Engg.', '77', '100', '0'), (10703, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (10704, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (10705, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (10706, '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (10707, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (10708, '20', 'Reject', 'MS', 'CS', 'Fall ', '2012', '162', '152', '314', '4', '101', 'VESIT', 'Information Technology', '65.6', '100', '0'), (10709, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (10710, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (10711, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (10712, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (10713, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (10714, '20', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '710', '540', '1250', '4.5', '110', 'Pune University', '0', '78', '100', '0'), (10715, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (10716, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '112', 'Maharishi Dayanand University', 'Computer Science', '71', '100', '0'), (10717, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (10718, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (10719, '20', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (10720, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (10721, '20', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (10722, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (10723, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (10724, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (10725, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (10726, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '158', '149', '307', '3.5', '104', 'MPSTME NMIMS University Mumbai', 'Computer Engineering', '2.99', '4', '0'), (10727, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (10728, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (10729, '20', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (10730, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '101', 'R.V.R&J.C-ANU;', 'CSE', '85.72', '100', '0'), (10731, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (10732, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (10733, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '159', '157', '316', '3', '105', 'MU', 'Information Technology', '61.46', '100', '0'), (10734, '20', 'Reject', 'MS', 'mba', 'Fall', 'None', '1310', '550', '1860', '3.5', 'None', 'SASTRA', 'COMPUTER SCIENCE', '7.8', '10', '0'), (10735, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '690', '1460', '3', '100', 'Punjab Technical University', 'CS', '85.8', '100', '0'), (10736, '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '91', 'Kurukshetra University', 'Dept. of Instrumentation', '7.3', '10', '0'), (10737, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (10738, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '155', '147', '302', '3', '95', 'University of Mumbai', 'Computer Engg', '62', '100', '0'), (10739, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (10740, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Computer Sciences', '81', '100', '0'), (10741, '20', 'Reject', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (10742, '20', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2012', '159', '165', '324', '4', '118', 'MSRIT', 'Computer Science and Engineering', '74', '100', '0'), (10743, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (10744, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (10745, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (10746, '20', 'Reject', 'MS', 'Comp Science/Comp Networks/Comp Engg', 'Fall ', '2013', '159', '150', '309', '3', '107', 'Vidyalankar Institute of Technology', 'computer science', '65', '100', '0'), (10747, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (10748, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (10749, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'Information science', '73', '100', '0'), (10750, '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (10751, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (10752, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (10753, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (10754, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '153', '319', '3.5', '95', 'BITS Pilani', 'Computer Science', '6.5', '10', '0'), (10755, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '145', '305', '3', '103', 'Anna University', 'Electronics & Communication', '65', '100', '0'), (10756, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (10757, '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (10758, '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '159', '145', '304', '3.5', '105', 'MITCOE Pune University', 'Information Technology', '65.56', '100', '0'), (10759, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (10760, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (10761, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (10762, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (10763, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (10764, '20', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (10765, '20', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2014', '166', '162', '328', '4', '114', 'Biju Patnaik University of Technology', 'EEE', '8.3', '10', '0'), (10766, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3.5', '106', 'Coimbatore Insitute of Technology', 'Comp Sci', '9.24', '10', '0'), (10767, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (10768, '20', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '155', '150', '305', '3', '106', 'West Bengal University Of Technology', 'Instrumentation and Control', '8.5', '10', '26'), (10769, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (10770, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '154', '314', '3', '100', 'JNTU', 'Computer science', '75', '100', '0'), (10771, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (10772, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (10773, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (10774, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (10775, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '103', 'MPSTME NMIMS', 'IT', '3.85', '4', '0'), (10776, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (10777, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (10778, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (10779, '20', 'Reject', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (10780, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (10781, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (10782, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (10783, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (10784, '20', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (10785, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (10786, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '92', 'Bangalore University', 'Computer Science', '73', '100', '0'), (10787, '20', 'Reject', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (10788, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '3.5', '104', 'NIT Jalandhar', 'CSE', '7.73', '10', '0'), (10789, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (10790, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (10791, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (10792, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10793, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (10794, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (10795, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '151', '314', '3.5', 'None', 'PICT', 'computer', '58', '100', '0'), (10796, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (10797, '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (10798, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (10799, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '3.5', '108', 'VESIT', 'Computer', '69.69', '100', '0'), (10800, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '3.5', '93', 'SKIT', 'CS', '65', '100', '0'), (10801, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (10802, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10803, '20', 'Reject', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (10804, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'IS', '73', '100', '0'), (10805, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10806, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10807, '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (10808, '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (10809, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (10810, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10811, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (10812, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '690', '610', '1300', '4', '111', 'University of Mumbai', 'Information Technology', '58', '100', '0'), (10813, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (10814, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (10815, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (10816, '20', 'Reject', 'MS', 'Data Science', 'Fall', 'None', '166', '155', '321', '4', '109', 'Siddaganga Institue of Technology', 'Electronics & Communication', '71', '100', '0'), (10817, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (10818, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '-1', '-1', '-1', '-1', '97', 'Visvesvaraya Technological University', 'Computer Science', '73', '100', '29'), (10819, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '151', '318', '3.5', '105', 'Vellore Institute of Technology', 'Computer Science', '8.99', '10', '17'), (10820, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '154', '321', '4', '103', 'Acropolis Institute of Technology & Research', 'Information Technology', '7.4', '10', '0'), (10821, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '158', '148', '306', '4', '105', 'KIIT University', 'Computer Science', '8.65', '10', '0'), (10822, '21', 'Admit', 'MS', 'Computer Science', 'Fall', '2017', '168', '157', '325', '3', '115', 'Gitam University', 'Computer Science', '8.5', '10', '0'), (10823, '22', 'Admit', 'MSc', 'Industrial Engineering', 'Fall', '2017', '170', '155', '325', '3.5', '111', 'Sardar Patel College Of Engineering, (SPCE), Andheri', 'Mechanical Engineering', '8.73', '10', '15'), (10824, '23', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', '2016', '170', '156', '326', '3', '104', 'Pdpu', 'Mechanical Engineering', '8.3', '10', '0'))
In [119]:
cursor.execute("delete from student where Target_Major like '%/%'")
Out[119]:
0
In [120]:
cursor.execute("SELECT * from student")
records=cursor.fetchall()

print(records)
uni_recomm.commit()
((1, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '142', '299', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '64.37', '100', '0'), (2, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (4, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3', '94', 'None', 'CS', '3.3', '10', '0'), (5, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '158', '144', '302', '3', '100', 'Apeejay College of Engineering', 'ECE', '66.4', '100', '0'), (6, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (7, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (10, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (11, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (13, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (15, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (16, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '110', 'UPTU', 'CSE', '74', '100', '0'), (17, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (18, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (19, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '108', 'Guru Gobind Singh Indraprashta University', 'IT', '70', '100', '0'), (20, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (21, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (22, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (23, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '2.5', '96', 'NIT Raipur', 'Electrical', '7.2', '10', '0'), (24, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '790', '580', '1370', '4.5', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communications Engineering', '66', '100', '0'), (25, '1', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '168', '159', '327', '3', '105', 'PESIT', 'Electronics and Communication', '6.72', '10', '30'), (26, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (27, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '370', '1110', '3.5', '107', 'VTU', 'CSE', '66', '100', '0'), (28, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (29, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (30, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '3.5', '89', 'Jaypee Institute of Information Technology', 'Electroincs and Telecommunication', '8.8', '10', '0'), (31, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '153', '318', '3.5', '102', 'Jai Narain Vyas University Jodhpur', 'Electrical Engineering', '67', '100', '0'), (32, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (33, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (34, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (35, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '149', '310', '4', '101', 'BITS Pilani', 'Mechanical Eng', '3.4', '4', '36'), (36, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '380', '1110', '4', '95', 'MIT Pune', 'Mechanical Engineering', '72.92', '100', '0'), (37, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (38, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '100', 'SVCE', 'CSE', '7.32', '10', '0'), (39, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (40, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', 'electronics and telecom engineering', '0', '0', '0'), (41, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (42, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (43, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (45, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (46, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (47, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (48, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (49, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '159', '157', '316', '3.5', '104', 'SIES Graduate School of Technology', 'EXTC', '65', '100', '0'), (51, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (52, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '155', '153', '308', '4', '109', 'University of Mumbai', 'Production Engineering', '70.19', '100', '0'), (53, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (54, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (55, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (56, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '570', '1300', '3.5', '97', 'Thadomal Shahani Engineering College', 'Computer Engg.', '68', '100', '0'), (57, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (58, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (59, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (60, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '95', 'Nagpur University', 'Electronics', '63', '100', '0'), (61, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '570', '1250', '4.5', '116', 'Anna University', 'CS', '77', '100', '0'), (62, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (63, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '100', 'Gujarat Technological University', 'EC', '7.7', '10', '0'), (64, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (65, '1', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (66, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (67, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (68, '1', 'Admit', 'MS', 'Engineering Management', 'Fall', 'None', '158', '152', '310', '3.5', '94', 'Sreenidhi Institute of Science & Technology', 'avionics', '3.12', '4', '0'), (69, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (70, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (71, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '108', 'University of Pune', 'Information Tech', '65', '100', '0'), (72, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (73, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (74, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (75, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '790', '610', '1400', '3', '99', 'PICT', 'IT', '3', '4', '0'), (76, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (77, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (78, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '91', 'VTU', 'Information Science', '73', '100', '0'), (79, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '720', '520', '1240', '2', '21', 'MU', 'Computer Engineering', '0', '100', '0'), (80, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (82, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '152', '312', '3.5', '108', 'JNTU', 'ECE', '7.6', '10', '0'), (83, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (84, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '152', '308', '3.5', '112', 'Jai Narain Vyas University Jodhpur', 'Computer Science and Engineering', '73.4', '100', '0'), (85, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '155', '317', '3.5', '113', 'GGSIPU', 'Mechanical', '70', '100', '0'), (86, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (87, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '103', 'ITM Gurgaon', 'CSE', '64.3', '100', '0'), (88, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4.5', '107', 'K J Somaiya College of Engiineering', 'Information Technology', '71.4', '100', '0'), (89, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '109', 'Shivaji University', 'Electronics Engineering', '70.3', '100', '0'), (90, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2011', '700', '530', '1230', '4', '110', 'Sinhgad College of Engineering', 'Chemical Engineering', '60', '100', '0'), (91, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (92, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '101', 'BBDIT Ghaziabad', 'Mechanical Engineering', '72', '100', '0'), (93, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (94, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (95, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (96, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '4', '96', 'MU', 'Computer Engg', '65.2', '100', '0'), (97, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (98, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (99, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (101, '1', 'Admit', 'MS', 'Operations Research', 'Fall ', '2014', '160', '145', '305', '2.5', '93', 'SJCE', 'Mech', '7.3', '10', '0'), (102, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (103, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (104, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '500', '1220', '3', '103', 'MU', 'EXTC', '0', '0', '0'), (105, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (106, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '3.5', '103', 'Anna University', 'IT', '72', '100', '0'), (107, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (108, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (109, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (110, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '490', '1290', '3', 'None', 'Lovely institute of Technology', 'ECE', '75.2', '100', '0'), (111, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (112, '1', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (113, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '144', '305', '3', '106', 'K. K. Engineering College', 'Mechanical Engineering', '66.6', '100', '0'), (114, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (115, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (116, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (117, '1', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (118, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (119, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '159', '148', '307', '3.5', '99', 'UPTU', 'EI', '66', '100', '0'), (120, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '101', 'Pune University', 'Computer Engineering', '65', '100', '0'), (121, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (122, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (123, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (124, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '144', '304', '4', '96', 'Siddaganga Institue of Technology', 'Computer Science', '9.38', '10', '29'), (125, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (126, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (127, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (128, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Padmashree Dr D Y Patil University', 'Biotechnology & Bioinformatics', '66', '100', '0'), (129, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (130, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (132, '1', 'Admit', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (133, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (135, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (136, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '4.5', '109', 'MU', 'Computer', '73', '100', '0'), (137, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '310', '1050', '2.2', '92', 'MU', 'IT', '0', '0', '0'), (138, '1', 'Admit', 'MS', 'Bioinformatics', 'Spring ', '2015', '156', '139', '295', '3', '93', 'VTU', 'Information Science', '74', '100', '10'), (140, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (141, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (142, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'IT', '62.3', '100', '0'), (143, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (144, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (145, '1', 'Admit', 'MS', 'Pharmacology', 'Fall ', '2012', '770', '580', '1350', '3', '100', 'Osmania University', 'Pharmacy', '74.2', '100', '0'), (146, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (147, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '146', '307', '3', '91', 'University of Pune', 'Computer', '54.84', '100', '0'), (148, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3.5', '103', 'Panjab University', 'ECE', '68.5', '100', '0'), (149, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '65.95', '100', '0'), (150, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (151, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (152, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (153, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2014', '163', '152', '315', '3.5', '101', 'SRKNEC Nagpur', 'Information Technology', '61', '100', '17'), (154, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (156, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '105', 'Vivekananda College of Engineering an Technology (VTU)', 'Computer Science and Engineering', '68', '100', '0'), (158, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3', '88', 'VJTI', 'CS', '5.7', '10', '0'), (159, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3.5', '10', 'None', '0', '0', '0', '0'), (160, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (161, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (162, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '150', '150', '300', '3.5', '110', 'VTU', 'Computer Science', '3.5', '4', '0'), (163, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (164, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '145', '306', '3.5', '102', 'West Bengal University Of Technology', 'Information Technology', '7.82', '10', '0'), (166, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (167, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3', '107', 'MU', 'Computer Science', '64', '100', '0'), (168, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (169, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (170, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3', '105', 'MU', 'Computer Engineering', '68.6', '100', '0'), (171, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (172, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '166', '156', '322', '4.5', '104', 'Medicaps Institute of Science & Technology Indore', 'Mechanical Engineering', '64', '100', '0'), (173, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '99', 'PESIT', 'Telecommunication', '74.57', '100', '0'), (175, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (176, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (177, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '600', '300', '900', '1.5', '101', 'None', '0', '0', '0', '0'), (178, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (179, '1', 'Admit', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (180, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (181, '1', 'Admit', 'MS', 'Digital Media', 'Fall ', '2011', '790', '520', '1310', '3.5', '109', 'MU', 'computer engg', '0', '0', '0'), (182, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (183, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '96', 'CUSAT', 'ECE', '7.4', '10', '0'), (184, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (185, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (186, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (187, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (188, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (190, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (191, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '148', '307', '3.5', '107', 'MU', 'Information Technology(I.T)', '59.8', '100', '0'), (192, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (193, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', 'None', 'SASTRA', 'Computer Science', '8.7', '10', '24'), (194, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '670', '360', '1030', '3.5', '97', 'Ambedkar Institute of technology', 'Computer Science', '74', '100', '0'), (195, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (197, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '4', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '78', '100', '0'), (198, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '640', '420', '1060', '4', '97', 'Anna University', 'Electronics and Comm', '71', '100', '0'), (199, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '148', '310', '3.5', 'None', 'CEG', 'Electronics and Communication', '7.62', '10', '33'), (200, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (201, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '153', '309', '4', '115', 'Anna University', 'Biotechnology', '7.75', '10', '0'), (202, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '570', '1250', '3.5', '103', 'Anna University', 'Mechanical', '74', '100', '0'), (203, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '103', 'UPTU', 'Electronics and Communications', '69', '100', '0'), (204, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '770', '660', '1430', '3', '111', 'UPTU', 'Biotechnology', '65', '100', '0'), (205, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (206, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (207, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '143', '303', '2.5', '84', 'MU', 'Information Technology', '60', '100', '0'), (208, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '150', '316', 'None', 'None', 'HBTI', 'Computer Science and Engineering', '75.6', '100', '0'), (209, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '720', '440', '1160', '3.5', '94', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8', '10', '0'), (210, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '163', '323', '4', '116', 'Amrita School of Engineering', 'B.Tech CSE', '7.66', '10', '0'), (211, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '3', '105', 'VTU', 'Computer science', '66.5', '100', '0'), (212, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (213, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (214, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '155', '315', '4.5', '113', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '7.71', '10', '43'), (215, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (216, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (217, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (218, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (219, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', '700', '540', '1240', '3.5', '91', 'Sri Venkateswara College of Engineering', 'IT', '65', '100', '0'), (220, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (221, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (222, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (223, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'MU', '0', '0', '0', '0'), (224, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '142', '304', '3', '94', 'Nirma Institute of Technology', 'CSE', '7.66', '10', '0'), (225, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (228, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (229, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (230, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (231, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '151', '310', '3.5', '112', 'Anna University', 'Electronics & Communication', '7.9', '10', '54'), (232, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (233, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (234, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '143', '301', '4', '97', 'University of Pune', 'Computer', '59', '100', '0'), (235, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3', '113', 'BIT', 'telecom', '60', '100', '36'), (236, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '470', '1160', 'None', '92', 'VTU', 'Information Science', '0', '0', '0'), (237, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', '3.5', '84', 'Bangalore Institute of Technology', 'Computer Science', '72.45', '5', '0'), (238, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (239, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '162', '157', '319', '4', 'None', 'BIT Mesra', 'ECE', '69', '100', '0'), (240, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (241, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '97', 'D J Sanghvi', 'Electronics', '63', '100', '0'), (242, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2015', '164', '154', '318', '4', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science', '61.4', '100', '36'), (243, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (244, '1', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '155', '152', '307', '4', 'None', 'Madras Institute of Technology', 'IT', '8.2', '10', '24'), (245, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '153', '317', '3', '104', 'NIT Jalandhar', '0', '0', '0', '0'), (246, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (247, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '155', '318', '3.5', '115', "MGM's Jawaharlal Nehru Engineering College", 'Computer Science', '67', '100', '0'), (248, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (249, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (250, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '760', '450', '1210', '3.5', '104', 'D J Sanghvi', 'IT', '0', '0', '0'), (251, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '147', '315', '3', '98', 'IIT Indore', 'Electrical Engineering', '6.55', '10', '0'), (252, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (253, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '110', 'University of Pune', 'IT', '68.41', '100', '0'), (254, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '155', '315', '3', '99', 'Anna University', 'Information Technology', '9.15', '10', '0'), (255, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '150', '306', '3', '100', 'Maharishi Dayanand University', 'Electronics & Communication', '70.7', '100', '43'), (256, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (257, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '152', '311', '3', '105', 'SSN College of Engineering', 'IT', '74', '100', '0'), (258, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (259, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (260, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '165', '155', '320', '3.5', '107', 'NIT Karnataka', 'EC', '7.42', '10', '0'), (261, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (262, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (263, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (264, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (265, '1', 'Admit', 'MS', 'Management Information System', 'Spring ', '2014', '156', '145', '301', 'None', 'None', 'Amrita School of Engineering', 'Computer Science', '8.8', '10', '0'), (266, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (267, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (268, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (269, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (270, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '4', '114', 'None', '0', '0', '0', '0'), (271, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '4', '105', 'SVCE', 'B.E CSE', '7.19', '10', '17'), (272, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (273, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '160', '314', '3', '116', 'None', 'ECE', '8', '10', '0'), (274, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '307', '150', '457', '4.5', '93', 'None', '0', '62', '100', '0'), (275, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '152', '312', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '61', '100', '10'), (276, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (277, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (278, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '158', '141', '299', '3', '82', 'None', '0', '0', '0', '0'), (279, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '109', 'Osmania University', 'Information Technology', '82.14', '100', '0'), (280, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (281, '1', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '690', '300', '990', '3', '84', 'LDCE', 'EC', '66', '100', '0'), (282, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (283, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (285, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '157', '157', '314', '3', '106', 'Panimalar Engineering College', 'Computer Science', '81', '100', '51'), (286, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'JNTU', 'Computer Science', '71.82', '100', '0'), (287, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '430', '1220', '3', '106', 'NIT Warangal', 'Computer Science & Engg', '7.7', '10', '0'), (289, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '144', '302', '3.5', '102', 'University of Pune', 'IT', '3.6', '4', '0'), (290, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (291, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (292, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (293, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (294, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', 'None', 'Acharya Institute of technology', 'Computer Science', '71', '100', '0'), (295, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '98', 'PICT', 'Computer', '63.4', '100', '0'), (296, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '116', 'Silicon Institute Of Technology', 'Computer Science', '8.64', '10', '0'), (297, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (298, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4', '111', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.35', '10', '0'), (299, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', '102', 'GITAM', 'INFORMATION TECHNOLOGY', '8.55', '10', '0'), (300, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (301, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (302, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (303, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (304, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (305, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '790', '550', '1340', '4', '105', 'Thakur College of Engineering and Technology', 'Computer Engineering', '68.69', '100', '0'), (306, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '70', '100', '0'), (307, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3.5', '103', 'R V College of Engineering', 'Computer Science', '71', '100', '41'), (308, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (309, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (310, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2011', '750', '500', '1250', '3', '84', 'Gujarat Technological University', 'pharmacy', '65', '100', '0'), (311, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (312, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '3', '103', 'BMSCE', 'information science and engineering', '8.81', '10', '24'), (313, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2008', '760', '500', '1260', '4', '107', 'SASTRA', 'biotechnology', '8.6', '10', '0'), (314, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '154', '149', '303', '3.5', '95', 'RAIT', 'Electronics', '70', '100', '0'), (315, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (316, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (317, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '147', '315', '3', '94', 'Rajiv Gandhi Technical University', 'Mechanical', '0', '0', '0'), (318, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (321, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (322, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (323, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (324, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (325, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (326, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (327, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '4', '110', 'Pune University', 'Information Technology', '70.2', '100', '30'), (328, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (329, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '154', '318', '4.5', '103', 'Sinhgad College of Engineering', 'Information Technology', '69', '100', '0'), (330, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '150', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (331, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2014', '156', '143', '299', '4', 'None', 'MU', 'Computer Engineering', '72.34', '100', '0'), (332, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '157', '142', '299', 'None', 'None', 'Manav Rachna College of Engineering', 'electronics and communication', '65', '100', '0'), (333, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2014', '164', '146', '310', '3', 'None', 'None', 'EC', '69.16', '100', '0'), (334, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (335, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4', '116', 'MU', 'computer', '80.83', '100', '0'), (336, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (337, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '148', '146', '294', '3', '94', 'Vidyalankar Institute of Technology', 'information technology', '0', '0', '0'), (338, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (339, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (340, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2013', '730', '320', '1050', '3', '79', 'Syed Hashim College-Affl to JNTU', 'ECE', '68.5', '100', '0'), (341, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (342, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (344, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (345, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (346, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (347, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (348, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (349, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '160', '154', '314', '4', '109', 'MU', 'Information Technology', '59.7', '100', '0'), (350, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (351, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (352, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', 'Electrical and Electronics Engineering', '67', '100', '42'), (353, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (354, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '100', 'VTU', 'CS', '8.35', '10', '0'), (355, '1', 'Admit', 'MS', 'Telecom management', 'Fall ', '2014', '156', '148', '304', '4', '94', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '3.83', '4', '0'), (356, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (357, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (358, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '4', '107', 'D j Sanghvi', 'Computer Engineering', '70', '100', '0'), (359, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '149', '305', '3.5', '108', 'CSVTU', 'CSE', '66.45', '100', '0'), (360, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '142', '303', '4.5', '97', 'BIT Mesra', 'Electronics & Communication Engineering', '69.9', '100', '0'), (361, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (362, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (363, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (364, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (365, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '159', '157', '316', '4', '102', 'University of Pune', 'Computer', '59', '100', '0'), (366, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (367, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '153', '310', '3', 'None', 'JNTU', 'Mechanical', '75', '100', '12'), (368, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (369, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (370, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (371, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (372, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '790', '630', '1420', '4.5', '293', 'Punjab Technical University', 'Electronics & Communication Engg', '67', '100', '0'), (373, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (374, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (375, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (376, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (377, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2016', '162', '159', '321', '4.5', '111', 'Sathyabama University', 'Mechanical Engineering', '7.59', '10', '0'), (378, '1', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (379, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '161', '143', '304', '3.5', '107', 'Vignan Institute of Technology and Science', 'Information Technology', '79', '100', '24'), (380, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (381, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (382, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '400', '1140', '3', '95', 'MU', 'Computer Engg.', '71', '100', '0'), (383, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (384, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (385, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (386, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (387, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (388, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4.5', '110', 'MAIT GGSIPU', 'CSE', '73.1', '100', '22'), (389, '1', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2013', '770', '580', '1350', '4', '115', 'Sir MVIT', 'CS', '74.5', '100', '0'), (390, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '530', '1290', '3.5', '107', 'Himachal Pradesh University / IITT College of Engineering', 'B.Tech (Electronics and Communication)', '68.6', '100', '0'), (391, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (392, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4.5', '112', 'VTU', 'CSE', '9.27', '10', '0'), (393, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '162', '154', '316', '4.5', '109', 'Lahore University of Management Sciences', 'School of Science and Engg.', '2.85', '4', '0'), (394, '1', 'Admit', 'MS', 'MEM', 'Fall ', '2013', '158', '147', '305', '3', '87', 'JNTU', 'ece', '67.5', '100', '0'), (395, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3.5', '104', 'SRM', 'Computer Science', '8.73', '10', '0'), (396, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (397, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '610', '1410', '3.5', '108', 'JNTU', 'CS', '79', '100', '0'), (398, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (399, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '150', '142', '292', '3.5', '101', "St Joseph's College of Engineering", 'CSE', '81', '100', '0'), (400, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '340', '1070', '3.5', '103', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '69', '100', '0'), (402, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (403, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (404, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (405, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '167', '154', '321', '3.5', '101', 'G H Patel College of Engg & Tech', 'Information Technology', '7.76', '10', '34'), (406, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '160', '148', '308', '3.5', '83', 'University of Pune', 'Computer Engg.', '65.5', '100', '0'), (408, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (409, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '159', '150', '309', '2.5', '93', 'Chitkara University', 'B.E. CSE', '7.2', '10', '33'), (411, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (412, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (413, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (414, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '360', '1040', '4', '106', 'MITCOE; Pune University', 'I T', '70', '100', '0'), (415, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '107', 'Padre Conceicao College Of Engineering', 'Electronics And Telecommunication', '78.12', '100', '6'), (416, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (417, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (418, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (419, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (420, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '420', '1180', '4', '109', 'G.H. Raisoni College of Engineering Nagpur', 'Information Technology', '65', '100', '0'), (421, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', '101', "St Joseph's College of Engineering", 'EEE', '74', '100', '0'), (422, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (423, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '103', 'SBMJain Coll', 'Dept of CS', '78', '100', '0'), (424, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '520', '1230', '3.5', '90', 'RMK Engineering College', 'Computer Science', '83', '100', '0'), (426, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (427, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '610', '1360', '3', '106', 'JNTU', 'ECE', '72', '100', '44'), (428, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '103', 'VTU', 'Information Science', '63', '100', '45'), (429, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (430, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (431, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '610', '1370', '4', '115', 'MG University', 'Computer Science', '79', '100', '0'), (432, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '4', '108', 'RKNEC', 'IT', '75', '100', '0'), (433, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (434, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '164', '155', '319', '5', '112', 'VIT', 'Biotechnology', '8.62', '10', '0'), (435, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (436, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '88', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '0', '0', '0'), (437, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '148', '306', '3', '7', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.91', '10', '0'), (438, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (439, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '97', 'Anna University', 'Information Technology', '75', '100', '0'), (440, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (441, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '8', 'Bapatla Engineering College', 'CSE', '90.2', '100', '0'), (442, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '330', '1130', '4', '253', 'Hacettepe University', 'Electrical & Electronics Engineering', '3.87', '4', '0'), (443, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '107', 'MSRIT', 'Mechanical Engineering', '9.16', '10', '0'), (444, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '149', '311', '3.5', '113', 'SRM', 'ECE', '8.57', '10', '0'), (445, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (446, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '160', '155', '315', '3.5', '98', 'UPTU', 'IT', '63.08', '100', '18'), (447, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '290', '1040', '3.5', '95', 'D J Sanghvi', 'IT', '67', '100', '0'), (448, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '158', '320', '3', '114', 'NIT Durgapur', 'Computer Science and Engineering', '7.36', '10', '24'), (449, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '390', '1170', '3.5', '88', 'CHHATTISGARH SWAMI VIVEKANANDA TECHNICAL UNIVERSITY', 'COMPUTER SCIENCE', '8.55', '10', '0'), (450, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (451, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (452, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (453, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '150', '315', 'None', '95', 'None', '0', '0', '0', '0'), (455, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (456, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4.5', '105', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (457, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (458, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '510', '1310', '4.5', '115', 'MU', 'IT', '68', '100', '0'), (460, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '149', '310', '3.5', '105', 'BIT Mesra', 'ECE', '7.04', '10', '0'), (461, '1', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (462, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '114', 'VTU', 'Computer Science', '75', '100', '0'), (463, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (464, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '610', '1400', '3', '105', 'Jaypee Institute of Information Technology', 'InformationTechnology', '6.6', '10', '0'), (465, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (466, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '480', '1240', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (467, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '111', "St.Xavier's College", 'Information Technology', '75.6', '100', '0'), (468, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (469, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (470, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '154', '312', 'None', '105', 'PCE Nagpur', 'Computer Tech.', '71', '100', '0'), (471, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '690', '540', '1230', '3', '106', 'VTU', 'CS', '74', '100', '0'), (472, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (473, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (474, '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (475, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '152', '311', '3', '106', 'VTU', 'Computer Science', '67.8', '100', '33'), (476, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (477, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '100', 'Anna University', 'Computer Science', '8.5', '10', '0'), (478, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (479, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '163', '324', '4', '111', 'SAKEC University of Mumbai', 'Electronics', '60', '100', '60'), (480, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (481, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (482, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (483, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (484, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '650', '1420', '3.5', '111', 'Vishwakarma Institute of Technology', 'Electronics', '65.38', '100', '0'), (485, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '163', '326', '4', '115', 'NIT Calicut', 'Computer Science and Engineering', '6.88', '10', '0'), (487, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (488, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '103', 'IET DAVV', 'CSE', '74', '100', '0'), (489, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (490, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (491, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '142', '304', 'None', '97', 'IES IPS Academy', 'Electronics and communication', '76', '100', '42'), (492, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3.5', '99', 'BESU Shibpur', 'Computer Science and Technology', '74.7', '100', '22'), (493, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (494, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (495, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (496, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '500', '1280', '3', '95', 'MU', 'Computer', '74', '100', '0'), (497, '1', 'Admit', 'MS', 'CS', 'Spring ', '2015', '163', '155', '318', '4.5', '111', 'Bharati Vidyapeeth', 'Instrumentation and Control', '75.66', '100', '33'), (498, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (499, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '98', 'None', '0', '0', '0', '0'), (500, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (501, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (502, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (503, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '109', 'Valliammai Engineering College', 'ECE- Electronics and Communications Engineering', '78', '100', '0'), (504, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (505, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '4', '112', 'Thadomal Shahani Engineering College', 'Computer Science', '75', '100', '12'), (506, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3', '99', 'Sarvajanik College of Engineering & Technology', 'Computer Engineering', '75', '100', '0'), (507, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (508, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '730', '550', '1280', '4', '105', 'L D College Of Engineering', 'Computer Engineering', '68.9', '100', '0'), (509, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '520', '1260', '4', '96', 'SSN College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (510, '1', 'Admit', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (511, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '151', '313', '3', '100', 'MDU', 'ECE', '62', '100', '0'), (512, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '165', '146', '311', '3', '97', 'D J Sanghvi', 'Chemical', '54', '100', '0'), (513, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '158', '148', '306', 'None', 'None', 'VTU', 'Electronics and Communication', '74', '100', '29'), (514, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (515, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '103', 'U P Tech University', 'Computer Science', '71.84', '100', '0'), (516, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2008', '700', '530', '1230', '3.5', '111', 'None', '0', '0', '0', '0'), (517, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '700', '490', '1190', '3', '92', 'GTU', 'Mechanical Engg.', '6.5', '10', '0'), (518, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '520', '1250', '3', '89', 'VTU', 'Electronics & Communication', '66.2', '100', '0'), (519, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (521, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '165', '146', '311', '3', '104', 'NIT Calicut', 'Electronics and Communications', '8.3', '10', '0'), (522, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (523, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '144', '303', '3', '100', 'B.S ABDUR RAHMAN UNIVERSITY', 'Electronics and communication', '8.51', '100', '0'), (524, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '530', '1290', '4.5', '110', 'VTU', 'Electronics and Communication', '74.3', '100', '0'), (525, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '148', '306', '2.5', 'None', 'JNTU', 'Computer Science and Engineering', '70', '100', '17'), (526, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '4', '96', 'MU', 'EXTC', '64.85', '100', '20'), (527, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (528, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (529, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '720', '570', '1290', '3', '111', 'University of Pune', 'Computer Science', '56.6', '100', '0'), (530, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '780', '520', '1300', '3', '110', 'GITAM', 'ECE', '9.55', '10', '0'), (531, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '610', '540', '1150', '3.5', 'None', 'None', '0', '3', '4', '0'), (532, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '145', '299', '2.5', '82', 'West Bengal University Of Technology', 'Electronic & Communication', '7.23', '10', '0'), (533, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (534, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (535, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (536, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '108', 'NMIMS', 'IT', '3.2', '4', '0'), (537, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3', '86', 'TSEC', 'Computer Science', '74', '100', '0'), (538, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '148', '306', '3', '104', 'SASTRA', 'CSE', '8.1', '10', '0'), (539, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '161', '321', '4', '106', 'PSG College of Technology', 'Electronics and Communication', '8.82', '10', '24'), (540, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (541, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (542, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (543, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', 'None', '104', 'None', '0', '8.06', '100', '0'), (544, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (545, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '490', '1260', '3.5', '101', 'PTU Jallandhar', 'Computer Science', '69.2', '100', '0'), (547, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (548, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (549, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '780', '320', '1100', '3', 'None', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (550, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (551, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (552, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '72.5', '100', '0'), (553, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (554, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '103', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.32', '10', '30'), (555, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '590', '1360', '5', '98', 'COEP', 'Information Technology', '8.42', '10', '0'), (556, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '138', '296', '3.5', '90', 'MU', 'Information Technology', '72', '100', '0'), (557, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (558, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (559, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '157', '149', '306', '4', '108', 'JBIET', 'Civil Engineering', '79.5', '100', '17'), (560, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (561, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (562, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '157', '152', '309', '3.5', '111', 'Manipal Institue of Technology', 'Pharmacy', '8.25', '10', '0'), (563, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (564, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (565, '1', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (566, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3', '103', 'Amrita School of Engineering', 'CS', '7.64', '10', '0'), (567, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (568, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (569, '1', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (570, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', 'None', 'MU', 'Information Technology', '74', '100', '0'), (571, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '700', '460', '1160', '3', '92', 'Pune University', 'Computer', '62', '100', '0'), (572, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '270', '1030', '2.5', '76', 'University of Mumbai', 'Electronics & telecom', '66.89', '100', '0'), (574, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3.5', '101', 'Model Engineering College', 'Computer Science', '67', '100', '0'), (575, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (576, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (577, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '770', '430', '1200', '3.5', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '0', '0', '0'), (578, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (579, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '145', '307', '3', '96', 'University of Pune', 'Mechanical', '57', '100', '0'), (580, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '790', '640', '1430', 'None', '115', 'VTU', 'Electronics and Communication', '76', '100', '0'), (581, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '490', '1270', '3', 'None', 'Pune University', 'IT', '65.79', '100', '0'), (582, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '730', '560', '1290', '3', '110', 'NIT Jalandhar', 'ECE', '7.28', '10', '0'), (583, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '4', '112', 'None', '0', '0', '0', '0'), (584, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (585, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (586, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '103', 'MU', 'IT', '68.84', '100', '0'), (587, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '101', 'Osmania University', 'C.S.E', '77', '100', '0'), (588, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '660', '600', '1260', '4', '111', 'University of Pune', 'Computer Engineering', '65.81', '100', '0'), (589, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '113', 'IIIT Hyderabad', 'Computer Science and Engineering', '7.77', '10', '0'), (590, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (591, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3', '94', 'University of Texas Dallas', 'EEE', '0', '0', '0'), (593, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (594, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '470', '1260', '3', '7', 'SASTRA', 'Electronics and Communications engineering', '6.62', '10', '0'), (595, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (596, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '104', 'SSN College of Engineering', 'EEE', '70', '100', '0'), (597, '1', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (598, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '159', '148', '307', '3', '89', 'BITS Pilani', 'MBA', '7.77', '10', '45'), (599, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Institut Teknologi Bandung', 'Industrial Engineering', '3.4', '4', '0'), (600, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (601, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (602, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (603, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (604, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (605, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (606, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '76', '590', '666', '3.5', '94', 'NIT Raipur', 'IT', '7.93', '10', '0'), (607, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (608, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (609, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (610, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '145', '312', '2.5', '89', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '8.06', '10', '27'), (611, '1', 'Admit', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (612, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Madras Institute of Technology', 'Computer Science and Engineering', '8.2', '10', '6'), (613, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (614, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (615, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '780', '460', '1240', '3.5', '101', 'Osmania University', 'Computer Science', '77', '100', '0'), (616, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '165', '155', '320', '3.5', '107', 'MGM JNEC Aurangabad', 'Mechanical Engineering', '63.5', '100', '72'), (617, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '410', '1210', '3.5', '105', 'CEG', 'Electronics and Communication', '7.7', '10', '0'), (618, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (619, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '155', '318', '4', '114', 'NIT Kurukshetra', 'Electrical Engineering', '9.4', '10', '0'), (620, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '155', '306', '4', '111', 'None', '0', '0', '0', '0'), (622, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (623, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '159', '149', '308', '3.5', '95', 'MU', 'IT', '64', '100', '33'), (624, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (625, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (626, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (627, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '150', '307', '3', 'None', 'Panimalar Engineering College', 'I.T', '70', '100', '34'), (628, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '500', '1280', '3', '99', 'Sardar Patel College of Engineering', 'CS', '71.78', '100', '0'), (629, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '98', 'Bannari Amman Institute of Technology', 'EEE', '9.01', '10', '0'), (630, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (631, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (632, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '148', '304', '3', '109', 'Sri Sairam Engineering College', 'Information Technology', '84.5', '100', '0'), (633, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '107', 'VTU', 'Computer Science', '82', '100', '0'), (635, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', 'None', 'NIT Raipur', 'Computer Science & Engg.', '7.76', '10', '8'), (636, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3', '91', 'MU', 'Information Technology', '63', '100', '0'), (637, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (638, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (639, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (640, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '5', '108', 'Amrita School of Engineering', 'CSE', '7.68', '10', '0'), (641, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', 'None', 'None', 'Sardar Patel University', 'Information Technology', '8.94', '10', '0'), (642, '1', 'Admit', 'MS', 'MEM', 'Fall', 'None', '158', '147', '305', '3', '96', 'JNTU', 'ece', '68', '100', '0'), (643, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (644, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (645, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (646, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'Pune University', 'Information Technology', '69', '100', '0'), (647, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '145', '301', 'None', '89', 'MIT PUNE', 'Mechanical Engg.', '68', '100', '0'), (648, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (649, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (650, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (651, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (652, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (653, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '163', '331', '5', '112', 'GITAM', 'Cse', '6.88', '10', '0'), (654, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (655, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (656, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (657, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (658, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (659, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '149', '313', '3', '91', 'Punjab Technical University', 'ECE', '77.4', '100', '0'), (660, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '111', 'MU', 'Computer Engineering', '66.8', '100', '0'), (661, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (662, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '540', '1340', '4', '112', 'VJTI', 'ECE', '6.7', '10', '0'), (663, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2015', '158', '145', '303', '3', 'None', 'JNTU', 'Mechanical', '83.17', '100', '0'), (664, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (665, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '104', 'The National Institute of Engineering', 'Computer Science & Engineering', '9.61', '10', '27'), (666, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (667, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (668, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '150', '305', '3', 'None', 'Anna University', 'EIE', '78', '100', '0'), (669, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '580', '470', '1050', '2.5', '103', 'Dr.Bhanuben Nanavati college of Pharmacy', 'Pharmacy', '0', '0', '0'), (670, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '151', '308', '3.5', '112', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engg', '57.66', '100', '0'), (671, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3', '102', 'None', '0', '0', '0', '19'), (672, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '800', '550', '1350', '4', '106', 'VTU', 'Electronics and Communication', '72.2', '100', '0'), (673, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2006', '620', '730', '1350', '5.5', '287', 'MU', 'Microbiology / Biotechnology', '73', '100', '0'), (674, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (675, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (676, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '590', '1390', '3.5', '107', 'University of Mumbai', 'IT', '63.4', '100', '0'), (677, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (678, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (679, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '480', '1230', '3.5', '99', 'JNTU', 'IT', '78', '100', '0'), (680, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2010', '790', '560', '1350', 'None', '94', 'MU', 'Mechanical', '61', '100', '0'), (681, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '143', '304', '3.5', '108', 'Vidyalankar Institute of Technology', 'Information Technology', '63', '100', '0'), (682, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (683, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '900', '270', '1170', '2.5', '100', 'JNTU', 'pharmacy', '65', '100', '0'), (684, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '107', 'Sikkim Manipal Institute of Technology', 'Computer Sciences', '8.34', '10', '28'), (686, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (687, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '620', '1380', '2.5', 'None', 'Kerala University', 'Information technology', '6.8', '10', '0'), (688, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '149', '307', '3', '101', 'Shri Shankaracharya College of Engi & Tech Bhilai', 'Computer Science', '72.24', '100', '20'), (689, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '157', '144', '301', '3', '93', 'Pondicherry University', 'Mechanical Engineering', '69.7', '100', '0'), (690, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (691, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '101', 'VTU', 'CSE', '75.2', '100', '25'), (692, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (693, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (694, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2008', '750', '520', '1270', '5.5', '110', 'Thakur College of Engineering and Technology', 'Information Technology', '61', '100', '0'), (695, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '610', '1330', '4.5', '112', 'Sri Sairam Engineering College', 'Computer Science', '82', '100', '0'), (696, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '146', '304', '3.5', '102', 'Bhilai Institute of Technology', 'Computer Science', '7.8', '10', '65'), (697, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '4', '107', 'Chattisgarh Swami Vivekanand Technical University', 'Computer Science and Engineering', '8.52', '10', '0'), (698, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (699, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '720', '450', '1170', 'None', '87', 'RAIT', 'Electronics', '0', '0', '0'), (701, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (702, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4', '113', 'Pune University', 'Computer Science', '70', '100', '0'), (703, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (704, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (705, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (706, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '690', '570', '1260', '3.5', '103', 'Gujarat Technological University', 'Electronics and Communication', '71.5', '100', '0'), (707, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (708, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (709, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (710, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '147', '158', '305', '4', '92', 'H.B.T.I. Kanpur', 'Computer Science and Engineering', '69', '100', '0'), (711, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '4.5', '106', 'VTU', 'CSE', '76', '100', '0'), (712, '1', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '149', '314', '4', '98', 'VIT', 'School of Electrical Engineering', '8.1', '10', '0'), (713, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '162', '158', '320', '3', '108', 'RTM Nagpur University', 'ETC', '73.45', '100', '0'), (714, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (715, '1', 'Admit', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (716, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (717, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '3', '109', 'Anna University', 'CSE', '8.5', '10', '0'), (718, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (719, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (720, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '92', "St Joseph's College of Engineering", 'Computer Science', '8.51', '10', '0'), (721, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (722, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (723, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (724, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (725, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '164', '155', '319', '3', '110', 'Panjab University', 'CSE', '76.1', '100', '0'), (726, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (727, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3', '105', 'Model Engineering College', 'Computer Science', '68', '100', '0'), (728, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (729, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '510', '1310', '3', '103', 'BVBCET', 'Information Science', '71.8', '100', '0'), (730, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '310', '1090', '3', '99', 'K.S.I.T', 'Computer Science', '75', '100', '0'), (731, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '167', '146', '313', '3', 'None', 'Institute of Technical Education and Research', 'Computer Science & Engineering', '7.98', '10', '36'), (732, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (733, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '153', '318', '4', '106', 'Jadavpur University', 'Electrical Engg', '7.98', '10', '24'), (734, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (735, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (736, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '100', 'None', '0', '7.39', '10', '32'), (737, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (738, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '740', '450', '1190', 'None', '103', 'Mody University', 'Computer Science', '6.93', '10', '0'), (739, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (740, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '101', 'JSS Noida', 'Information Science', '76', '100', '0'), (741, '1', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (742, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '98', 'Govt. college of Engineering Aurangabad', 'IT', '68', '100', '0'), (743, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (744, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (745, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (746, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '144', '303', '3', '96', 'SSN College of Engineering', 'ECE', '76', '100', '0'), (747, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (748, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (749, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (750, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (751, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '360', '1160', '4', '106', 'MU', 'Computers', '67.4', '100', '0'), (752, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (753, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '146', '302', '3.5', '82', 'BNMIT', 'CSE', '60', '100', '0'), (754, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '740', '440', '1180', '2.5', '88', 'Sree Vidyanikethan Engineering College', 'pharmacy', '7', '10', '0'), (755, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (756, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '165', '159', '324', '4', '118', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '0', '0', '0'), (757, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (758, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (759, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '390', '1190', '3.5', '107', 'MU', 'instrumentation', '0', '0', '0'), (760, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (761, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '97', 'Osmania University', 'CSE', '77.5', '100', '0'), (762, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (763, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '168', '153', '321', '3', '101', 'DA-IICT', 'ICT', '6.57', '10', '0'), (764, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (765, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (766, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (767, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (768, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (769, '1', 'Admit', 'MS', 'Manufacturing Engineering', 'Spring ', '2013', '159', '151', '310', '3', '111', 'Vignan Institute of Technology and Science', 'Mechanical', '76.88', '100', '0'), (770, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '157', '149', '306', '2.5', '94', 'CEG', 'Mechanical Engineering', '6.08', '10', '0'), (771, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'R V College of Engineering', 'Computer Science', '0', '0', '0'), (772, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (773, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (775, '1', 'Admit', 'MS', 'Information', 'Fall ', '2014', '159', '156', '315', 'None', '109', 'Manipal Institue of Technology', 'Printing Technology', '7.95', '10', '0'), (776, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', '3', '105', 'MU', 'Information Technology', '55', '100', '0'), (777, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '143', '305', '3.5', '105', 'MU', 'Computer', '72', '100', '0'), (779, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (780, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '680', '430', '1110', '3', '100', 'Anna University', 'Information Technology', '7', '10', '0'), (781, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '94', 'Pune University', 'E & Tc', '58', '100', '0'), (782, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4', '109', 'MU', 'I.T', '63', '100', '0'), (783, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '420', '1200', '3', '96', 'RGPV', 'Electrical', '67', '100', '0'), (784, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (785, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3', '93', 'None', '0', '0', '0', '18'), (786, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '155', '313', '3.5', '111', 'SIES Graduate School of Technology', 'Information Technology', '74.42', '100', '36'), (787, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (788, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '154', '148', '302', '4', '95', 'Bharati Vidyapeeth', 'Computer Engg.', '66.5', '100', '0'), (789, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (790, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (791, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '146', '309', '3', '107', 'PESIT', 'Information Science', '76.21', '100', '0'), (792, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (794, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '102', 'SNIST', 'Information Technology', '69.45', '100', '0'), (795, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (796, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (797, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (798, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '158', '151', '309', '3.5', '108', 'University of Mumbai', 'Electronics and Telecommuniations', '68.93', '100', '0'), (799, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (800, '1', 'Admit', 'MS', 'Telecom management', 'Spring ', '2012', '760', '410', '1170', '4', '110', 'MU', '0', '0', '0', '0'), (801, '1', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '790', '470', '1260', '4', '109', 'University of Mumbai', 'computer engineering', '72', '100', '0'), (802, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '141', '302', '3', '85', 'Pune University', 'electronics and telecommunication', '60', '5', '0'), (803, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '460', '1200', '4', '110', 'VTU', 'CSE', '66.5', '100', '0'), (804, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (805, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '146', '304', '4', '109', 'Pune University', 'Printing engineering', '67', '100', '0'), (806, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (807, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (808, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (809, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (810, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (811, '1', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '740', '540', '1280', '3', '99', 'Rishiraj Institute of Technology Indore', 'Electronics and Communication', '67.72', '100', '0'), (812, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '4.5', '108', 'Bangalore Institute of Technology', 'Computer Science', '72.6', '100', '0'), (814, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '600', '1350', '3.5', '110', 'MU', 'IT', '69', '100', '0'), (815, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (816, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '147', '160', '307', 'None', '100', 'None', '0', '67', '100', '0'), (817, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (818, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '166', '163', '329', '4', '109', 'D J Sanghvi', 'Electronics', '74.15', '100', '0'), (819, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (820, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (821, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '150', '309', '3.5', '108', 'None', '0', '67.36', '100', '0'), (822, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (823, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '710', '410', '1120', '3', '7', 'Nirma Institute of Technology', 'Pharmacy', '8.1', '10', '0'), (824, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '158', '146', '304', '3.5', '90', 'SVNIT Surat', 'Electrical Engineering', '7.93', '10', '0'), (825, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '0', '0', '0'), (826, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '4', '102', 'MSRIT', 'Information Science', '8.52', '10', '0'), (828, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (829, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (830, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (831, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '117', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.2', '10', '36'), (832, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (833, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (834, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '157', '317', '3', '103', 'University of Pune', 'Mechanical Engineering', '60', '100', '0'), (835, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (836, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (837, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '166', '145', '311', '3.5', '92', 'RGPV', 'IT', '74', '100', '44'), (838, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '109', 'University of Pune', 'Computer Engineering', '59.9', '100', '0'), (840, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '350', '1150', '3', '91', 'UPTU', 'IT', '70.6', '100', '0'), (841, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (842, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '157', '150', '307', '4.5', '93', 'University of Mumbai', 'IT', '60', '100', '0'), (843, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (845, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '670', '560', '1230', '3.5', '105', 'Pune University', 'computer engineering', '0', '100', '0'), (846, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (847, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (848, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (849, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (850, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (851, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (852, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (853, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (854, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (855, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (857, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (858, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (859, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (860, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (861, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (863, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (864, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '710', '680', '1390', '3', '101', 'M M M Engineering College Gorakhpur', 'Electronics & Communication Engineering', '76', '100', '0'), (865, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3', '105', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (866, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (867, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (868, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '340', '1050', '3', '88', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (869, '1', 'Admit', 'MS', 'Management Information System', 'Fall', 'None', '156', '151', '307', '3.5', '94', 'Pune University', 'Computer', '0', '0', '0'), (870, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (871, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (872, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (873, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '430', '1180', '3', '97', 'Thadomal Shahani Engineering College', 'Computer', '65', '100', '0'), (874, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (875, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '157', '143', '300', '3', '8', 'Anna University', 'CSE', '76', '100', '0'), (876, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (877, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '149', '313', '4', '90', 'M. N. M Jain Engineering College - Affiliated to Anna University', 'Mechanical', '8.28', '10', '0'), (878, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (881, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (882, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (883, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '680', '460', '1140', '3.5', '98', 'Pune University', 'Electronics', '57', '100', '0'), (884, '1', 'Admit', 'MS', 'software engineering', 'Fall ', '2012', '690', '330', '1020', '3', '95', 'Pune University', 'Instrumentation & Contrl', '75.4', '100', '0'), (885, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '350', '1130', '3.5', '90', 'RGPV', 'CS', '77', '100', '0'), (886, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (887, '1', 'Admit', 'MS', 'Regulatory Affairs', 'Spring ', '2012', '620', '330', '950', '3', '91', 'JNTU', 'pharmacy', '0', '100', '0'), (888, '1', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (889, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '700', '330', '1030', '3.5', '103', 'JNTU', 'Computer Science', '60', '100', '0'), (890, '1', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (891, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (892, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (893, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '169', '142', '311', '3.5', '97', 'VIT University', 'ECE', '8.65', '10', '0'), (894, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (895, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', '98', 'MU', 'Instrumentation', '67', '100', '0'), (896, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (897, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '790', '590', '1380', '3', '102', 'Amity University', 'AIB', '8.2', '10', '0'), (898, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (899, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (900, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '158', '323', '3.5', 'None', 'VJTI', 'IT', '7', '10', '0'), (901, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '142', '300', '3', '89', 'K J Somaiya College of Engiineering', 'IT', '58', '100', '0'), (902, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '520', '1300', '4.5', '102', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.57', '10', '0'), (903, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '144', '168', '312', '3.5', '86', 'Tsinghua University', 'Automation', '3', '4', '0'), (905, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (906, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (907, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (908, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (909, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (911, '1', 'Admit', 'MS', 'CS', 'Spring ', '2014', '168', '156', '324', '3.5', 'None', 'ANITS', 'CSE', '7.6', '10', '0'), (912, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '97', 'SASTRA', 'CS', '7.67', '10', '0'), (913, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (914, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '4', '105', 'Shri U. V. Patel College of Engineering Ganpat University', 'Computer Engineering', '73', '100', '0'), (915, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (916, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (917, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '4', '103', 'Pune University', 'Computer Science', '70', '100', '0'), (918, '1', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (919, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '154', '142', '296', '3.5', '90', 'Gogte Institute of Technology', 'Mechanical Engineering', '67.79', '100', '0'), (920, '1', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '660', '420', '1080', '3', '91', 'Anna University', 'ECE', '77', '100', '0'), (921, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '158', '318', '3.5', '94', 'MIT', '0', '6.4', '10', '60'), (922, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (923, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '4.5', '111', 'University of Mumbai', 'Computer Engineering', '70.5', '100', '28'), (924, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (925, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (926, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '0'), (927, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (928, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '3.5', '102', 'Uttarakhand Technical University', 'Computer Science', '64.9', '100', '48'), (929, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '160', '144', '304', '2.5', '86', 'Anna University', 'ECE', '0', '0', '0'), (930, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (932, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (933, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '103', 'MU', 'Computer Science', '62', '100', '0'), (934, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3.5', '99', 'MU', 'Computers', '65', '100', '0'), (935, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (936, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (937, '1', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '159', '323', '4', 'None', 'Pune University', 'Computer Engineering', '62', '100', '36'), (938, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '520', '1270', '4', '109', 'West Bengal University Of Technology', 'Electrical Engineering', '8.6', '10', '0'), (939, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (941, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '710', '600', '1310', '3', '97', 'VIT Pune', 'Computer Science', '65', '100', '0'), (942, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (943, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '410', '1160', '3.5', '102', 'Sri Ram Engineering College', 'Electronics and Communications', '62.5', '100', '0'), (944, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2010', '750', '510', '1260', '4.5', '109', 'COEP', 'Production', '7.53', '10', '0'), (945, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (946, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (947, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2012', '760', '390', '1150', '3', '99', 'BITS Pilani', 'Pharmacy', '7.82', '10', '0'), (948, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (949, '1', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (950, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '630', '1380', '4', '111', 'PICT', 'Computer Science', '3.25', '4', '0'), (951, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (952, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (953, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'Anna University', 'CSE', '9.09', '10', '0'), (954, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (955, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '4', '106', 'VTU', 'ECE', '68.5', '100', '0'), (956, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (957, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (958, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '159', '317', '4', '114', 'VTU', 'ECE', '63', '100', '0'), (959, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '141', '297', '2.5', '80', 'Amrita School of Engineering', 'Electrical And Electronics', '7.6', '10', '18'), (960, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', '4', '115', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (961, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '730', '1530', 'None', 'None', 'NIT Calicut', 'CSE', '7.88', '10', '0'), (962, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '700', '510', '1210', '4', '103', 'Goa University', 'Mechanical', '63', '100', '0'), (963, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (964, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (965, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (966, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (967, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '730', '570', '1300', '4', '106', 'D J Sanghvi', 'Biomedical', '0', '0', '0'), (968, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (969, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '101', 'BIT Mesra', 'Computer Science', '77.7', '100', '0'), (970, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (971, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2015', '154', '145', '299', '3.5', '106', 'University of Mumbai', 'Biotechnology', '66.5', '100', '0'), (972, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (973, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (974, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (975, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '167', '146', '313', '3.5', '104', 'RGTU', 'CS', '79', '100', '0'), (976, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (977, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2013', '159', '145', '304', '3.5', '95', 'University of Mumbai', 'Information Technology', '57', '100', '0'), (978, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (979, '1', 'Admit', 'MS', 'Project Management', 'Fall ', '2014', '145', '149', '294', '4', '102', 'MMCOE', 'Computer Engineering', '67', '100', '36'), (980, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4', 'None', 'MSIT', 'IT', '74', '100', '0'), (981, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (982, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (983, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '4', '96', 'Institute of Technical Education and Research', 'Computer Science', '8.54', '10', '0'), (984, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (985, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (986, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (987, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '580', '1380', '3.5', '95', 'Manipal Institue of Technology', 'ECE', '6.93', '10', '0'), (988, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (989, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '152', '315', '3.5', '100', 'SASTRA', 'Information Technology', '7.97', '10', '0'), (990, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', 'None', 'CoE Trivandrum', 'Computer Science', '7.43', '10', '0'), (992, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '152', '308', 'None', '104', 'MU', 'Mechanical Engineering', '64', '100', '0'), (994, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '2.5', '99', 'COEP', 'Computer Engineering', '6', '10', '30'), (995, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (996, '1', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2013', '156', '145', '301', '3.5', 'None', 'MU', 'electronics', '62.17', '100', '0'), (997, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Engineering', '67.63', '100', '0'), (998, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (999, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (1000, '1', 'Admit', 'MS', 'Computer Systems Engineering', 'Fall ', '2011', '690', '610', '1300', '4', '97', 'None', '0', '0', '0', '0'), (1001, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (1002, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '161', '142', '303', '2.5', '102', 'Coimbatore Insitute of Technology', 'Information Technology', '8.39', '10', '0'), (1003, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '164', '330', '3', '105', 'COEP', 'I.T.', '7.98', '10', '0'), (1004, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '144', '301', '3', '85', 'MU', 'Information Technology', '65', '100', '44'), (1006, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '159', '149', '308', '4', '108', 'VNR VJIET', 'INFORMATION TECHNOLOGY', '75.85', '100', '0'), (1007, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (1009, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '370', '1100', '3', '95', 'VIT', 'Btech Biotechnology', '7.89', '10', '0'), (1010, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '3', '100', 'Nirma Institute of Technology', 'Computer Engineering', '8.34', '10', '0'), (1011, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (1012, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (1013, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (1014, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '3.5', '108', 'S.P.I.T.', 'Electronics', '74.4', '100', '0'), (1015, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (1016, '1', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (1017, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (1018, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (1019, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '750', '700', '1450', '4', '101', 'MSRIT', 'MECHANICAL', '8.25', '10', '0'), (1020, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (1021, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (1022, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (1023, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (1024, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1025, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '680', '340', '1020', '3.5', '105', 'MU', 'Computer Engg', '62', '100', '0'), (1026, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '420', '1120', '3', '96', 'VTU', 'Information Science', '71.5', '100', '0'), (1027, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (1028, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '144', '306', '3', '85', 'BITS Goa', 'M.SC Economics+B.E.Computerscience', '0', '0', '48'), (1029, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (1030, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '108', 'IPEC', 'IT', '67.4', '100', '0'), (1031, '1', 'Admit', 'MS', 'pharmacy', 'Fall ', '2011', '640', '320', '960', '3.5', '102', 'Gujarat Technological University', 'pharmacy', '0', '0', '0'), (1032, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3.5', '110', 'Rajagiri School of Engineering and Technology', 'IT', '80', '100', '48'), (1033, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '560', '1350', '3', '94', 'BIT Durg', 'CSE', '7.75', '10', '0'), (1034, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '3', '98', 'Nagpur University', '0', '57', '100', '0'), (1035, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (1036, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (1037, '1', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (1038, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (1039, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '148', '310', '3', '94', 'JNTU', 'Computer Science', '63.6', '100', '0'), (1040, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (1041, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '158', '147', '305', '3.5', '103', 'Kumaun University', 'IT', '79.3', '100', '0'), (1042, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (1043, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '580', '1310', '3.5', '101', 'P.V.P.P.C.O.E. (Mumbai University)', 'Information Technology (I.T.)', '70.2', '100', '0'), (1044, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '107', 'MU', 'Production Engineering', '58', '100', '0'), (1045, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (1046, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1047, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (1049, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '140', '300', '3', '91', 'University of Mumbai', 'EXTC', '64', '100', '36'), (1050, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3', '96', 'Pune University', 'Computer Science', '74.5', '100', '0'), (1051, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '158', '150', '308', '4.5', '101', 'MU', 'Electronics', '58.23', '4', '0'), (1052, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '146', '306', '3.5', 'None', 'Vishwakarma Institute of Technology', 'Computer', '8.7', '10', '0'), (1053, '1', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (1054, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (1055, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (1056, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (1057, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '740', '630', '1370', '3', '102', 'Vardhaman', 'IT', '67.3', '100', '0'), (1058, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (1059, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '151', '315', '3', '109', 'R.G.P.V.', 'EC', '75.6', '100', '20'), (1060, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (1061, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (1062, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (1063, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '152', '315', '4', '107', 'SSN College of Engineering', 'CSE', '72', '100', '0'), (1064, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (1065, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '490', '1280', '4', '115', 'Goa University', 'Electronics and Telcommunication', '4', '100', '0'), (1066, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (1067, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (1068, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '101', "Vidyavardhini's COE & Tech", 'IT', '71.12', '100', '0'), (1069, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '155', '143', '298', '3', '96', 'VIT University', 'COMPUTER SCIENCE', '8.38', '10', '0'), (1070, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '157', '316', '4', '110', 'Sardar Patel College of Engineering', 'Computer', '73.4', '100', '30'), (1071, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (1072, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '152', '312', '4', '112', 'DDIT', 'Computer Engineering', '7.21', '10', '12'), (1073, '1', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '156', '317', '3.5', '99', 'Sinhgad College of Engineering', 'Computer Engineering', '63.17', '100', '0'), (1074, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (1075, '1', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2011', '800', '550', '1350', '4', '96', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1076, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (1077, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (1078, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '370', '1160', '3.5', '87', 'Sri Sairam Engineering College', 'ECE', '76', '100', '0'), (1079, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '156', '315', '3.5', '110', 'Pune University', 'Computer', '67', '100', '0'), (1080, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '490', '1280', '4', '247', 'MREC', 'CS', '79', '100', '0'), (1081, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '147', '307', '3.5', '104', 'MU', 'Information Technology', '58.36', '100', '0'), (1082, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (1083, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '154', '310', '3.5', '113', 'VTU', 'ISE', '74.66', '100', '0'), (1084, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (1085, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '370', '1100', '3', '106', 'LNCT', 'EC', '0', '0', '0'), (1086, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '790', '580', '1370', '3.5', 'None', 'Amity University', 'ECE', '7.01', '10', '0'), (1087, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '160', '319', '3.5', '108', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (1088, '1', 'Admit', 'MS', 'MEM', 'Fall ', '2014', '159', '143', '302', '3', 'None', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics', '6.7', '10', '0'), (1089, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '530', '1280', '3.5', '113', 'Amity University', 'Electronics & Communication', '7', '10', '0'), (1090, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '410', '1190', '3.5', '110', 'NMIMS', 'Electronics', '3.2', '4', '0'), (1091, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (1092, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '710', '320', '1030', '3.5', '85', 'Punjab Technical University', 'CSE', '75', '100', '0'), (1094, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '99', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication Engineering', '69', '100', '15'), (1095, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '99', 'SNDT', 'I.T', '3.73', '4', '24'), (1096, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '157', '315', '3.5', '114', 'VTU', 'Information Science', '68', '100', '0'), (1097, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (1098, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (1099, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '150', '314', '3.5', '105', 'Galgotias College Of Engineering And Technology', 'Electronics and Communication', '69', '100', '0'), (1100, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '99', 'Jaypee Institute of Information Technology', 'Department of Computer Science and ICT', '77', '100', '24'), (1101, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (1102, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (1103, '1', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '157', '149', '306', 'None', '102', 'NCET Bangalore', 'Civil Engineering', '65', '100', '0'), (1104, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '144', '311', '3.5', '93', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.16', '10', '0'), (1105, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (1106, '1', 'Admit', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (1107, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (1108, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (1109, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (1110, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (1113, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1114, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '151', '151', '302', '3.5', '108', 'VTU', 'Computer Science and Engineering', '68.8', '100', '0'), (1115, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (1116, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '630', '590', '1220', 'None', 'None', 'Thiagarajar College of engineering', 'ECE', '7.9', '10', '0'), (1117, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (1118, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (1119, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '144', '311', '4', '111', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73.8', '100', '0'), (1120, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '166', '155', '321', 'None', '103', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.75', '10', '0'), (1121, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '152', '308', '4.5', '107', 'University of Pune', 'Information technology', '7.77', '10', '0'), (1122, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (1123, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '142', '301', '3', '93', 'Ramrao Adik Institute of Technology', 'Information Technology', '3.2', '4', '54'), (1124, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (1125, '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2013', '163', '147', '310', '3.5', '101', 'VIT', 'electronics and communication', '3.68', '4', '0'), (1126, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1127, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (1128, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (1129, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (1130, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '103', 'VTU', 'CS', '74.3', '100', '0'), (1131, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (1132, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '162', '328', '4', '115', 'BIT Mesra', 'Computer Science', '7.31', '100', '34'), (1133, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (1134, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (1135, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (1136, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '650', '1450', '4.5', '300', 'MU', 'Comp Engg', '62', '100', '0'), (1137, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '570', '1360', '3', '108', 'St Martins engineering college', 'CSE', '72', '100', '0'), (1138, '1', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (1139, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '152', '310', '3', '101', 'JNTU', 'CSE', '76.4', '100', '19'), (1140, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (1141, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', 'None', 'VTU', 'CSE', '81.5', '100', '0'), (1142, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '155', '319', '4.5', '102', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.7', '10', '0'), (1144, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (1145, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '101', 'mgit', 'it', '77.2', '100', '0'), (1146, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'PVP Siddhartha Inst. of Tech', 'CSE', '74.41', '100', '0'), (1147, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2014', '150', '153', '303', '2.5', 'None', 'JNTU', 'b.pharmacy', '70.1', '100', '0'), (1148, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (1149, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (1150, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '164', '149', '313', '3.5', '103', 'CBIT', 'ECE', '83', '100', '0'), (1151, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (1152, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '109', 'GITAM', 'CSE', '8.97', '10', '0'), (1154, '1', 'Admit', 'MS', 'pharmaceutics', 'Fall ', '2012', '740', '480', '1220', '3.5', '97', 'BITS Pilani', 'Pharmacy and health sciences', '8.26', '10', '0'), (1155, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (1156, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '2.5', '98', 'UPTU', 'Computer Science & Tech', '8', '10', '0'), (1157, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '300', '1100', '3', 'None', 'Sreenidhi Institute of Science & Technology', 'EEE', '73.2', '100', '0'), (1158, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'D J Sanghvi', 'Computers', '65.5', '100', '0'), (1159, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '144', '300', '3', '88', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '72', '100', '0'), (1160, '1', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (1161, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '152', '144', '296', '3.5', '95', 'NIT Warangal', 'Computer Science', '8.4', '10', '0'), (1162, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '159', '319', '4', '115', 'NIT Raipur', 'IT', '8.43', '10', '0'), (1163, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '148', '312', '4', '112', 'Anna University', 'EE', '7.36', '10', '0'), (1164, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '510', '1240', '4', '104', "SLC's institute of Engg and Tech affiliated to JNTU", 'CSE', '72', '100', '0'), (1165, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (1167, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '144', '302', 'None', '98', 'West Bengal University Of Technology', 'Electronics & Instrumentation', '8.25', '10', '0'), (1168, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '155', '145', '300', '3', '100', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.05', '10', '67'), (1169, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '151', '314', '3.5', '109', 'JNTU', 'Mechanical', '63.4', '100', '0'), (1170, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '4', '84', 'None', 'Mathematics', '76', '100', '0'), (1171, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (1173, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (1174, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (1175, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (1176, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (1177, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '147', '306', '3.5', '104', 'Coimbatore Insitute of Technology', 'M. Sc. Software Engineering(5 Year Integrated Course)', '74.11', '100', '0'), (1178, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (1179, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (1180, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (1181, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (1182, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '106', 'University of Pune', 'IT', '69', '100', '0'), (1183, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '104', 'PICT', 'Mechanical', '60', '100', '0'), (1184, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3.5', '97', 'PICT', 'IT', '3.78', '4', '0'), (1185, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (1187, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '111', 'NIT Silchar', 'Computer Science and Engineering', '8.17', '10', '0'), (1188, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (1189, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '147', '317', '3.5', '105', 'YMCA', 'Information Technology', '8.81', '10', '24'), (1190, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (1191, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '152', '142', '294', '3', '98', 'MU', 'Information Technology', '67', '100', '0'), (1192, '1', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', '156', '158', '314', '3.5', '101', 'D Y Patil College of Engineering', 'Biotechnology', '68', '100', '0'), (1193, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (1194, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '770', '1540', '3.5', '280', 'VTU', 'Computer Science', '78', '100', '0'), (1195, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'MU', 'Computer Engineering', '68.57', '100', '0'), (1196, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (1197, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '750', '390', '1140', '3', '99', 'None', '0', '0', '0', '0'), (1198, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (1199, '1', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '96', 'IIT Bombay', 'Civil Engineering', '7.37', '10', '0'), (1200, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (1201, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (1202, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '151', '307', '3.5', '105', 'VTU', 'CSE', '67', '100', '0'), (1203, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '105', 'Punjab Technical University', 'Computer Science', '72.5', '100', '0'), (1204, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (1205, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'UPTU', 'electronics and Communication', '7.62', '10', '0'), (1206, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (1207, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (1208, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (1209, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (1210, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (1211, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '152', '313', '3.5', 'None', 'MU', 'ExTC', '62', '100', '31'), (1212, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '790', '490', '1280', '4', '109', 'MU', 'Information Technology', '67', '100', '33'), (1213, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (1214, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (1215, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '159', '322', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (1216, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '670', '1430', '4', '116', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (1217, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (1218, '1', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '470', '1240', '3', '102', 'Sir MVIT', 'Information Science', '75.89', '100', '0'), (1219, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (1220, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '610', '1390', '4.5', '297', 'G.G.S.I.P. U', 'Computer Science', '82', '100', '0'), (1221, '1', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '680', '600', '1280', '4', '108', 'Bharati Vidyapeeth', 'Pharmacy', '71', '100', '0'), (1222, '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1223, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (1224, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '760', '330', '1090', '3', '91', 'Fr.CRCE', 'Computer Engineering', '70.42', '100', '0'), (1225, '1', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (1226, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (1227, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (1228, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (1229, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '145', '303', '3.5', '100', 'MU', 'Computer', '70', '100', '0'), (1230, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '2.5', '103', 'J.B. Institute of Engg & Tech(Affliated to JNTU)', 'Computer Science', '74.9', '100', '0'), (1231, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '660', '410', '1070', '3', '97', 'Sir MVIT', 'CS', '68.32', '100', '0'), (1232, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '350', '1150', '3.5', 'None', 'JNTU', 'electronics and Instrumentation', '0', '0', '0'), (1233, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (1234, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (1235, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '3.5', '98', 'Sri Venkateswara College of Engineering', 'Computer Science', '6.59', '10', '0'), (1236, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '94', 'Atharva College', 'COMPUTER ENGINEERING', '3.71', '4', '0'), (1237, '1', 'Admit', 'MS', 'Finance', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Iowa State University', 'Economics and Finance', '3.22', '4', '0'), (1238, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (1239, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3.5', '107', 'VTU', 'Computer Science', '74.3', '100', '0'), (1240, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '460', '1180', '2.5', '84', 'RCET bhilai', 'electrical', '7.2', '100', '0'), (1241, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '147', '310', '3.5', '110', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '8.1', '10', '11'), (1242, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '96', 'JNTU', 'ECE', '71.35', '100', '0'), (1243, '1', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (1244, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (1245, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '750', '1550', '5', '290', 'SPCE', 'CE', '63', '100', '0'), (1246, '1', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '165', '141', '306', '4', '104', 'SSN College of Engineering', 'ECE', '85', '100', '0'), (1247, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (1248, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (1249, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (1250, '1', 'Admit', 'MS', 'medicinal chemistry', 'Fall ', '2014', '155', '158', '313', '4', '113', 'MU', 'Pharmacy', '57.5', '100', '24'), (1251, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '155', '150', '305', '3.5', '111', 'Anna University', 'Chemical Engg', '9', '10', '36'), (1252, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (1253, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (1254, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (1255, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (1256, '1', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2015', '154', '145', '299', '3.5', '102', 'Kurukshetra University', 'Electronics and Communication', '68', '100', '0'), (1257, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '630', '1410', '4', '107', 'MU', 'E & TC', '66', '100', '0'), (1258, '1', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '157', '151', '308', '4', '102', 'MU', 'Computer Engineering', '64', '100', '0'), (1259, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '150', '311', '3', '111', 'COEP', 'Mechanical', '6.4', '10', '0'), (1260, '1', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (1261, '1', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (1262, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '146', '310', '3.5', '101', 'GTU', 'Computer Enginnering', '7.77', '10', '0'), (1263, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (1264, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (1265, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (1266, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3.5', '111', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '73', '100', '0'), (1267, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (1268, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (1269, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '4', '105', 'UPTU', 'Computer Science', '3.2', '4', '0'), (1270, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (1271, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (1273, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', 'None', '308', 'MU', 'Information technology', '66', '100', '0'), (1274, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', 'None', 'Model Engineering College', 'Computer Science', '74', '100', '36'), (1275, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (1276, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (1277, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3', '101', 'B M S College of Engineering', 'Electronics and Communications', '77', '100', '0'), (1278, '1', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (1279, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '103', 'Dr. AIT VTU', 'Computer Science Engineering', '71.15', '100', '0'), (1280, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (1281, '1', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1282, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (1283, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3', '104', 'R V College of Engineering', 'Electronics and Communication', '8.84', '10', '0'), (1284, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '150', '311', '3.5', 'None', 'Datta Meghe College of Engineering', 'Computer Science and Engineering', '57', '100', '16'), (1285, '1', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '156', '316', '3.5', '7', 'Amrita School of Engineering', 'CSE', '2.5', '4', '0'), (1286, '1', 'Admit', 'MS', 'energy', 'Fall ', '2014', '700', '430', '1130', '3', '7', 'Anna University', 'EEE', '8.75', '100', '0'), (1287, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (1288, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (1289, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '167', '333', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '76.7', '100', '0'), (1290, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (1291, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '700', '560', '1260', '4.5', '100', 'VTU', 'ece', '66', '100', '0'), (1292, '1', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (1293, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (1294, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (1295, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '2.5', '101', 'CITM indore', 'computer science', '66.13', '100', '0'), (1296, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '152', '313', '3.5', '102', 'MU', 'EXTC', '75', '100', '0'), (1298, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '95', 'Nirma Institute of Technology', 'Information Technology', '8.46', '10', '0'), (1299, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (1300, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '101', 'sri krishna devaraya university', 'CSE', '7.6', '10', '0'), (1301, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (1302, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '146', '299', '3', '96', 'SRM', 'Mechanical Engineering', '8.2', '10', '0'), (1303, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (1304, '1', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (1305, '1', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (1306, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (1307, '1', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '161', '141', '302', '3', '102', 'Inderprastha Engineering College', 'Electronics & Communication', '70', '100', '0'), (1308, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (1309, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '3.5', '97', 'CEG', 'M.Sc(5 year Integrated)Information Technology', '8.52', '10', '0'), (1310, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '147', '309', '3', '100', 'Rajasthan Technical University', 'Computer Science', '75.3', '100', '0'), (1311, '1', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (1312, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '165', '332', '4.5', '113', "St Joseph's College of Engineering", 'Electrical and Electronics Engineering', '7.89', '10', '14'), (1313, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '470', '1270', '3', '101', 'Northeastern', 'TSM', '3.33', '4', '0'), (1314, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (1315, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '168', '156', '324', '3.5', '112', 'Chitkara University', 'Computer Science Engineering', '7.67', '10', '0'), (1316, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '147', '312', '3.5', '312', 'JNTU', 'CSE', '71', '100', '0'), (1317, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (1319, '1', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (1320, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '740', '440', '1180', '2', '91', 'VESIT', 'CS', '70', '100', '0'), (1321, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (1322, '1', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2007', '780', '410', '1190', '3.5', '280', 'SASTRA', 'ECE', '7', '10', '0'), (1324, '1', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (1325, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '161', '153', '314', '3', '104', 'None', 'Computer Science', '7.67', '10', '0'), (1326, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '147', '309', '4', '99', 'Pune University', 'Computer', '74', '100', '12'), (1327, '1', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (1328, '1', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '170', '150', '320', '3', '104', 'CVSR/ JNTU-Hyderabad', 'CSE', '72', '100', '0'), (1329, '1', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '153', '312', '3.5', '109', 'None', '0', '0', '0', '0'), (1330, '1', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '790', '730', '1520', '5', 'None', 'VTU', 'Biotechnology', '79', '100', '0'), (1331, '1', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (1332, '1', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '4.5', '110', 'Maharishi Dayanand University', 'Computer Science', '66', '100', '0'), (1333, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '145', '304', '3.5', '99', 'JNTU', 'Computer Science and Engineering', '75.8', '100', '22'), (1334, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (1335, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (1336, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (1337, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (1338, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '146', '309', '3', '101', 'MU', 'Computer Engineering', '58', '100', '0'), (1339, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '4', '113', 'VTU', 'CSE', '73', '100', '0'), (1340, '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (1341, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (1342, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '105', 'MGIT - JNTUH', 'EEE', '73', '100', '0'), (1343, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (1344, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (1345, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '154', '144', '298', '3', 'None', 'Rajasthan Technical University', 'Computer Engineering', '65', '100', '0'), (1346, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '330', '1120', '3.5', '85', 'MU', 'Computer', '63.5', '100', '0'), (1347, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (1348, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (1349, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (1350, '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '291', '139', '430', '3', '80', 'University of Mumbai', 'Information Technology', '54', '100', '0'), (1351, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (1352, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '159', '320', '3', '116', 'MU', 'Computer Engineering', '61', '100', '0'), (1353, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (1354, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (1355, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (1357, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (1358, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (1359, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '520', '1310', 'None', 'None', 'Atharva College', 'IT', '69', '100', '0'), (1360, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '153', '314', '3', '101', 'Nagpur University', 'Electronics Engineering', '76', '100', '0'), (1361, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '3', '104', 'JUET', 'CSE', '6.9', '10', '0'), (1362, '1', 'Reject', 'MS', 'Electronics and electrical engineering', 'Spring ', '2013', '161', '144', '305', '3', '84', 'American International University', 'Electrical & Electronic Engineering', '3.04', '4', '0'), (1363, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '146', '303', '3.5', '90', 'Mepco Schlenk Engineering College', 'Computer Science', '75', '100', '0'), (1364, '1', 'Reject', 'MS', 'Computational Science', 'Fall ', '2015', '158', '145', '303', '3', '110', 'KLS Gogte Institute of Technology', 'Computer Science and Engineering', '79.12', '100', '31'), (1365, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (1366, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (1367, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (1368, '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (1369, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (1370, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (1371, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (1372, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '510', '1280', '4', '95', 'Goa University', 'Electronics and Telecommunication', '72', '100', '0'), (1373, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '4', '104', 'K J Somaiya College of Engiineering', 'COMPS', '65', '100', '0'), (1374, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (1375, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '540', '1340', '3.5', '103', 'VNIT Nagpur', 'ECE', '8.22', '10', '0'), (1376, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '148', '310', '3', '100', 'UPTU', 'Computer Science', '67', '100', '0'), (1377, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (1378, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (1379, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (1380, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (1381, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '490', '1280', '4', '103', 'MU', 'IT', '67', '100', '0'), (1382, '1', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (1383, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '97', 'Kurukshetra University', 'information technology', '71', '100', '0'), (1384, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (1385, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (1386, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '158', '156', '314', '3.5', '109', 'SAKEC University of Mumbai', 'Electronics Engineering', '60.22', '100', '0'), (1387, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (1388, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (1389, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (1390, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (1391, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (1392, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (1393, '1', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '165', '151', '316', '2.5', '95', 'UPTU', 'ME + MBA', '64.58', '100', '0'), (1394, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (1395, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '690', '570', '1260', '2.5', '101', 'Pune University', 'Computer Science', '55', '100', '0'), (1396, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2103', '152', '144', '296', '3', '88', 'VTU', 'computer science', '78', '100', '0'), (1397, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '153', '148', '301', 'None', 'None', 'Pune University', 'Computer Science', '59', '100', '0'), (1398, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (1399, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '3', '101', 'Pune University', 'Electronics and communication', '65', '100', '0'), (1400, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (1401, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '2.5', '84', 'NIT Allahabad', 'Information Technology', '6.89', '10', '0'), (1402, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '4.5', '112', 'Cochin University of Science and Technology', 'Computer Science', '66.35', '100', '34'), (1403, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (1404, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (1405, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (1406, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (1407, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (1408, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '140', '305', '3', '83', 'GTU', 'ECE', '7.73', '10', '0'), (1409, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (1410, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (1411, '1', 'Reject', 'MS', 'Information technology management', 'Fall ', '2013', '161', '147', '308', '3', '93', 'R.G.P.V/Chamelidevi School Of Engineering', 'Electronics & Communication', '74.5', '100', '0'), (1412, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (1413, '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '161', '150', '311', '3', '95', 'MSRIT', 'Telecommunication', '75', '100', '0'), (1415, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (1416, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (1417, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (1418, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (1419, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '305', '149', '454', '3', 'None', 'Pune University', 'Computer Engineering', '3.8', '100', '0'), (1420, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (1421, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3', '101', 'University of Mumbai', 'Computer Engineering', '65.73', '100', '0'), (1422, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (1423, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3', '99', 'University of Pune', 'Computer Engg.', '58.46', '100', '0'), (1424, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '660', '380', '1040', '3', '91', 'Pune University', 'Computer and Information Technology', '64', '100', '0'), (1425, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '153', '152', '305', '2', '91', 'IIPS DAVV', 'Mtech(IT)', '82', '100', '0'), (1426, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '620', '1410', '4.5', '287', 'MU', 'Elec and Telecom', '67', '100', '0'), (1427, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (1428, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '159', '146', '305', '2.5', '92', 'Bangalore Institute of Technology', 'Computer Science', '81', '100', '0'), (1429, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (1430, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (1431, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (1432, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (1433, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (1434, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '690', '620', '1310', '3', '96', 'University of Rajasthan', 'Mechanical Engineering', '70.5', '100', '0'), (1435, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (1436, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (1437, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (1438, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '161', '145', '306', '3', '102', 'Sri Manakula Vinayagar Engineering College', 'Electrical and Electronics Engineering', '8.53', '10', '0'), (1439, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '144', '299', '3', '84', 'Anna University', 'Computer science and engineering', '76', '100', '0'), (1440, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '800', '580', '1380', '4', '115', 'MU', 'Computers', '53.95', '100', '0'), (1441, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '2.5', '90', 'Pune University', 'Computerscience', '56', '100', '44'), (1442, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (1443, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (1444, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (1445, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '540', '1250', '3', '105', 'UPTU', 'Electronics & Communication', '65.2', '100', '0'), (1446, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '530', '1310', '3', '93', 'PESIT', 'Information Science', '65', '100', '0'), (1447, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '164', '147', '311', '4.5', '95', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '5.6', '10', '0'), (1448, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (1449, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (1450, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (1451, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '110', 'Sri Venkateswara College of Engineering', 'ECE', '76', '100', '0'), (1452, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (1453, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (1454, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '660', '460', '1120', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics Engineering', '55', '100', '0'), (1455, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3.5', '102', 'RAIT', 'Computer Engg.', '68.2', '100', '0'), (1456, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3', '104', 'VIIT', 'computer engineering', '55', '100', '0'), (1457, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '430', '1210', '3.5', '103', 'Rajiv Gandhi Institute Of Technology', 'Information Technology', '55', '100', '0'), (1458, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (1459, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3.5', '103', 'GITAM', 'IT', '67', '100', '0'), (1460, '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (1461, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '146', '306', '2.5', 'None', "St Joseph's College of Engineering", 'Mechanical', '8.32', '10', '8'), (1462, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (1463, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (1464, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '156', '321', '4', '107', 'BVM Engineering College', '0', '7.96', '10', '0'), (1465, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (1466, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (1467, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (1468, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (1469, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '4', '100', 'Bangladesh University of Engineering & Technology', 'Computer Science', '3.91', '4', '0'), (1470, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '440', '1150', '3', '94', 'VTU', 'Electronics and Communication', '60.69', '100', '0'), (1471, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (1472, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (1474, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (1475, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3', '100', 'St Francis Institute of Technology - Mumbai Unversity', 'Electronics and telecommunication', '61.7', '100', '0'), (1476, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '161', '318', '4.5', '112', 'Pune University', 'Computer Engineering', '68.5', '100', '0'), (1477, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '450', '1210', '3', '96', 'Pune University', 'Computer Science', '59', '100', '0'), (1478, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '150', '151', '301', '3', '102', 'MU', 'computer', '64', '100', '0'), (1479, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (1480, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (1482, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (1483, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (1484, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (1485, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (1486, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '4', '103', 'Shivajirao S. Jondhale College of Engineering', 'Computer Engineering', '60', '100', '0'), (1488, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '151', '318', '4', '111', 'GGSIPU', 'MCA(Software Engineering)', '71', '100', '32'), (1489, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '145', '303', '3.5', 'None', 'University of Kerala', 'CSE', '79.8', '100', '0'), (1490, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (1491, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (1493, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '330', '1060', '3', '87', 'University of Mumbai', 'Electronics', '68', '100', '0'), (1494, '1', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (1495, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '3', '106', 'Sathyabama University', 'Electronics and telecommunication', '8.4', '10', '0'), (1496, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (1497, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (1498, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '350', '1050', '3', '105', 'MU', 'Computer Science', '54', '100', '0'), (1499, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (1500, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '143', '291', '4.5', '103', 'Pune University', 'IT', '67', '100', '0'), (1501, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '152', '313', '3', '104', 'Thapar University', 'Electronis and Instrumentation', '8.8', '10', '0'), (1502, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (1503, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (1504, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (1505, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '151', '312', '3', '88', 'I.E.T D.A.V.V.', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '66.45', '100', '0'), (1506, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (1507, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (1508, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '151', '311', '3', '101', 'VIT University', 'CSE', '8.56', '10', '24'), (1509, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (1510, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (1511, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (1512, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '560', '1350', '4', '106', 'Nagpur University', 'Electronics and Comm.', '75', '100', '0'), (1513, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (1514, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '108', 'VTU', 'Electronics & Communication', '71', '100', '36'), (1515, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '162', '325', '4', '8', 'Chhattisgarh Swami Vivekanand Technical Unveirsity', 'Computer Science and Engineering', '8.19', '10', '0'), (1516, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (1517, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (1518, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (1519, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '103', 'Ahmedabad Institute of Technology', 'Computer Engineering', '3.26', '4', '0'), (1520, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (1521, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (1522, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (1523, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '146', '304', '3', 'None', 'SNIST', '0', '68', '100', '54'), (1524, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (1525, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (1526, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (1527, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (1528, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (1529, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '98', 'NIT Allahabad', 'IT', '7.8', '10', '0'), (1530, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (1531, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (1532, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (1533, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (1534, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (1535, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', '3', '93', 'Vishwakarma Institute of Technology', 'Computer Science', '7.1', '10', '0'), (1536, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (1537, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (1538, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (1539, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '650', '530', '1180', '3', '104', 'MU', 'Information technology', '53', '100', '0'), (1540, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '160', '312', '4', '119', 'Shivaji University', 'Electronics & Telecommunication', '3.02', '4', '0'), (1541, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '97', 'Pune University', 'Electronic and Telecommunication', '61', '100', '44'), (1542, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (1543, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '42', '24', '66', '4', '96', 'MU', 'Computer science', '62.3', '100', '0'), (1544, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (1545, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (1546, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (1547, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (1548, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (1549, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (1550, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (1551, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '460', '1170', '3', '100', 'University of Pune', 'Compurter Engineering', '60', '100', '0'), (1552, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (1553, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (1554, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (1555, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (1556, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '149', '317', '3', '95', 'VNR VJIET', 'CSE', '67', '100', '0'), (1557, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '159', '149', '308', '3', '81', 'GTU', 'EC', '7.16', '100', '0'), (1558, '1', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '730', '530', '1260', '3.5', '99', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '55', '100', '0'), (1559, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '154', '144', '298', '3.5', '86', 'University of Pune', 'Information Technology', '63', '100', '0'), (1560, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', 'None', '104', 'Amrita School of Engineering', 'Electrical and Electronics', '6.7', '10', '45'), (1561, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'MU', 'IT', '57', '100', '0'), (1562, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '740', '620', '1360', '3.5', '117', 'Atria Institute of Technology', 'telecommunication', '63', '100', '0'), (1563, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '154', '318', '3', '113', 'Sapthagiri College of Engineering', 'Electronics and Communication', '69.14', '100', '0'), (1564, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Punjab Technical University', 'Computer Science Engineering', '71', '100', '0'), (1565, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Anna University', 'Electronics and Instrumentation Engg', '8.62', '10', '0'), (1566, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '700', '320', '1020', '2.5', '237', "VIDYAVARDHINI'S COLLEGE VASAI WEST MUMBAI UNIVERSITY", 'Computer Engg', '56', '100', '0'), (1567, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '157', '157', '314', '4.5', 'None', 'CEG', 'Computer Science and Engineering', '0', '0', '22'), (1569, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (1570, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (1571, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (1572, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3.5', '104', 'Pune University', 'Information Technology', '62.5', '100', '0'), (1573, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (1574, '1', 'Reject', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (1575, '1', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (1576, '1', 'Reject', 'MS', 'Entertainment technology-Animations and graphics', 'Fall ', '2013', '710', '570', '1280', '4', '106', 'Yadavrao Tasgaonkar Institute of Engineerig and Technology', 'Electronics and Telecommunication', '64.76', '100', '0'), (1577, '1', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (1578, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (1579, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (1580, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (1582, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (1583, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (1584, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (1585, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (1586, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (1587, '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '145', '139', '284', '2', '82', 'None', '0', '0', '0', '0'), (1588, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '800', '470', '1270', '4.5', '104', 'NIT (REC) Calicut India', 'Electronics and Communications Engineering', '61', '100', '0'), (1589, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (1590, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (1591, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (1592, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (1593, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (1594, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (1595, '1', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (1596, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (1597, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '4.5', '107', 'DBIT', 'Comp Engg', '60', '100', '0'), (1598, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (1599, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (1600, '1', 'Reject', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (1601, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (1602, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (1604, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '110', 'JNTU', 'Computer Science and Engineering', '63', '100', '60'), (1605, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '90', 'D J Sanghvi', 'EXTC', '72.85', '100', '0'), (1606, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (1607, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (1608, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (1609, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '4', '108', 'Sri Sairam Inst of Technology', 'Information Tech', '8.5', '10', '13'), (1610, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (1611, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (1612, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '550', '1270', '3.5', '108', 'Pune University', 'Computer Engineering', '56', '100', '0'), (1613, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '145', '299', '3.5', '93', 'The Oxford college of engineering (VTU))', 'Information Science', '67.33', '100', '0'), (1614, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '106', 'MU', 'Electronics and Telecommunication', '74.5', '100', '0'), (1615, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (1616, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (1617, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (1618, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (1619, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '400', '1160', '3', '102', 'VCET', 'Computers', '65', '100', '0'), (1620, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (1621, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (1622, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (1623, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (1624, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (1625, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '157', '310', '4.5', '114', 'BMSCE', 'Information Science', '7.49', '10', '6'), (1626, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '148', '303', 'None', '90', 'Gurunanak institute of tech', 'CSE', '79', '100', '13'), (1627, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '155', '313', '4', '118', 'GGSIPU', 'ECE', '74.6', '100', '0'), (1628, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (1629, '1', 'Reject', 'MS', 'software engineering', 'Spring ', '2014', '158', '142', '300', '3', '89', 'Pune University', 'Information Technology', '59', '100', '0'), (1630, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (1631, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1632, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (1633, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '320', '1020', '3.5', '90', 'SCOE Pune', 'Information Technology', '58', '100', '0'), (1634, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '150', '310', '4.5', '108', 'Manipal Institue of Technology', 'Computer Science', '7.4', '10', '0'), (1635, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (1636, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3', '97', 'DAVV', 'IIPS', '7.27', '10', '0'), (1637, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '2.5', 'None', 'University of Mumbai', 'Computer Engineering', '72.69', '100', '0'), (1638, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (1639, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (1640, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (1641, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '92', 'JNTU', 'computer science', '67.51', '100', '0'), (1642, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (1643, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '145', '302', '3.5', '92', 'None', 'ECE', '8.35', '10', '90'), (1645, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '630', '1400', '3.5', '105', 'MU', 'Electronics and Telecom', '55', '100', '0'), (1646, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (1647, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (1648, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '90', "BLDEA's CET", 'Information Science & Engineering', '72', '100', '0'), (1649, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (1650, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (1651, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (1652, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (1653, '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (1654, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (1655, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '145', '298', '4', '91', 'U.P.T.U', 'Electrical & Electronics', '71.16', '100', '0'), (1656, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (1657, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (1658, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (1659, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (1660, '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '161', '147', '308', '3', '80', 'MU', 'IT', '56.2', '100', '0'), (1661, '1', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '550', '1350', '3', '96', 'Thapar University', 'Electrical &Instrumenattion; Engineering', '6.44', '10', '0'), (1662, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (1663, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (1664, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '162', '145', '307', '3', '91', 'IIT BHU', 'Electrical Engineering', '6.54', '10', '0'), (1665, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (1667, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (1668, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (1669, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (1671, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (1672, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (1673, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (1674, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '103', 'PESIT', 'Computer Engineering', '0', '0', '0'), (1675, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (1676, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (1677, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '152', '304', '3.5', '102', 'University of Pune', 'Computer Engineering', '62.73', '100', '0'), (1678, '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (1679, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '550', '1310', '3', '112', 'MU', 'Electronics & Telecom', '71', '100', '0'), (1680, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (1681, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (1682, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (1683, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'University of Pune', 'Computer Science', '56', '100', '0'), (1684, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (1685, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (1686, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (1688, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '3.5', 'None', 'MU', 'Computer Engineering', '59', '100', '0'), (1689, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4.5', '108', 'VTU', 'Electronics and communication', '74.6', '100', '0'), (1690, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (1691, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (1692, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '114', 'KIIT', 'Electronics & Electrical Engg.', '9.32', '10', '0'), (1693, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '142', '301', '3.5', '94', 'MSRIT', 'Computer Science & Engineering', '7.14', '10', '0'), (1694, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (1695, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '164', '150', '314', '3.5', '101', 'TIT&Sc.;', 'Information Tech.', '71', '100', '0'), (1696, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (1697, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3', '106', 'MU', 'IT', '61', '100', '0'), (1700, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (1701, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (1702, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (1703, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (1704, '1', 'Reject', 'MS', 'Information Systems', 'Spring ', '2013', '138', '152', '290', '2', 'None', 'JNTU', 'cse', '71', '100', '0'), (1705, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (1707, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (1708, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (1709, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '700', '420', '1120', '3', 'None', 'MU', 'Computers', '69.18', '100', '24'), (1710, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '4.5', '110', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (1711, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (1712, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '155', '318', '4', '116', 'Jaypee Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (1713, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '108', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '71', '100', '6'), (1714, '1', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (1715, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (1716, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '310', '1040', '2.5', '91', 'Sri Ramakrishna Engineering College', 'Electronics and Communications Engineering', '8.61', '10', '0'), (1718, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (1719, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '158', '314', '4.5', '115', 'BITS Pilani', 'Computer Science', '7.58', '10', '0'), (1720, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '3', '103', 'RGTU', 'EC', '70.02', '100', '0'), (1722, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (1723, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '143', '300', '3.5', '102', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (1724, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (1725, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '97', 'NIT ALLAHABAD', 'Computer Science & Engg', '7.1', '10', '0'), (1726, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (1727, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '610', '580', '1190', '3', '102', 'None', 'CSE', '8.3', '10', '0'), (1728, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '144', '312', '3', '93', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '28'), (1729, '1', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (1730, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (1731, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (1732, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '155', '137', '292', '3', '101', 'PICT', 'Information Technology', '61.33', '100', '0'), (1733, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (1734, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '470', '1100', '3', '94', 'Pune University', 'Information Technology', '0', '0', '0'), (1735, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (1736, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1737, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1738, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2006', '800', '550', '1350', 'None', '290', 'Ramrao Adik Institute of Technology', 'EE', '0', '0', '0'), (1739, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '400', '1060', '3', '95', 'MU', 'IT', '66', '100', '0'), (1740, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (1741, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '3.5', '102', 'Amrita School of Engineering', 'Computer Science', '6.17', '10', '0'), (1742, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (1743, '1', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (1745, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '150', '317', '3.5', '93', 'ISM Dhanbad', 'Electronics Engg.', '7.88', '10', '0'), (1746, '1', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2012', '760', '320', '1080', '4.5', '96', 'JNTU', 'Computer Science', '62', '100', '0'), (1747, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (1748, '1', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (1749, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (1750, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (1751, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (1753, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (1754, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '102', 'Ajay Kumar Garg Engineering College', 'Computer Science & Engineering', '62.1', '100', '0'), (1755, '1', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (1756, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '410', '1170', '3', '104', 'None', '0', '70.5', '100', '0'), (1757, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '540', '1300', '3', '92', 'MDU', '0', '65', '100', '0'), (1758, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (1759, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (1760, '1', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (1761, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '149', '309', '2.5', '98', 'JNTU', 'CS', '70.79', '100', '55'), (1762, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (1763, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (1764, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '107', 'None', '0', '0', '0', '0'), (1765, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'Electronics and Telecommunication', '60.21', '100', '0'), (1766, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '150', '316', '4', '98', 'Nirma Institute of Technology', 'Electronics & Communication Section Electrical Department', '7.75', '10', '0'), (1767, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '740', '510', '1250', '3', '91', 'Kurukshetra University', 'IT', '77.1', '100', '0'), (1768, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2013', '157', '153', '310', '4', '105', 'RNSIT', 'Comp. Sci.', '70', '100', '0'), (1769, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (1770, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (1771, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '460', '1230', '3', '104', 'VTU', 'Electronics and Communication', '80', '100', '0'), (1772, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3.5', '105', 'R V College of Engineering', 'Information science', '8.12', '10', '19'), (1773, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '400', '1170', '3', '96', 'University of Mumbai', 'CMPN', '64', '100', '0'), (1774, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (1775, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '154', '317', '4', '111', 'DBIT', 'Mechanical Engineering', '56', '100', '0'), (1776, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '740', '410', '1150', '2.5', '273', 'MGM College of Engineering & Technology', 'Computer', '58', '100', '0'), (1777, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (1778, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institue of Technology', 'Electrical ad Electronics', '7.4', '10', '0'), (1779, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (1780, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', '111', 'Ramrao Adik Institute of Technology', 'Computers', '70', '100', '14'), (1781, '1', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '650', '560', '1210', '4', '104', 'University of Mumbai', 'Electronics & Telecommunications', '58', '100', '0'), (1782, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3', '86', 'Amity University', 'Computer Science & Engineering', '7.81', '10', '0'), (1783, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (1784, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '146', '303', '4', '98', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (1785, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (1786, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '150', '309', '3.5', '90', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (1787, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (1788, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '153', '309', '3.5', '87', 'GITAM', 'Mechanical Engineering', '7.12', '10', '32'), (1789, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (1790, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (1791, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '490', '1230', '3', '98', 'SIES Graduate School of Technology', 'computer', '60', '100', '0'), (1792, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (1793, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', 'None', 'None', 'MU', 'Computer', '63', '100', '0'), (1794, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (1795, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (1796, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3.5', '89', 'Army Institute of Technology', 'Computer Science', '65', '100', '0'), (1797, '1', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '163', '151', '314', 'None', '90', 'RVR & JC College of Engineering', 'ELECTRONICS&COMMUNICATION;', '83', '100', '0'), (1798, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '710', '590', '1300', '3', '90', 'Sir MVIT', 'ece', '84', '100', '0'), (1799, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (1800, '1', 'Reject', 'MS', 'Information Security', 'Spring ', '2016', '160', '145', '305', '2.5', '98', 'SVCE', 'CSE', '6.67', '10', '0'), (1801, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (1802, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (1803, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '168', '151', '319', '3', 'None', 'IIT Guwahati', 'EEE', '7.4', '100', '0'), (1804, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (1805, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (1806, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '144', '298', 'None', 'None', 'University of Mumbai', 'Computer Engineering', '59', '100', '24'), (1807, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (1808, '1', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (1809, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (1810, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (1811, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'YCCE', 'Electronics Engg', '63.5', '100', '0'), (1814, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '5', '101', 'MU', 'Computer Engineering', '60', '100', '0'), (1815, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (1816, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (1817, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (1818, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (1819, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (1820, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (1821, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (1822, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (1823, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '480', '1250', '3', '90', 'SJCE', 'Information science', '8.23', '10', '0'), (1824, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '107', 'SCOE Pune', 'Computer Science', '63', '100', '0'), (1825, '1', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '163', '146', '309', '2.5', '88', 'NIT Raipur', 'Electronics and Telecommunication', '7.65', '10', '0'), (1826, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (1827, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '480', '1230', '3', '97', 'VTU', 'ECE', '71', '100', '0'), (1828, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '3.5', '107', 'JNTU', 'CSE', '71', '100', '0'), (1830, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (1831, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'IET DAVV', 'IT', '75.62', '100', '0'), (1832, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '770', '530', '1300', '5', '280', 'MU', 'Computer Engineering', '55', '100', '0'), (1833, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (1836, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (1837, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (1838, '1', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '163', '148', '311', 'None', '83', 'indus institute', 'computer engineering', '8.62', '10', '0'), (1839, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '154', '324', '3', 'None', 'Jaypee Institute of Information Technology', 'computer science', '6.4', '100', '36'), (1840, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (1841, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '150', '142', '292', '3', '87', 'JNTU', 'ECE', '69', '100', '0'), (1842, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '3', '105', 'MU', 'Electronics and telecommunications', '54', '100', '0'), (1843, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '630', '490', '1120', '3', '86', 'PICT', 'CS', '0', '0', '0'), (1844, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (1845, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (1846, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (1847, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (1848, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (1849, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (1850, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (1851, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '145', '306', '3', '91', 'SVITS', 'Computer Science & Engineering', '67', '100', '0'), (1852, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '151', '318', '4', '99', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '8.6', '10', '12'), (1853, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (1854, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '139', '301', '3', '90', 'D J Sanghvi', 'IT', '63', '100', '0'), (1855, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (1856, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '3.5', '111', 'MU', 'Computer', '7', '100', '0'), (1857, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (1858, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '154', '310', 'None', '101', 'Pune University', 'Information Technology', '0', '0', '0'), (1859, '1', 'Reject', 'MS', 'Electronics and Communication', 'Spring', 'None', '161', '148', '309', '3', 'None', 'Anna University', 'Electronics and communication engineering', '77', '100', '0'), (1860, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (1861, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '152', '148', '300', '3.5', '104', 'Anna University', 'ECE', '70', '100', '0'), (1862, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (1863, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (1864, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '3.5', '111', 'University of Pune', 'Computer Engineering', '62', '100', '24'), (1865, '1', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '92', 'MU', 'Marine Engineering', '68.8', '100', '27'), (1866, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '161', '328', '4', '117', 'MU', 'B.E.I.T', '61.1', '100', '0'), (1867, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '640', '1400', '4', '110', 'Pune University', 'electronics', '54', '100', '0'), (1868, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (1869, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (1870, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (1871, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '4.5', '111', 'Pune University', 'Computer Science', '67', '100', '14'), (1872, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (1873, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (1874, '1', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (1875, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '154', '311', '3', '101', 'VTU', 'ECE', '69', '100', '0'), (1876, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3.5', '108', 'MU', 'Computer Science', '59.6', '100', '0'), (1877, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '162', '144', '306', '4', '104', 'D J Sanghvi', 'Computers', '78.58', '100', '0'), (1878, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (1879, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '600', '1380', '3.5', '91', 'VTU', 'ECE', '67', '100', '0'), (1880, '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '14', '156', '146', '302', '3', '106', 'U.I.T. rgpv', 'electronics and communication', '67.3', '100', '10'), (1881, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (1882, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (1884, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (1885, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '89', 'VTU', 'Electronics and Communication', '65', '100', '0'), (1886, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '143', '304', '3', '106', 'Notre Dame University Louaize', 'ECE', '3.62', '4', '0'), (1887, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (1888, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', 'None', '102', 'DIT Dehradun', 'CSE', '70', '100', '0'), (1889, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '590', '1310', '4', '99', 'Shri Ramdeobaba Engineering College', 'Electronics and Communication', '72', '100', '0'), (1890, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '91', 'P.V.P.I.T', 'E&TC;', '0', '0', '0'), (1891, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (1892, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (1893, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (1894, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (1895, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '105', 'SIES Graduate School of Technology', 'BE-Computer Engineering', '73.48', '100', '0'), (1896, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (1897, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (1898, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '103', 'RGPV', 'Electronics', '75', '100', '0'), (1899, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '145', '307', '3', '89', 'MU', 'Computer', '61', '100', '0'), (1900, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3.5', 'None', 'JNTU', 'CSE', '63', '100', '0'), (1901, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '760', '510', '1270', '4', '287', 'VIT', 'E.C.E', '9.07', '10', '0'), (1902, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (1903, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '155', '315', '3.5', '105', 'JNTU', 'ECE', '71', '100', '0'), (1904, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '360', '1090', '3', '85', 'Harcourt Butler Technological Institute', 'Computer Science', '65.44', '100', '0'), (1905, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (1907, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '154', '148', '302', '3', '85', 'SIT', 'Computer Sc. & Engg.', '60', '100', '0'), (1908, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '168', '151', '319', '4', '104', 'BITS Goa', 'Computer Science', '6.53', '10', '24'), (1909, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3.5', '101', 'Sinhgad College of Engineering', 'Computer', '57.28', '100', '0'), (1910, '1', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2014', '167', '151', '318', '3.5', '108', "St. Xavier's college Kolkata", 'Mathematics', '57.5', '100', '0'), (1911, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (1912, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (1913, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '690', '540', '1230', '4', '109', 'Anna University', 'ECE', '6.136', '10', '0'), (1915, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Computer engineering', '69.96', '100', '17'), (1916, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '3.5', '111', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '6.1', '10', '0'), (1917, '1', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'GITAM', 'CSE', '8.01', '10', '0'), (1918, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '530', '1290', '3', '80', 'MU', 'Electronics', '55', '100', '0'), (1919, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (1920, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (1921, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (1922, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (1923, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (1924, '1', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (1925, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '152', '306', '4.5', '115', 'MJCET', 'Computer Science', '74.6', '100', '0'), (1926, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (1927, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '151', '151', '302', '3.5', '105', 'West Bengal University Of Technology', 'Information Technology', '8.3', '10', '0'), (1928, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (1929, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (1930, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '4', '104', 'SIES Graduate School of Technology', 'Computer engg', '55', '100', '0'), (1931, '1', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (1932, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '580', '1330', '3.5', '101', 'None', '0', '0', '0', '0'), (1933, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Govt. Engineering College Barton Hill', 'Electronics and Communication', '6.8', '10', '69'), (1934, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '155', '319', '3.5', 'None', 'University of Pune', 'Production Engineering', '8.8', '10', '0'), (1935, '1', 'Reject', 'MS', 'CS', 'Fall ', '2014', '152', '141', '293', '3', 'None', 'Pune University', 'Information Technology', '60', '100', '0'), (1936, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (1937, '1', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (1938, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '146', '302', 'None', '86', 'Pune University', 'Information technology', '63', '100', '0'), (1939, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (1940, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (1941, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (1942, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '148', '141', '289', 'None', '90', 'None', '0', '0', '0', '0'), (1944, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '150', '317', '3', '92', 'VIT', 'ECE', '7.66', '10', '0'), (1945, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (1946, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '95', 'Amrita School of Engineering', 'IT', '7.05', '10', '46'), (1947, '1', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '162', '150', '312', 'None', '104', 'JNTU', 'Electronics and communication', '81.5', '100', '0'), (1948, '1', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (1949, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '157', '318', '4', '114', 'Xaviers', 'Computer Engg', '67', '100', '34'), (1950, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (1951, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '3.5', '107', 'FRCRCE', 'computers', '65', '100', '0'), (1952, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (1953, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '92', 'SCSVMV University', 'ECE', '7.09', '10', '0'), (1954, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4.5', '118', 'MU', 'Computer Engineering', '64.24', '100', '0'), (1955, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (1956, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (1957, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (1958, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '790', '530', '1320', '4', '113', 'Padre Conceicao College Of Engineering', 'Computer Engineering', '74.55', '100', '0'), (1961, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (1962, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (1963, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (1964, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (1965, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (1966, '1', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '157', '147', '304', 'None', '91', 'MU', 'Information Technology', '54', '100', '0'), (1968, '1', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (1969, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '320', '1080', '3', '89', 'Amrita School of Engineering', 'Computer Science', '7.03', '10', '0'), (1970, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3', '96', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '7.48', '10', '0'), (1971, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (1972, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (1973, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (1974, '1', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '162', '161', '323', '4', 'None', 'Atharva College', 'Electronics and Telecommunications', '58.81', '100', '0'), (1975, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (1976, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (1977, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '101', 'JNTU', 'ECE', '70', '100', '0'), (1978, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (1979, '1', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (1980, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (1981, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (1982, '1', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2012', '159', '140', '299', '3', '97', 'MU', 'Electronics', '59', '100', '0'), (1983, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (1984, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '147', '308', '3', '91', 'Anna University', 'CSE', '79', '100', '29'), (1985, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (1986, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '152', '311', '3', '102', 'University of Pune', 'information technology', '63', '100', '27'), (1987, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (1988, '1', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '2.5', '87', 'MSU FTE', 'CS', '3.94', '4', '0'), (1989, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (1991, '1', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (1992, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Biju Patnaik University of Technology', 'EEE', '7.2', '10', '36'), (1993, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (1994, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (1995, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (1996, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (1997, '1', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (1998, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '3', '101', 'University of Pune', 'Computer', '60', '100', '0'), (1999, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2000, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (2001, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '144', '304', '3', '87', 'RGPV', 'ECE', '75.37', '100', '0'), (2002, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (2003, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3.5', '102', 'UPTU', 'Computer Science', '69.84', '100', '20'), (2004, '1', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (2005, '1', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '145', '304', '2.5', 'None', 'Anna University', 'Mechanical', '0', '0', '24'), (2006, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '78', 'VTU', 'computer science', '59.1', '100', '0'), (2007, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (2008, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (2009, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (2010, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '144', '297', 'None', '86', 'Don Bosco Institute of Technology', 'Computers', '58', '100', '0'), (2011, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (2012, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (2013, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (2014, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (2015, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (2016, '1', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '610', '340', '950', '3', '98', 'SASTRA', 'Civil Engineering', '6.55', '10', '0'), (2017, '1', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (2018, '1', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3', '99', 'Amrita School of Engineering', 'Computer Science', '6.94', '10', '0'), (2019, '1', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (2020, '1', 'Reject', 'MS', 'Data Science', 'Fall', '2018', '165', '151', '316', '3', '105', 'NIT Surat', 'Computer Science', '7.35', '10', '2'), (2021, '1', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2017', '166', '152', '318', '3.5', '106', 'Indus university', 'Mechanical Engineering', '8.9', '10', '0'), (2022, '1', 'Admit', 'MS', 'Engineering Management', 'Fall', '2017', '155', '145', '300', '3', '94', 'Rayat and Bahra Institute of Engg and Tech', 'Computer Science', '81', '100', '0'), (2023, '1', 'Reject', 'MS', 'Engineering Management', 'Fall', '2019', '160', '140', '300', '3', '-1', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '5.97', '10', '0'), (2024, '1', 'Reject', 'MS', 'Electronics & Communication', 'Fall', '2013', '161', '148', '309', '3.5', '111', 'Manipal Institute of Tech', 'EEE', '7.4', '10', '0'), (2026, '4', 'Admit', 'MS', 'Information Systems', 'Fall', 'None', '710', '510', '1220', '3', '94', 'FJU', 'information management', '73', '100', '0'), (2027, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (2028, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '390', '1190', '4', '104', 'MU', 'Electronics and Telecommunications (EXTC)', '75', '100', '0'), (2029, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (2030, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '680', '1440', '4', '111', 'Fr CRIT Mumbai University', 'Mechanical Engineering', '54.6', '100', '0'), (2031, '4', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (2032, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (2033, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (2034, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '45', '29', '74', '4.5', 'None', 'Vasavi College of Engineering', 'electrical and electronics engg', '69', '100', '0'), (2035, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (2037, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '159', '324', '3.5', '107', 'Bangalore University', 'Mechanical', '69', '100', '0'), (2038, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '101', 'VTU', 'ECE', '77', '100', '0'), (2039, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (2040, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '149', '308', 'None', '97', 'VTU', 'Electrical and Electronics', '68', '100', '0'), (2041, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '1010', '410', '1420', '600', '273', 'Thadomal Shahani Engineering College', 'CE', '52', '100', '0'), (2044, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '159', '319', '4', '114', 'University of Manchester', 'EEE', '3.4', '4', '0'), (2047, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (2048, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '149', '310', '3', '99', 'VIT Pune', 'Electronics Engg', '66', '100', '36'), (2049, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (2050, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (2051, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '161', '326', '5', '112', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', '0', '7.4', '10', '0'), (2052, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2053, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '154', '314', '3', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'IT', '53', '100', '0'), (2054, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '157', '313', '3', '116', 'CMRIT', 'CSE', '62.4', '100', '0'), (2055, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (2056, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (2057, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (2058, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '151', '308', '4', '109', 'SFIT', 'IT', '54.56', '100', '0'), (2059, '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Chemical Engineering', '58', '100', '0'), (2060, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '590', '1320', '3.5', '106', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (2061, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3', '88', 'Anna University', 'COMPUTER SCIENCE', '82.5', '100', '0'), (2062, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (2063, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (2064, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (2065, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '157', '325', '4', '108', 'MU', 'Computer Engineering', '63', '100', '0'), (2066, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '500', '1220', '3.5', '117', 'VIT Pune', 'Electronics', '7', '10', '0'), (2067, '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (2068, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (2069, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '148', '309', '3', '104', 'C.R State College of Engineering Murthal', 'Bio-Medical', '70', '100', '37'), (2070, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (2071, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2016', '161', '149', '310', '3', '99', 'None', '0', '0', '0', '0'), (2072, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '710', '1510', '3', '280', 'University of Mumbai', 'Computer Engineering', '72', '100', '0'), (2073, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (2074, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '103', 'GGSIPU', 'Instrumentation and Control', '3.86', '100', '0'), (2076, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '730', '570', '1300', '3.5', '98', 'None', 'mechanical engg', '65', '100', '0'), (2077, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '153', '314', '4', 'None', 'Thapar University', 'Biotechnology and environmental Sciences', '7.36', '10', '0'), (2078, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '152', '311', '4', '105', 'Sardar Patel College of Engineering', 'Information Technology', '63', '100', '0'), (2079, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (2080, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (2081, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', 'None', 'Kathmandu University', 'Electrical and Electronics', '3.61', '4', '0'), (2082, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2012', '50', '35', '85', '4.5', '114', 'SKNCOE', 'Computer', '62', '100', '0'), (2083, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '154', '313', '4.5', '117', 'MU', 'Electronics and Telecommunications', '65', '100', '0'), (2084, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (2085, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '109', 'Nagpur University', 'IT', '68', '100', '0'), (2086, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (2087, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '670', '1440', '3', '114', 'Thakur College of Engineering and Technology', 'COMP SCI', '66.3', '100', '0'), (2088, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '400', '750', '1150', '3', '101', 'Sardar Patel College of Engineering', 'electrical', '65', '100', '0'), (2089, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (2090, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (2092, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (2093, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '111', 'Sardar Patel College of Engineering', 'Computer Engineering', '64.28', '100', '0'), (2094, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '780', '570', '1350', '3', '97', 'University Institute of Technology', 'Mechanical', '71', '100', '0'), (2096, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '690', '450', '1140', '4', '106', 'Valliammai Engineering College', 'CSE', '84.5', '100', '0'), (2097, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '103', 'VTU', 'IS&E;', '65', '100', '0'), (2098, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '4.5', '112', 'Bharathiar University', 'Electronics and Communication', '78', '100', '0'), (2099, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3', '108', 'Pune University', 'Information Technology', '57', '100', '0'), (2100, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', 'None', '670', '670', 'None', '110', 'None', '0', '0', '0', '0'), (2101, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (2102, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (2103, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4', '105', 'VTU', 'Computer Sciece', '71.3', '100', '42'), (2104, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '142', '304', '3', '98', 'VIT', 'Computer Science and Engineering', '8.35', '10', '0'), (2105, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (2106, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (2107, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (2108, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (2109, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2110, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '170', '150', '320', 'None', '106', 'Rajasthan Technical University', 'CSE', '70.125', '100', '0'), (2111, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '530', '1280', '3.5', '109', 'RGTU', 'CS', '80', '100', '0'), (2112, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (2113, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '166', '145', '311', '3.5', '101', 'MU', 'CS', '72', '100', '0'), (2114, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '320', '1110', '3.5', '101', 'GGSIPU', 'Information Technology', '6.3', '100', '0'), (2115, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (2116, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (2117, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4', '103', 'VTU', 'CS', '77', '100', '0'), (2119, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '45', '37', '82', '4.5', '111', 'VIT University', 'Computer Sceince', '8.39', '10', '0'), (2121, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '154', '145', '299', '3.5', '105', 'BMSIT', 'Electrical & Electronics', '73', '100', '0'), (2122, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'Jaypee Institute of Information Technology', 'Information technology', '7.7', '10', '5'), (2123, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (2124, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '154', '316', '3', '113', 'Heritage University of Technology', 'Computer Science', '7.63', '10', '0'), (2125, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '150', '308', '3.5', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '6.8', '10', '0'), (2126, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '100', 'University of Pune', 'Computer Engineering', '57', '100', '24'), (2127, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (2128, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '660', '600', '1260', '4', '102', 'Nagpur University', 'Information Technology', '67.52', '100', '0'), (2129, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '111', 'UPTU', 'comp Science', '66.66', '100', '0'), (2130, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (2131, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '156', '312', '3.5', '103', 'K J Somaiya College of Engiineering', 'IT', '66', '100', '30'), (2132, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '750', '390', '1140', '3.5', '101', 'R N S Institute of Technology', 'Electronics and Communication', '73.4', '100', '0'), (2133, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '2.5', 'None', 'SVCE', 'EEE', '75', '100', '0'), (2134, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (2135, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (2136, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (2137, '4', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '640', '1380', '4.5', '114', 'MSRIT', 'Chemical Engineering', '8.1', '10', '0'), (2138, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '305', '142', '447', '163', '90', 'Rajarambapu Institute of Technology', 'Civil Engineering', '7.48', '10', '0'), (2139, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (2140, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '690', '490', '1180', '4', 'None', 'SSN College of Engineering', 'Information Technology', '80', '100', '0'), (2141, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (2142, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (2143, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (2144, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (2145, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '510', '1290', '4', '273', 'Osmania University', 'CS', '85', '100', '0'), (2146, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Mechanical Engineering', '8.89', '10', '0'), (2147, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (2148, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '4.5', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (2149, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', '3', '91', 'MU', 'Electronics and telecommunication', '64.84', '100', '0'), (2150, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '560', '1310', '3.5', 'None', 'SMIT', 'EEE', '83', '100', '0'), (2151, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (2152, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '159', '325', '4.5', '113', 'University of Pune', 'Computer', '60.28', '100', '0'), (2153, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '700', '1500', 'None', '290', 'Pune University', 'Information Technology', '3.36', '4', '0'), (2154, '4', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (2155, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '156', '316', '4', '107', 'M.I.T Aurangabad', 'Electronics & Comminication', '71', '100', '0'), (2156, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', 'None', 'Institute of Engineering and Technology', 'Computer Science', '70', '100', '64'), (2157, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '480', '1240', '4', '104', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '8.27', '10', '0'), (2158, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '153', '322', '4', '109', 'GGSIPU', 'Information Technology', '70.16', '100', '24'), (2159, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (2160, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (2161, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (2162, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2010', '770', '560', '1330', '3.5', '100', 'West Bengal University Of Technology', 'Computer Science & Engineering', '8.1', '10', '0'), (2163, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '720', '590', '1310', '3', '94', 'FCRIT NAVIM MUBAI', 'COMPUTER', '63.24', '100', '0'), (2164, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (2165, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '157', '314', '4', '112', 'Sona College', 'Information Technology', '9.64', '10', '0'), (2166, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '150', '314', '3.5', '95', 'Integral University', 'Information Technology', '72.18', '100', '60'), (2167, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3.5', 'None', 'Sinhgad College of Engineering', 'Computer Engineering', '63', '100', '0'), (2168, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (2170, '4', 'Admit', 'MS', 'MSIM', 'Fall ', '2013', '161', '164', '325', '4', '113', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '70', '100', '0'), (2171, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '490', '1240', '2.5', '99', 'GRIET', 'ECE', '63', '100', '0'), (2172, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (2173, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (2174, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (2175, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '760', '490', '1250', '3', '101', 'Kurukshetra University', 'Computer Science', '71.1', '100', '0'), (2176, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (2177, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '160', '320', '4.5', '113', 'VTU', 'ECE', '78', '100', '43'), (2178, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (2179, '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '152', '144', '296', '3.5', '106', 'NMAMIT Nitte', 'Electronics and Communication', '72', '100', '0'), (2180, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '157', '147', '304', '3.5', '97', 'None', '0', '77.25', '100', '48'), (2181, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '158', '153', '311', '3', 'None', 'SASTRA', 'CSE', '8.25', '10', '0'), (2182, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '4', '104', 'Pune University', 'Computer Engineering', '61', '100', '0'), (2183, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (2184, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '149', '313', '3', '103', 'CBIT', 'Bio Tech', '79', '100', '0'), (2185, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (2186, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '550', '1320', '3', '112', 'PESIT', 'Computer Science', '76', '100', '0'), (2187, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '102', 'University of Pune', 'Electronics & Telecomm', '60', '100', '0'), (2188, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '146', '309', '3', '99', 'Devi Ahilya University Indore', 'MBA', '7.7', '10', '0'), (2189, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '770', '540', '1310', '3.5', '233', 'PESIT', 'ISE', '81', '100', '0'), (2190, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '720', '310', '1030', '3', '84', 'BVM Engineering College', 'Electronics Engineering', '8.38', '10', '0'), (2191, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (2192, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '162', '146', '308', '3', '100', 'K.L.E College of Engg and Technology', 'Electronics and Communication', '57.23', '100', '0'), (2193, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', 'None', 'MU', 'Information Technology', '57', '100', '0'), (2194, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (2195, '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '460', '1220', '4', '273', 'RMK Engineering College', 'EEE', '80', '100', '0'), (2196, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (2197, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '3', '95', 'Vidyalankar Institute of Technology', 'IT', '60', '100', '0'), (2200, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '158', '153', '311', '4.5', '107', 'Western Univ.', 'Regional Studies', '4.4', '5', '0'), (2201, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (2202, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (2203, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '710', '380', '1090', '4', '93', 'VTU', 'EC', '67', '100', '0'), (2204, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2205, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (2206, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (2207, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (2210, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '590', '460', '1050', 'None', 'None', 'None', '0', '0', '0', '0'), (2211, '4', 'Admit', 'MS', 'mba', 'Fall', 'None', '46', '31', '77', '4', '106', 'MGIT', 'ECE', '71.72', '100', '0'), (2212, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', 'None', 'Pune University', 'Computer', '61.27', '100', '0'), (2213, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '400', '1160', '3', '89', 'JNTU', 'COMPUTER SCIENCE', '80.4', '100', '0'), (2214, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '145', '306', '3.5', '101', 'Acharya Institute of Technology', 'Electrical and Electronics', '80.3', '100', '6'), (2215, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '590', '1330', '3', '102', 'MU', 'computer', '55', '100', '0'), (2216, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (2217, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (2219, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '144', '295', '3', '90', 'Maharashtra Institute of Technology', 'Computer Science', '74', '100', '0'), (2220, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (2221, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (2223, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (2224, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (2225, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2013', '159', '146', '305', '3.5', '96', 'VTU', 'EEE', '65', '100', '0'), (2226, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (2227, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '730', '560', '1290', '4', '280', 'SVCE', 'ECE', '65', '100', '0'), (2228, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '770', '480', '1250', '3.5', '109', 'Don Bosco Institute of Technology', 'EXTC', '56', '100', '0'), (2229, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '3.5', '111', 'CBIT', 'Computer Science', '76.5', '100', '0'), (2232, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '570', '1310', '3', '102', 'Osmania University', 'ece', '80', '100', '0'), (2233, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '3', '111', 'MSRIT', 'Computer Science', '75', '100', '0'), (2234, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', '93', 'Maharaja Agrasen Institute Of Technology', 'Computer Science Engineering', '73.4', '100', '0'), (2235, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (2236, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '780', '420', '1200', '2.5', '98', 'University of Pune', 'Electronics and telecommunication', '60.1', '100', '0'), (2237, '4', 'Admit', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (2238, '4', 'Admit', 'MS', 'None', 'Fall ', '2013', '157', '155', '312', '4', '113', 'MU', 'Computer Engineering', '65', '100', '0'), (2239, '4', 'Admit', 'MS', 'Chemical Engineering', 'Spring ', '2012', '800', '360', '1160', '3', '103', 'NIT Jalandhar', 'Chemical Engineering', '7.61', '10', '0'), (2240, '4', 'Admit', 'MS', 'software engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2241, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'JNTU', 'ECE', '72', '100', '46'), (2242, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (2243, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (2244, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '151', '311', '3', '104', 'BITS Goa', 'Mathematics & Mechanical', '6.7', '10', '0'), (2245, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '149', '306', '3.5', '104', 'GGSIPU', 'EEE', '75.1', '100', '0'), (2246, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '111', 'MSU', 'Computer Science & Engineering', '3.64', '4', '0'), (2248, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (2249, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '157', '148', '305', '3', 'None', 'MDU', 'Computer SC', '67.4', '100', '0'), (2250, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3.5', '100', 'VTU', 'Information Science', '75', '100', '0'), (2251, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '143', '306', '3', 'None', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.2', '10', '24'), (2252, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '158', '320', '3.5', '112', 'University of Pune', 'Electronics and Telecommunication', '61.8', '100', '0'), (2253, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (2254, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '94', 'Rajasthan Technical University', 'Computer science', '81.5', '100', '0'), (2255, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engineering', '3.56', '4', '0'), (2256, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '148', '309', '4', '104', 'Lakshmi Narain College of Technology', 'Electrical & Electronics Engineering', '74.4', '100', '0'), (2257, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '610', '1400', '3.5', '99', 'mit pune', 'e-tc', '64.91', '100', '0'), (2258, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (2259, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '142', '299', '3', '100', 'RMK Engineering College', 'Computer Science', '84', '100', '42'), (2260, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '147', '146', '293', '3', '90', 'Gogte Institute of Technology', 'Electronics and communication', '67', '100', '0'), (2261, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '620', '470', '1090', '2.5', '101', 'Velammal Engineering College', 'EIE', '83.4', '100', '0'), (2262, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (2263, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '146', '301', '3', '88', 'New Horizon College of Engineering', 'computer science', '74', '100', '0'), (2265, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (2266, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (2267, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (2268, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '149', '309', '3', '101', 'D Y Patil College of Engineering', 'Electronics Engineering', '72', '100', '0'), (2269, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '370', '1110', '3', '82', 'K J Somaiya College of Engiineering', 'INFORMATION TECHNOLOGY', '67', '100', '0'), (2270, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '153', '312', '3', '110', 'Anna University', 'CSE', '73', '100', '0'), (2271, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '710', '1510', '4', '113', 'IP University Delhi', 'Computer Science', '80', '100', '0'), (2272, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (2273, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '470', '1220', '3', '104', 'Dr Mahalingam College of Engineering and Technology', 'Information Technology', '82', '100', '0'), (2274, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '730', '480', '1210', '3.5', '107', 'S.A.Engineering college.Anna university.', 'computer science', '81.67', '100', '0'), (2275, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (2276, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '440', '1220', '3.5', '108', 'SRM', 'CSE', '9.3', '10', '0'), (2277, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '156', '142', '298', '2.5', '98', 'Pune University', 'IT', '68', '100', '0'), (2278, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '110', 'VTU', 'Computer Science', '68', '100', '36'), (2279, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '165', '144', '309', '3.5', '97', 'BITS Pilani', 'B.E. EEE & MSc. Economics', '7.7', '10', '0'), (2280, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2282, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (2284, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '490', '1270', '3.5', '107', 'Thakur College of Engineering and Technology', 'Information Technology', '60.14', '100', '0'), (2285, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '570', '1310', '4', '108', 'Gujarat Technological University', 'Mechanical Engineering', '63', '100', '0'), (2286, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (2287, '4', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '750', '430', '1180', '3', 'None', 'MU', 'Information Technology', '65', '100', '0'), (2288, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '145', '311', 'None', '97', 'MSU', 'CS', '3.93', '4', '0'), (2289, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '740', '540', '1280', 'None', '96', 'MU', 'IT', '61', '100', '0'), (2290, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (2291, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (2292, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '151', '313', '4', '110', 'SIES Graduate School of Technology', 'Computer Engineering', '62', '100', '0'), (2293, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (2294, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '156', '152', '308', '3', '103', 'MSRIT', 'Information Science and Engineering', '8.88', '10', '0'), (2295, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (2296, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (2297, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (2298, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (2299, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (2300, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (2301, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '153', '316', '3', '108', 'JSS Noida', 'Computer Science', '69', '100', '0'), (2302, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (2303, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (2304, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '500', '1280', '5', '110', 'University of Pune', 'Computer Engineering', '68.8', '100', '0'), (2305, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', '109', 'MU', 'Electronics and Telecomm', '64', '100', '0'), (2306, '4', 'Admit', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (2307, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '154', '318', '3', '107', 'Amity University', 'CS&E;', '7.5', '10', '0'), (2308, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (2309, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2311, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '780', '560', '1340', '4', 'None', 'MJCET', 'Electronics and Instrumentation', '64', '100', '0'), (2312, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (2313, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '160', '146', '306', '3.5', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (2314, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '113', 'Gujarat Technological University', 'Mechanical Engineering', '7.51', '10', '0'), (2315, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (2316, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (2317, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '4', '104', 'None', 'CS', '7.33', '10', '0'), (2318, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '44', '28', '72', '4.5', '102', 'VTU', 'CS', '67', '100', '0'), (2319, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '155', '318', '4', '107', 'Anna University', 'IT', '8.01', '10', '0'), (2320, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2321, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (2322, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '33', '80', '5', '104', 'Rajasthan Technical University', '0', '3.65', '4', '0'), (2324, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '165', '158', '323', '4', '108', 'Bharati Vidyapeeth', 'IT', '79.75', '100', '0'), (2325, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (2326, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '740', '620', '1360', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.72', '10', '0'), (2327, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2328, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (2329, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '530', '1260', '3', '111', 'Pune University', 'Mechanical Engineering', '0', '0', '0'), (2330, '4', 'Admit', 'MS', 'Mechanical And Aerospace', 'Spring ', '2014', '161', '151', '312', '3', 'None', 'Saurashtra University', 'Mechanical Engineering', '3.6', '4', '0'), (2331, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '155', '319', '3.5', '106', 'MU', 'Computer', '61', '100', '0'), (2332, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '146', '313', '3', '99', 'K J Somaiya College of Engiineering', 'Computer Engineering', '69.17', '100', '0'), (2333, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '168', '159', '327', '4.5', '112', 'University of Mumbai', 'computer engineering', '67.87', '100', '42'), (2334, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (2335, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '4', '109', 'VTU', 'CSE', '81', '100', '0'), (2336, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (2337, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3.5', '112', 'University of Mumbai', 'Electronics and Telecomm', '72', '100', '0'), (2338, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '145', '304', '3', '100', 'PTU/Rayat and Bahra', 'Computer Science', '74.4', '100', '0'), (2339, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '151', '313', '3.5', '107', 'Pune University', 'Computer', '74', '100', '0'), (2340, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '145', '154', '299', '4.5', '97', 'University of Pune', 'Electronics and Telecommunication', '58', '100', '0'), (2341, '4', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '107', 'Manipal Institue of Technology', 'mechatronics', '8', '10', '0'), (2342, '4', 'Admit', 'MS', 'Networking', 'Fall ', '2013', '156', '145', '301', '3.5', '102', 'KU', 'IT', '63', '100', '0'), (2343, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3', '95', 'Madras Institute of Technology', 'Electronics and Instrumentation Engineering', '8.9', '10', '0'), (2344, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (2345, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '4.5', '110', 'Ramrao Adik Institute of Technology', 'Electronics', '60', '100', '0'), (2346, '4', 'Admit', 'MS', 'Information Management', 'Fall ', '2014', '163', '151', '314', '3', '100', 'Jaypee Institute of Information Technology', 'Information Technology', '69', '100', '36'), (2347, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'Pune University', 'Electrical Engineering', '0', '0', '0'), (2348, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3.5', '108', 'UPTU', 'Computer Science', '76', '100', '0'), (2349, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '770', '630', '1400', 'None', '107', 'MU', 'Electronics & Telecommunication', '64', '100', '0'), (2350, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '145', '307', '3', '82', 'Government Engineering College Patan affilated with GTU', 'Computer Science & Engineering', '8.34', '10', '0'), (2351, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (2352, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (2353, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '316', '157', '473', '4.5', '112', 'TSEC', 'I.T', '60', '100', '0'), (2354, '4', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (2355, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2356, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (2357, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '149', '316', '3.5', '102', 'Osmania University', 'CSE', '80', '100', '0'), (2358, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '155', '150', '305', '305', '93', 'Dayananda Sagar College of Engineering', 'Telecommunication', '66', '100', '0'), (2359, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '163', '148', '311', '3.5', '106', 'VTU', 'Instrumentation', '7.82', '10', '0'), (2360, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (2361, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '160', '154', '314', '3', '107', 'None', '0', '74', '100', '0'), (2362, '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (2363, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '154', '152', '306', '3', '104', 'None', '0', '0', '0', '0'), (2364, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', '94', 'Sinhgad College of Engineering', 'Computer Sciences', '60.05', '100', '0'), (2365, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '670', '1470', '5', '118', 'Anna University', 'MCA', '9.6', '10', '0'), (2366, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '107', 'VTU', 'EE', '71', '100', '0'), (2367, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (2368, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3.5', '100', 'Sri Venkateswara College of Engineering', 'CSE', '71', '100', '0'), (2369, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (2370, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (2371, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '570', '1330', '5', '290', 'Atharva College', 'computer engineering', '64.13', '100', '0'), (2372, '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2012', '158', '150', '308', '4', '102', 'VTU', 'Computer Science', '8.07', '10', '0'), (2373, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '600', '1400', '4.5', '111', 'Pune University', 'Computers', '0', '0', '0'), (2374, '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (2375, '4', 'Admit', 'MS', 'Computational Science', 'Spring ', '2011', '780', '340', '1120', '3', '92', 'JNTU', 'ECE', '79.79', '100', '0'), (2376, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '670', '1460', '3', '103', 'GITAM', 'INFORMATION TECHNOLOGY', '9.03', '10', '0'), (2377, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '158', '143', '301', '3', '98', 'SASTRA', 'ECE', '7.29', '10', '0'), (2378, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '500', '1270', '4', 'None', 'Institute of Engineering and Technology DAVV', 'Computer Science', '78', '100', '0'), (2379, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '163', '156', '319', '4', '108', 'Siddaganga Institue of Technology', 'Mechanical', '8.32', '10', '2'), (2381, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4', '257', 'Shah And anchor Kutchhi Engineering College', 'Computer', '64', '100', '0'), (2382, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '116', 'University of Mumbai', 'Information Technology', '64', '100', '0'), (2383, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '470', '1240', '4', '104', 'Amrita School of Engineering', 'Computer Science', '7.33', '10', '0'), (2384, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '149', '306', '3', '110', 'Fore School of Management', 'Computer Science', '3.78', '4', '54'), (2385, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '640', '520', '1160', '3', 'None', 'VIT', '0', '7.4', '10', '0'), (2386, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', 'None', '102', 'Pondicherry Engineering College', 'Information Technology', '833', '100', '0'), (2387, '4', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (2389, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'MDU', 'Computer Science', '74', '100', '0'), (2390, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '620', '1380', '5', '119', 'MU', 'Electronics and Telecommunications', '62', '100', '0'), (2391, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '400', '1200', '3.5', '277', 'Anna University', 'Electrical and Instumentation Engineering', '86.6', '100', '0'), (2392, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '710', '590', '1300', '3.5', '253', 'University of Mumbai', 'Electronins and Telecommunication', '56', '100', '0'), (2393, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (2394, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (2395, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (2396, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2007', '740', '470', '1210', '3', '257', 'Anna University', 'ECE', '8.4', '10', '0'), (2398, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '154', '316', '3.5', '111', 'CBIT', 'Computer Science', '77', '100', '0'), (2399, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (2400, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '149', '161', '310', '5', '105', 'MITS', 'E&C;', '7.5', '10', '0'), (2401, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '750', '570', '1320', '3.5', '110', 'Silicon Inst of Technology', 'electronics and Telecommunication', '8.29', '10', '0'), (2402, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '580', '1370', '4', '113', 'None', '0', '0', '0', '0'), (2403, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (2404, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (2405, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3', '94', 'VTU', 'Computer Science Engineering', '74.21', '100', '0'), (2406, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (2407, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '760', '650', '1410', '4', '290', 'Anna University', 'ECE', '76', '100', '0'), (2408, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '7', 'Jaypee Institute of Information Technology', 'IT', '7.9', '10', '12'), (2409, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '158', '149', '307', '3', '107', 'Anna University', 'Aeronautical', '7.5', '10', '0'), (2410, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '3', '88', 'Gujarat Technological University', 'Computer Engineering', '8.8', '10', '0'), (2411, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '330', '1130', '3', '93', 'KLCE', 'IST', '84', '100', '0'), (2412, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '155', '147', '302', '3.5', '96', 'Anna University', 'CSE', '7.32', '10', '6'), (2413, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (2414, '4', 'Admit', 'MS', 'MIS', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2415, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '3.5', '91', 'MU', 'extc', '62', '100', '0'), (2416, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (2417, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '163', '155', '318', '4', 'None', 'AISSMS College of Engineering Pune', 'Mechanical ENGG', '61.2', '100', '0'), (2418, '4', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2008', '790', '480', '1270', '4', '113', 'MU', 'ECE', '66', '100', '0'), (2419, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (2420, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '610', '1410', '3.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (2421, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3.5', '101', 'SVITS', 'Computer Science', '73.19', '100', '29'), (2422, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2009', '760', '470', '1230', '3.5', '108', 'MU', 'computer', '0', '0', '0'), (2423, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '600', '1350', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '62', '100', '0'), (2424, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '620', '1380', 'None', '260', 'Mysore University', 'CS', '76', '100', '0'), (2425, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '760', '370', '1130', '4', '263', 'Pune University', 'Electronics & Telecommunications', '65.5', '100', '0'), (2426, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '159', '150', '309', '3.5', '106', 'WBUT', 'IT', '7.7', '10', '0'), (2427, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '600', '1400', '3', '101', 'MU', 'Computer', '0', '0', '0'), (2428, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '162', '324', '4', '115', 'University of Texas at Dallas', 'Arts and Technology', '0', '0', '0'), (2429, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (2430, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '750', '550', '1300', '4', '273', 'MGMCET Mumbai University', 'EXTC', '67', '100', '0'), (2431, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (2432, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '580', '1310', '3', '103', 'MU', 'EXTC', '73', '100', '0'), (2433, '4', 'Admit', 'MS', 'Finance', 'Fall ', '2012', '41', '25', '66', '4.5', '101', 'MU', 'Commerce', '0', '0', '0'), (2434, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (2435, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '3.5', '110', 'MU', 'Information Technology', '69', '100', '0'), (2436, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '150', '311', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '73', '100', '24'), (2437, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2008', '790', '520', '1310', '4', '106', 'University of Mumbai', 'Electronics', '0', '0', '0'), (2438, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (2439, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '162', '149', '311', '3.5', '102', 'Don Bosco Institute of Technology', 'Electronics and Telecommunication', '66.2', '100', '0'), (2440, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (2441, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '102', 'Sri Jayachamarajendra College of Engineering', 'Computer Science and Engineering', '8.5', '10', '0'), (2442, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '500', '1280', '3.5', '257', 'GTBIT', 'IT', '72', '100', '0'), (2443, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '590', '1300', '3.5', '100', 'MU', 'Electronics', '74', '100', '0'), (2444, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '149', '306', '4', '114', 'VTU', 'CSE', '8.88', '10', '36'), (2445, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '155', '313', '4.5', '105', 'University of Mumbai', 'I.T', '65', '100', '0'), (2446, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (2448, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '156', '312', '2.5', '106', 'College Of Engineering Roorkee', 'Information Technology', '66', '100', '0'), (2449, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '42', '31', '73', '5', '109', 'None', '0', '0', '0', '0'), (2451, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (2452, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '630', '640', '1270', '3', '112', 'Pune University', 'Computer Science', '60', '100', '0'), (2453, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '580', '1350', '4', '108', 'Govt Model Engg College', 'Computer Sc & Engineering', '76.6', '100', '0'), (2454, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '680', '1410', '4', '113', 'Pune University', 'IT', '53', '100', '0'), (2456, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '570', '1300', '3', '109', 'PESIT', 'ISE', '75', '100', '0'), (2457, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '760', '520', '1280', '2.5', '97', 'Veermata Jijabai Technological Institute', 'mechanical', '6.1', '10', '0'), (2458, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (2459, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (2460, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (2462, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '98', 'None', 'Electronics', '68', '100', '0'), (2463, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (2464, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (2465, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (2466, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '155', '317', '3.5', '113', 'MU', 'E & TC', '70', '100', '0'), (2467, '4', 'Admit', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (2468, '4', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (2469, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (2470, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (2471, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '390', '1170', '4', '110', 'MH Saboo Siddik college of Engg', 'Information Technology', '0', '0', '0'), (2472, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (2473, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (2474, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '670', '430', '1100', '3.5', '98', 'SNIST', 'BS-EET', '3.4', '4', '0'), (2475, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (2476, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '410', '1120', '4', 'None', 'University of Mumbai', 'Computer Engineering', '64', '100', '0'), (2477, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '93', '49', '142', '3.5', '113', 'University of Mumbai', 'IT', '66', '100', '8'), (2478, '4', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '800', '530', '1330', '3.5', '102', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.58', '10', '0'), (2479, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '770', '500', '1270', '4', '109', 'VIT', 'Information Technology', '8.52', '10', '0'), (2480, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (2481, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '46', '27', '73', '6', 'None', 'GGSIPU', 'computer science', '8.4', '10', '0'), (2482, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (2483, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2016', '156', '154', '310', '3.5', '106', 'SRM', 'MBA', '8.9', '10', '0'), (2484, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '3', '91', 'VIT', 'Computer Science', '8.72', '10', '0'), (2485, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '148', '309', '3.5', '91', 'MVSR', 'CSE', '80', '100', '0'), (2486, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '790', '560', '1350', '3.5', '104', 'Syracuse University', 'Information Management', '3.8', '4', '0'), (2487, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '4', '97', 'Yeditepe University', 'Electrical-Electronics Engineering', '3.46', '4', '0'), (2488, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '49', '30', '79', '5', '100', 'Pune University', 'Mechanical', '58', '100', '0'), (2489, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (2490, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (2491, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '270', '970', '3', '78', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (2493, '4', 'Admit', 'MS', 'Engineering Management', 'Spring ', '2013', '156', '150', '306', '3', '91', 'JSS Noida', 'EC', '60', '100', '0'), (2494, '4', 'Admit', 'MS', 'Forensic Science', 'Fall', 'None', '153', '142', '295', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '8.2', '10', '0'), (2495, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (2496, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '156', '318', '3.5', '114', 'Sikkim Manipal Institute of Technology', 'electronics and communication', '8.15', '10', '0'), (2497, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '4', '114', 'K J Somaiya College of Engiineering', 'Computer Engineering', '63.52', '100', '0'), (2498, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '770', '540', '1310', '3', 'None', 'None', '0', '0', '0', '0'), (2499, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '287', 'MU', 'Computer engg', '61', '100', '0'), (2500, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '106', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (2501, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '740', '400', '1140', '4', '106', 'VTU', 'e&c;', '0', '0', '0'), (2502, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '145', '306', '3', '92', 'Sreenidhi Institute of Science & Technology', 'ECM', '81', '100', '0'), (2503, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', 'None', 'None', '0', '3.5', '109', 'None', '0', '0', '0', '0'), (2504, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '152', '146', '298', 'None', '100', 'MU', 'I.T', '73.11', '100', '0'), (2505, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (2506, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (2507, '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (2508, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (2509, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (2510, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '4', '102', 'SRM', 'IT', '7.95', '10', '0'), (2511, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (2512, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (2513, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '158', '319', '4', '107', 'MU', 'Computer Engg', '3.14', '4', '0'), (2514, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '144', '303', '3.5', '100', 'MU', 'Information Technology', '69.4', '100', '0'), (2515, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '3', '86', 'Kakatiya University', 'Computer Science and Engineering', '77', '100', '0'), (2516, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '590', '1390', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer', '69.5', '100', '0'), (2517, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (2518, '4', 'Admit', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (2519, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (2520, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '47', '37', '84', '5.5', '117', 'Amrita School of Engineering', 'ece', '8.1', '10', '0'), (2521, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (2522, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3', '108', 'NIT-Calicut', 'Computer Science', '7.93', '10', '0'), (2523, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (2525, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '750', '510', '1260', '3.5', '116', 'VIT Mumbai University', 'EXTC', '63', '100', '0'), (2526, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', 'Engineering(I.T)', '0', '0', '0'), (2527, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '100', 'MU', 'Computer Engineering', '0', '100', '0'), (2528, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (2529, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2009', '800', '670', '1470', '5', '112', 'VTU', 'ECE', '68', '10', '0'), (2530, '4', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '157', '145', '302', '3', '87', 'Banasthali University', 'Computer Science', '79', '100', '88'), (2531, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (2532, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '2.5', '96', 'BITS Pilani', 'Computer science', '7.8', '10', '0'), (2533, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '640', '1400', '3', '98', 'Bharati Vidyapeeth', 'Comp Science', '54', '100', '0'), (2534, '4', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2013', '156', '136', '292', '3', '96', 'Sarvajanik College of Engineering & Technology', 'civil engineering', '7.5', '10', '0'), (2535, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '168', '156', '324', '3.5', '110', 'VESIT', 'Electronics and Telecommunication', '70.8', '100', '0'), (2536, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '4.5', '105', 'Sardar Patel University', 'Computer Science', '77', '100', '0'), (2537, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2539, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '490', '1280', '4', '102', 'BMSCE', 'Telecommunication', '0', '0', '0'), (2540, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '710', '630', '1340', '3.5', '116', 'MU', 'Computer Engineering', '57', '100', '0'), (2541, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Maharaja Surajmal Institute of Technology', 'Information Technology', '79', '100', '0'), (2542, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'Gujarat Technological University', 'Computer Science', '7.8', '10', '0'), (2543, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4.5', '112', 'UPTU', 'computer science', '80.8', '100', '0'), (2544, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (2545, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '144', '295', '3', '102', 'MU', 'CS', '63.11', '100', '0'), (2546, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '730', '440', '1170', 'None', 'None', 'Valliammai Engineering College', 'Computers', '79', '100', '0'), (2547, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '152', '317', '3', '112', 'BIT Mesra', 'Civil Engineering', '7.1', '10', '0'), (2548, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '4', '110', 'Sinhgad College of Engineering', 'IT', '60.04', '100', '0'), (2549, '4', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '155', '310', '3', 'None', 'Pune University', 'Civil Engineering', '54', '100', '0'), (2550, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '350', '1150', '2.5', '86', 'Koneru Lakshmaiah College of Engineering', 'Information Science And Technologyu', '89.2', '100', '0'), (2551, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '163', '155', '318', '3', '105', 'University of Pune', 'Computer Science', '8', '10', '43'), (2552, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '154', '162', '316', '3.5', '106', 'Sinhgad College of Engineering', 'IT', '63', '100', '0'), (2553, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'None', 'Mechanical Engineering', '70', '100', '0'), (2554, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2556, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '148', '309', '3.5', '98', 'Anna University', 'ECE', '7.85', '10', '42'), (2557, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '154', '315', '3.5', '101', 'Sardar Patel College of Engineering', 'Computers', '60.5', '100', '0'), (2558, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '3', '95', 'MU', 'Computer', '70', '100', '0'), (2559, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '410', '1210', '3.5', '91', 'Rajiv Gandhi Institute Of Technology', 'COMPUTER SCIENCE', '63', '100', '0'), (2560, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '159', '141', '300', '3', '90', 'Acharya Nagarjuna University', 'Electronics and communication', '71', '100', '0'), (2561, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '142', '300', '3', '96', 'VTU', 'EC', '75', '100', '0'), (2562, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (2563, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '570', '1320', '3', '112', 'Galgotias College of Engineering & Technology(Uttar Pradesh Technical University)', 'Information Technology', '70', '100', '0'), (2564, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '148', '305', '4', '96', 'Arya Institute of Engg and Tech', 'Computer Science', '77.7', '100', '0'), (2565, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '500', '1230', '3.5', '98', 'MU', 'electronics', '69.74', '100', '0'), (2566, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '600', '1330', '3.5', '106', 'University of Mumbai', 'IT', '62.5', '100', '0'), (2567, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '156', '151', '307', 'None', '94', 'Pune University', 'Computer', '0', '0', '0'), (2568, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '770', '520', '1290', '3.5', '106', 'Vishwakarma Institute of Technology', 'E&Tc;', '8.9', '10', '0'), (2569, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '750', '600', '1350', '3', '104', 'Lokmanya Tilak College of Engineering', 'Computer', '3.57', '4', '0'), (2570, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2009', '800', '640', '1440', 'None', '101', 'MNIT', 'Electrical Engineering', '7.1', '10', '0'), (2571, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '152', '310', '4.5', '109', 'VTU', 'Telecomm', '66', '100', '0'), (2572, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (2573, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (2574, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '102', 'None', '0', '77.5', '100', '0'), (2575, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '154', '311', '3', '105', 'MU', 'Computer', '60', '100', '0'), (2576, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '154', '316', '3', '99', 'GCET', 'Mechanical', '8.89', '10', '0'), (2577, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (2578, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '83', 'VIT', 'ECE', '8.21', '10', '0'), (2580, '4', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (2581, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '152', '146', '298', '3.5', '6', 'VTU', 'electronic and communication', '81', '100', '0'), (2582, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (2583, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (2584, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '150', '306', '3.5', '116', 'CEG', 'Information Technology', '8.15', '10', '0'), (2585, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (2586, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '670', '540', '1210', '3', '103', 'D J Sanghvi', 'IT', '55', '100', '0'), (2587, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '710', '440', '1150', '3', '105', 'None', '0', '0', '0', '0'), (2588, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '151', '152', '303', '4', '111', 'B M S College of Engineering', 'Telecommunication engineering', '71.4', '100', '0'), (2589, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '152', '157', '309', '4', '107', 'Bharathiar University', 'Computer Science', '61', '100', '0'), (2590, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '154', '315', '4', '106', 'SRM', 'Computer Science Engineering', '8.95', '10', '0'), (2591, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '95', 'Anna University', 'CS', '7', '10', '0'), (2592, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (2593, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '157', '156', '313', '4.5', 'None', 'Nirma Institute of Technology', 'electronics and communications', '8.12', '10', '0'), (2594, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (2595, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '153', '152', '305', '4', '104', 'Nagpur University', 'BE in IT', '61', '100', '70'), (2596, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (2597, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (2598, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (2599, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '167', '154', '321', '3.5', '107', 'COEP', 'Computer Engineering', '7.78', '10', '0'), (2600, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (2601, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '540', '1260', '3.5', '107', 'Fr.CRCE Bandra', 'CS', '0', '0', '0'), (2602, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '570', '1300', '3.5', '99', 'Pune University', 'Computer', '60', '100', '0'), (2603, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '107', 'NITK Surathkal', 'EEE', '7.17', '10', '0'), (2604, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '144', '305', '3', '81', 'Osmania University', 'Computer Science', '84.57', '100', '0'), (2605, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (2606, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '161', '152', '313', '4', '106', 'CEG', 'B.Tech Information Technology', '8.01', '10', '29'), (2607, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (2608, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '3', 'None', 'Chaitanya Bharathi Institute of Technology', 'Electronics and Communications', '85.5', '100', '0'), (2609, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '430', '1180', '4', '107', 'Sathyabama University', 'Computer Science Engineering', '77.36', '100', '0'), (2610, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '600', '1320', 'None', '108', 'Anna University', 'IT', '81', '100', '0'), (2611, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '3.5', '101', 'Pune University', 'Computer', '54', '100', '0'), (2612, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4', '109', 'BITS Pilani', 'B.Pharm (Hons.)', '8.71', '10', '0'), (2613, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '108', 'Madras Institute of Technology', 'ECE', '7.8', '10', '43'), (2614, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '510', '1240', '3.5', '104', 'bombay University', 'Computer Science', '61', '100', '0'), (2615, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '109', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.86', '10', '31'), (2616, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '163', '157', '320', '4', '114', 'None', 'BE Computer Science', '66.2', '100', '0'), (2617, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '151', '307', '3', '103', 'University of Mumbai', 'Computer Engg', '60.11', '100', '0'), (2618, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (2619, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (2620, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '780', '640', '1420', '4.5', '117', 'MU', 'Computer Engg', '59', '100', '0'), (2621, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '157', '146', '303', '3.5', '104', 'University of Mumbai', 'I.T', '65', '100', '0'), (2622, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (2624, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '159', '321', '4', '116', 'GGSIPU', 'Mechanical', '78.8', '100', '0'), (2625, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (2626, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '340', '1090', '3', '96', 'Jaya Engineering college', 'CSE', '88', '100', '0'), (2627, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (2628, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (2629, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '157', '318', '3.5', '112', 'Sinhgad College of Engineering', 'MBA', '68', '100', '0'), (2630, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3.5', '104', 'Pune University', 'B.E.(Information Technology)', '64.2', '100', '0'), (2631, '4', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (2632, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (2633, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (2634, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '162', '143', '305', '3', '101', 'VTU', 'Telecommunication Engineering', '65.13', '100', '0'), (2635, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (2636, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '720', '320', '1040', '3', '99', 'Amrita School of Engineering', 'CSE', '7.64', '10', '0'), (2637, '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2013', '160', '149', '309', '2.5', '107', 'Maharishi Dayanand University', 'Computer Science', '70', '100', '0'), (2638, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (2639, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '450', '1230', '5', '113', 'Amrita School of Engineering', 'Computer Science', '8.08', '10', '0'), (2640, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '153', '312', '3', '110', 'MU', 'Information Technology', '3.79', '4', '0'), (2641, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', '3', '88', 'Sinhgad College of Engineering', 'Electronics and Telecommunications', '62.13', '100', '0'), (2642, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '155', '314', '4', '108', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (2643, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2644, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '780', '470', '1250', '4', '107', 'VIT Pune', 'EnTc', '8.55', '10', '0'), (2645, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '1390', '620', '2010', '770', '104', 'MU', 'Computer Engineering', '68', '100', '0'), (2646, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '700', '630', '1330', '4.5', '270', 'VESIT', 'Info Tech', '64.3', '100', '0'), (2647, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '168', '155', '323', '4.5', '101', 'VTU', 'Telecommunication', '75', '100', '0'), (2648, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '149', '314', '3', '99', 'NIT Bhopal', 'Computer Science', '3.11', '4', '0'), (2649, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (2650, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '157', '152', '309', '4', '106', 'MSRIT', 'Mechanical Engineering', '8.92', '10', '33'), (2651, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (2653, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '150', '311', '3', '98', 'University of Mumbai', 'IT', '60', '100', '0'), (2654, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '4', '112', 'University of Mumbai', 'Information Technology', '58.13', '100', '0'), (2655, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '540', '1340', '3.5', '107', 'D J Sanghvi', 'Computer', '64', '100', '0'), (2656, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2009', '800', '360', '1160', '3', '95', 'Anna University', 'ECE', '73', '100', '0'), (2657, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '155', '315', '3', '109', 'VIT', 'ECE', '69', '100', '0'), (2658, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '146', '307', '3', 'None', 'Ganpat University', 'Computer', '72.51', '100', '42'), (2659, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (2660, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (2661, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '156', '151', '307', '4', '115', 'BPUT', 'Electronics and Communication', '8.39', '10', '29'), (2662, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (2663, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (2665, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (2666, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Syracuse University', 'Electrical Engiineering', '3.4', '4', '0'), (2667, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '4', '91', 'MVSR', 'computer science engineering', '72.3', '100', '0'), (2668, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '155', '318', '3.5', '106', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '72.8', '100', '66'), (2669, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '102', 'GITAM', 'IT', '8.09', '10', '0'), (2670, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (2671, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (2672, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (2673, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (2674, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '148', '303', '4', '111', 'JSSATE VTU', 'Instrumentation Tech', '65', '100', '0'), (2675, '4', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (2676, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '143', '300', '3.5', '110', 'SCSVMV University', 'Computer Science', '8.06', '10', '0'), (2677, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '151', '312', '3.5', '107', 'Shah And anchor Kutchhi Engineering College', 'IT', '60.3', '100', '0'), (2678, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', 'None', 'None', 'NIT-Bhopal', 'Information Technology', '8.49', '10', '0'), (2679, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '114', 'University of Pune', 'Conputer Science', '59', '100', '15'), (2680, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2012', '770', '620', '1390', '3', '109', 'Kalinga Institute of Industrial Technology', 'Electronics &Telecom;', '7.1', '10', '0'), (2681, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '320', '1060', '2.5', '86', 'Anna University', 'CSE', '75', '100', '0'), (2682, '4', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '640', '620', '1260', '3.5', '105', 'None', '0', '0', '0', '0'), (2683, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3', '99', 'Atharva College', 'ELECTRONICS', '70', '100', '0'), (2684, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '159', '323', '5.5', '117', 'Manipal Institue of Technology', 'E&C;', '8.2', '10', '0'), (2685, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '100', 'IIIT Allahabad', 'IT', '7.5', '10', '0'), (2686, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3', '101', 'VTU', 'Computer Science', '75', '100', '0'), (2687, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '80', 'Faculty of technology & Engg. MSU', 'Computer Science & Enggineering', '3.55', '4', '0'), (2688, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (2689, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '105', 'VTU', 'Computer Sciece and Engineering', '71', '100', '0'), (2690, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '153', '321', '5', '106', 'None', '0', '0', '0', '0'), (2691, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '660', '1350', '3', '102', 'Sri Venkateswara College of Engineering', 'Computer science Engg', '83', '100', '0'), (2692, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '4', '104', 'None', '0', '72', '100', '0'), (2693, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (2694, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (2695, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (2696, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Nirma Institute of Technology', '0', '0', '0', '0'), (2697, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '660', '1440', '4', '283', 'MU', 'Computers', '62', '100', '0'), (2698, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '164', '152', '316', '4', '115', 'VIT Pune', 'e&tc;', '7.5', '10', '0'), (2699, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '144', '304', '3.5', '113', 'CITM Faridabad', 'CSE', '64', '100', '0'), (2700, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (2701, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2006', '750', '560', '1310', '3.5', '260', 'SVIT Vasad (Gujarat University)', 'IT', '63', '100', '0'), (2702, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '640', '1440', '5', 'None', 'SVNIT Surat', 'Electronics', '76', '100', '0'), (2703, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '151', '148', '299', '3', '93', 'S.S.P.M college of Engineering-mumbai university', 'E&TC;', '0', '0', '0'), (2704, '4', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '700', '450', '1150', '3', '99', 'Walchand College Of Engineering', 'Electronics Engineering', '66', '100', '0'), (2705, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '153', '315', '3.5', '100', 'MU', 'Computer Engineering', '60.44', '100', '0'), (2706, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '71', '100', '0'), (2707, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (2708, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '100', 'MU', 'Computer Engineering', '70', '100', '0'), (2709, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '5', '277', 'MANIT', 'Electrical', '76', '100', '0'), (2710, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2', '159', '149', '308', 'None', '109', 'Rajiv Gandhi Institute Of Technology', 'BE EXTC', '63', '100', '0'), (2711, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '156', '152', '308', '3', '104', 'University of Pune', 'Information Technology', '8.74', '10', '0'), (2712, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '146', '301', '3', '101', 'SASTRA', 'ECE', '7', '10', '0'), (2713, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '156', '149', '305', '3.5', '99', 'SASTRA', 'Information Technology', '7.47', '10', '0'), (2714, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '49', '26', '75', '5', '99', 'Amrita Vishwa Vidhyapeetham', 'EEE', '8.46', '100', '0'), (2715, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (2716, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '167', '154', '321', '4', '112', 'IIT Kharagpur', 'Architecture', '8.05', '10', '0'), (2717, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (2718, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (2719, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '410', '1200', '4', '107', 'Nirma Institute of Technology', 'mechanical engg', '8.51', '10', '0'), (2720, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '152', '314', '3', '104', 'University of Mumbai', 'Electronics and Telecommunication', '58.8', '100', '0'), (2721, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2007', '710', '620', '1330', '4.5', '283', 'Maharishi Dayanand University', 'IT', '80', '100', '0'), (2722, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '50', '31', '81', '3.5', '100', 'None', '0', '3.14', '4', '0'), (2723, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '152', '312', '3.5', '112', 'Pune University', 'Information Technology', '65', '100', '0'), (2724, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '720', '650', '1370', '4', '113', 'MU', 'Chemical', '60', '100', '0'), (2725, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (2726, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '148', '142', '290', '3', '86', 'GITAM', 'cse', '8.15', '10', '0'), (2727, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2006', '780', '680', '1460', '4.5', '290', 'MU', 'Computer Engg', '59', '100', '0'), (2728, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '142', '159', '301', '3.5', '98', 'SRM', 'ECE', '9.5', '10', '0'), (2730, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '153', '314', '3.5', '117', 'Pune University', 'Computer Science', '55', '100', '0'), (2731, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '143', '302', '3.5', '85', 'None', 'ECE', '79', '100', '0'), (2732, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '156', '151', '307', '3.5', '106', 'MU', 'IT', '69', '100', '0'), (2733, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '600', '1240', 'None', '107', 'Pune University', 'Computer', '61', '100', '0'), (2734, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '112', 'SGGS institute of engg nanded', 'Electronics and Telecommunications', '8.53', '10', '0'), (2735, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '152', '314', '3.5', '106', 'Punjab Technical University', 'Computer Science', '78.1', '100', '0'), (2736, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '161', '158', '319', '3', '101', 'MG University', 'ECE', '69.4', '100', '0'), (2737, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (2738, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (2739, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (2740, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '158', '140', '298', '3', '92', 'University of Pune', '0', '76.2', '100', '0'), (2743, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '159', '151', '310', '3', '103', 'PESIT', 'C.S', '69', '100', '0'), (2744, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (2745, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '145', '301', '3', '104', 'BMSCE', 'Computer Science', '9.3', '10', '0'), (2746, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '144', '307', '3.5', '98', 'Nagarjuna University', 'ECE', '8.55', '10', '0'), (2747, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '152', '308', '3.5', '105', 'VTU', 'EE', '78', '100', '0'), (2748, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (2749, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (2750, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '160', '326', '4', '114', 'Pondicherry Engineering College', 'Computer Science', '8.35', '10', '0'), (2751, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '162', '148', '310', '3', '108', 'VIT University', 'ECE', '8.15', '10', '0'), (2752, '4', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2013', '152', '152', '304', '3', '101', 'Anna University', 'Biotechnology', '8.5', '10', '0'), (2753, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (2754, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3.5', '109', 'VTU', 'CS & E', '81', '100', '0'), (2755, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '156', '321', '4', '112', 'MU', 'Electronics and Telecommunication Engineering', '59.9', '100', '0'), (2756, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (2757, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (2758, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (2759, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (2760, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '34', '84', '5.5', '98', 'BESU Shibpur', 'Electrical Engineering', '61', '100', '0'), (2761, '4', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (2763, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (2764, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (2765, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '7', 'GITAM', 'E.C.E', '9', '10', '0'), (2766, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (2767, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '150', '313', '4', '99', 'NIT Jalandhar', 'Industrial Engineering', '7.65', '10', '0'), (2769, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (2770, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (2771, '4', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (2772, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '156', '319', '3', '105', 'Nagpur University', 'B.E electronics', '61', '100', '0'), (2773, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '147', '311', '3', '83', 'Pune University', 'Computer Science', '63.51', '100', '0'), (2774, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '148', '308', '3', '103', 'Medicaps Institute of Science & Technology Indore', 'EE', '74.97', '100', '0'), (2775, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (2776, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '148', '305', '4', '101', 'Ramrao Adik Institute of Technology', 'IT', '63', '100', '0'), (2778, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '650', '390', '1040', '3', '97', 'Sardar Patel College of Engineering', 'Electronics', '71.23', '100', '0'), (2779, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '111', 'VTU', 'CSE', '74', '100', '0'), (2780, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (2781, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (2783, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (2784, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '154', '314', '4', '117', 'MU', 'Information Technology', '63', '100', '0'), (2785, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3.5', '93', 'Anna University', 'Computer Science', '8.2', '10', '0'), (2786, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (2787, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (2788, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (2789, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '159', '322', '4', '111', 'D J Sanghvi', 'Computer Science', '65', '100', '0'), (2790, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '164', '153', '317', '4', '105', 'MU', 'Computer Engineering', '68', '100', '0'), (2791, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '157', '150', '307', '3', '98', 'SRM', 'EEE', '8.324', '10', '21'), (2792, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '460', '1260', '4', '247', 'Sardar Patel College of Engineering', 'Information Technology', '67.86', '100', '0'), (2793, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (2794, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (2795, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '110', 'University of Pune', 'Electronics', '64', '100', '0'), (2796, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '163', '147', '310', '3.5', '106', 'U.P.T.U.', 'ECE', '73.3', '100', '0'), (2797, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '4', '102', 'MU', 'Information Technology', '62', '100', '0'), (2798, '4', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '163', '149', '312', '3.5', 'None', 'NIT Durgapur', 'Mechanical Engineering', '7.93', '10', '0'), (2799, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '110', 'UPTU', 'Computer Science and Engineering', '70', '100', '0'), (2800, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '150', '147', '297', '3.5', '110', 'PICT', 'Computer Engineering', '63', '100', '0'), (2801, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '690', '1490', '3.5', '111', 'University of Mumbai', 'Electronics', '57', '100', '0'), (2802, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '149', '311', '4', '112', 'UPTU', 'Information Technology', '75.1', '100', '0'), (2804, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (2805, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3', '76', 'VTU', 'Computer Science', '70', '100', '0'), (2806, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '168', '150', '318', '4', '108', 'SSN College of Engineering', 'EEE', '74', '100', '0'), (2807, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '257', 'MU', 'IT', '65', '100', '0'), (2808, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'Computer Engineering', '3.63', '4', '0'), (2809, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '112', 'PICT', 'CS', '3.63', '4', '0'), (2810, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (2811, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (2812, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '550', '1340', '3', '106', 'Punjabi University', 'University college of Engineering', '68.8', '100', '0'), (2813, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (2814, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (2815, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (2816, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '142', '299', '3.5', '88', 'NIT Kurukshetra', 'Electronics and Communication', '8.039', '10', '0'), (2817, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '106', 'Punjab Technical University', 'Computer Science', '64.73', '100', '84'), (2818, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '540', '1280', '3', '104', 'MU', 'IT', '71', '100', '0'), (2819, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3', '92', 'VTU', 'ISE', '75', '100', '0'), (2820, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '168', '155', '323', '3.5', '109', 'SASTRA', 'CSE', '8.4', '10', '0'), (2822, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '650', '630', '1280', '4', '112', 'univeristy of mumbai', 'information technology', '57', '100', '0'), (2823, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (2824, '4', 'Admit', 'MS', 'Telecom management', 'Fall ', '2015', '157', '150', '307', '4', '107', 'GITAM', 'Electronics and Communications Engineering', '8.73', '10', '0'), (2825, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '660', '1380', '3.5', '111', 'University of Mumbai', 'computers', '59.02', '100', '0'), (2826, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (2827, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (2828, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (2829, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '96', 'Thapar University', 'Computer Science Engineering', '7.99', '10', '18'), (2830, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (2831, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', '164', '150', '314', '3.5', '113', 'VESIT', 'Computers', '3.5', '4', '0'), (2832, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '4.5', '102', 'Thadomal Shahani Engineering College', 'Computers', '60', '100', '0'), (2833, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '104', 'Shivaji University', 'Computer Science and Engineering', '58', '100', '0'), (2834, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '148', '313', '3.5', '313', 'Nagpur University', 'Electronics', '74.5', '100', '0'), (2835, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '50', '34', '84', '5.5', '112', 'Nirma Institute of Technology', 'B.Tech Computer Engg.', '7.54', '10', '0'), (2836, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'D J Sanghvi', 'telecomm', '71', '100', '0'), (2837, '4', 'Admit', 'MS', 'mba', 'Fall ', '2011', '48', '28', '76', '4.5', '110', 'Anna University', 'ECE', '68', '100', '0'), (2838, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '39', '27', '66', '5', '108', 'Anna University', 'Information technology', '68', '100', '0'), (2839, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '108', 'RTM Nagpur University', 'Electronics and Telecommunication', '75.61', '100', '52'), (2840, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '590', '1370', '3', '97', 'SDM', 'E&C;', '75.5', '100', '0'), (2841, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (2842, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '155', '154', '309', '3', '105', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.24', '10', '6'), (2843, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '148', '310', '3', '96', 'None', '0', '67', '100', '0'), (2844, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2008', '720', '580', '1300', 'None', '270', 'Bangalore Institute of Technology', 'Computer Science', '69.22', '100', '0'), (2845, '4', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '164', '155', '319', '3.5', '109', 'GGSIPU', 'CS', '72', '100', '12'), (2846, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (2847, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '690', '1490', '5', '300', 'ICFAI', 'Electronics and Communication', '9.82', '10', '0'), (2848, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '155', '318', '3', '106', 'MU', 'Information Technology', '68', '100', '0'), (2849, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '460', '1140', '4', '97', 'VIT', 'IT', '0', '0', '0'), (2850, '4', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '500', '1250', '3', '101', 'North Gujarat University', 'EC', '3.6', '4', '0'), (2851, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (2852, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '153', '318', '4', '111', 'TSEC', 'EXTC', '58', '100', '0'), (2853, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '510', '1290', '3.5', '110', 'VESIT', 'Electronics and Telecommunications', '60', '5', '0'), (2854, '4', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '680', '700', '1380', '3.5', '113', 'Anna University', 'Bio Technology', '8.7', '10', '0'), (2855, '4', 'Admit', 'MS', 'MIS', 'Fall', 'None', '161', '159', '320', 'None', '108', 'Amrita School of Engineering', 'computer science', '7.56', '10', '0'), (2856, '4', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (2857, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (2858, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '101', 'UPTU', 'Computer Science', '77', '100', '48'), (2859, '4', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (2860, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '156', '152', '308', '4', '104', 'JMIT Radaur(Kurukshetra University)', 'Electronics & Communications', '72', '100', '0'), (2862, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (2863, '4', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '740', '450', '1190', 'None', '102', 'K.C college of engineering', 'I.T', '0', '0', '0'), (2864, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '780', '410', '1190', '3', '1210', 'SRKNEC nagpur', 'elect & communication', '68', '100', '0'), (2865, '4', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (2866, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'VJTI', 'Electrical Engineering', '8.4', '10', '0'), (2867, '4', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '490', '1290', '3', '105', 'Medicaps Institute of Science & Technology Indore', 'Computer Science', '79.25', '100', '0'), (2868, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '113', 'RGPV', 'Information Technology', '80', '100', '0'), (2869, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (2870, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '570', '1340', '3', '107', 'BBSBEC', 'CSE', '76.1', '100', '0'), (2871, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '273', 'PICT', 'Computer Science', '60', '100', '0'), (2872, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '148', '308', '3.5', 'None', 'BNMIT', 'Information Science', '69', '100', '0'), (2873, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '580', '1380', '3', '101', 'None', '0', '85', '100', '0'), (2874, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '160', '153', '313', '3', '8', 'SSN College of Engineering', 'Information Technology', '79', '100', '38'), (2875, '4', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (2876, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '82', 'Shivaji University', 'Computer Science', '65.8', '100', '0'), (2877, '4', 'Admit', 'MS', 'None', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'SUA Iran', 'Electrical Engineering', '0', '0', '0'), (2878, '4', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '750', '550', '1300', '4', '275', 'MU', 'EXTC', '67', '100', '0'), (2879, '4', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '460', '1250', '3', '107', 'RGPV', 'Electronica and Comm', '70.28', '100', '0'), (2880, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Pune University', 'Electronics & Telecom', '65', '100', '0'), (2881, '4', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '770', '570', '1340', '3.5', '116', 'Cummins College of Engineering Pune', 'Pune University', '64.42', '100', '0'), (2882, '4', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '660', '1460', '4.5', '293', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (2883, '4', 'Admit', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (2884, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '165', '157', '322', '3', '105', 'National Taiwan University', 'Library and Information Science', '3.54', '4', '0'), (2885, '4', 'Admit', 'MS', 'Engineering Management', 'Summer ', '2015', '161', '152', '313', '3.5', '96', 'University of Mumbai', 'Information Technology', '66', '100', '29'), (2886, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '730', '490', '1220', '3', '104', 'University of Mumbai', 'Electrical Engg.', '67', '100', '0'), (2887, '4', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '96', 'Global Institute of Technology(RTU)', 'IT', '71.4', '100', '0'), (2888, '4', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '148', '306', '3.5', '104', 'Anna University', 'ECE', '8.69', '10', '0'), (2889, '4', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '151', '141', '292', '3', '83', 'Anna University', 'Electronics & Instrumentation', '8.01', '10', '0'), (2891, '4', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (2892, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '520', '1290', '3', '102', 'MU', 'ELECTRONICS & TELECOMMUNICATION', '6.5', '10', '0'), (2893, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (2894, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '154', '317', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '70.1', '100', '0'), (2895, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (2896, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (2897, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (2898, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (2899, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '147', '303', '3', '98', 'None', '0', '0', '0', '0'), (2900, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '450', '1170', '3.5', '90', 'University of Mumbai', 'Electronics & Telecommunication', '63', '100', '0'), (2901, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (2902, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (2903, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '740', '660', '1400', '3', '90', 'RGTU', 'ECE', '3.6', '4', '0'), (2904, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3', '100', 'Bharati Vidyapeeth', 'Electrical', '58', '100', '0'), (2905, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (2906, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (2907, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '97', 'UPTU', 'Computer Science & Engineering', '66.4', '100', '9'), (2908, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (2909, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '49', '24', '73', 'None', 'None', 'Amrita School of Engineering', 'IT', '6.7', '10', '0'), (2910, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (2911, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (2912, '4', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (2913, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '149', '313', '3.5', '109', 'FR. CRIT Vashi', 'Information Technology', '68.8', '100', '0'), (2914, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (2915, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '310', '1020', 'None', '86', 'University of Mumbai', 'BE Information Technology', '0', '0', '0'), (2916, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (2917, '4', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (2918, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '560', '1340', '4', '104', 'VTU', '0', '61', '100', '0'), (2919, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '97', 'MU', 'Computers', '57', '100', '0'), (2920, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '146', '311', '3.5', '95', 'IET DAVV', 'IT', '3.68', '4', '0'), (2921, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (2922, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (2923, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (2924, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (2925, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (2926, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3', '92', 'UPTU', 'IT', '63', '100', '42'), (2927, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '740', '490', '1230', '3', '101', 'MU', 'I.T', '64', '100', '0'), (2928, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (2929, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (2930, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (2931, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '111', 'MU', 'Computer Engg', '67.22', '100', '0'), (2932, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (2933, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (2934, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '97', 'University of Mumbai', 'Computer Engineering', '60.88', '100', '0'), (2935, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '680', '600', '1280', '2.5', '102', 'VTU', 'Electronics & Communication', '61', '100', '0'), (2936, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '167', '156', '323', '3.5', '104', 'Saboo Siddik Mumbai university', 'Computer Science', '57', '100', '0'), (2937, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (2939, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '340', '1050', '3', '93', 'None', 'ECE', '63', '100', '0'), (2940, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (2941, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '147', '310', '2.5', '95', 'Gujarat Technological University', 'ECE', '70', '100', '77'), (2942, '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '660', '350', '1010', '3', '92', 'University of Mumbai', 'Information Technology', '62.56', '100', '32'), (2943, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (2944, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '530', '1280', '4', '95', 'Manipal Institue of Technology', 'Computer Science', '8.05', '10', '0'), (2945, '4', 'Reject', 'MS', 'Information Assurance', 'Spring ', '2014', '158', '146', '304', '3', '98', 'Jaypee Institute of Information Technology', 'Computer Science', '63', '100', '0'), (2946, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (2947, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', 'None', '108', 'KIIT', 'Electrical', '7.31', '10', '0'), (2948, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (2949, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '670', '410', '1080', '3', '260', 'RMK Engineering College', 'Computer Science', '70', '100', '0'), (2950, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (2951, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (2952, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '146', '300', '3.5', '89', 'NMAMIT Nitte', 'EC', '8.38', '10', '0'), (2953, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (2954, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2010', '710', '390', '1100', '3', '105', 'Anna University', 'CSE', '74', '100', '0'), (2955, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '590', '1300', '4.5', '111', 'Veer Narmad South Gujarat University', 'Instrumentation & Control', '64', '100', '0'), (2957, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '350', '1120', '3', 'None', 'CSVTU', 'Information Technology', '8.65', '10', '0'), (2959, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', '3', '90', 'Vishwakarma Institute of Technology', 'Computer', '6.7', '10', '0'), (2960, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '750', '570', '1320', 'None', '101', 'MIT Pune', 'Electronics and telecommunication', '69.53', '100', '0'), (2961, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '147', '304', '2.5', '87', 'Dharamsinh Desai University', 'Information Technology', '64.67', '100', '0'), (2962, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '151', '313', '4', '107', 'Anna University', 'Electronics and Instrumentation Engineering', '7', '10', '0'), (2963, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (2964, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (2965, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '158', '149', '307', '3.5', '96', 'Panjab University', 'Electrical and Electronics', '62.37', '100', '0'), (2966, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3.5', '101', 'ITM University Gurgaon', 'Computer Science (B.Tech)', '6.66', '10', '0'), (2967, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '147', '305', '3', '82', 'VTU', 'Computer Science', '67', '100', '0'), (2968, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (2969, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '145', '306', '3', '90', 'KITS Kakatiya University', 'Electrical & Electronics Engineering', '66.16', '100', '0'), (2970, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (2971, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '145', '312', '3', 'None', 'University of Mumbai', 'Information Technology', '70.13', '100', '42'), (2972, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '570', '1300', '3', '98', 'K J Somaiya College of Engiineering', 'Computer Engg', '60', '100', '0'), (2973, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '157', '146', '303', '3', '95', 'University of Mumbai', 'Electronics', '50', '100', '0'), (2974, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '3.5', '106', 'VTU', 'Information Science', '70', '100', '0'), (2975, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (2976, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '480', '1200', '3.5', '107', 'University of Pune', 'IT', '58', '100', '0'), (2977, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (2978, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '710', '350', '1060', '3.5', '83', 'SIT', 'Information Technology', '57', '100', '0'), (2979, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '156', '144', '300', '3', '81', 'MU', 'BE in Electronics', '57', '100', '0'), (2980, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '148', '305', '4', '88', 'University of Pune', 'Computer', '62.41', '100', '0'), (2981, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (2982, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '710', '1480', '4', '280', 'MU', 'Electronics and Telecommunication', '57', '100', '0'), (2983, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '107', 'D J Sanghvi', 'Information Technology', '59.57', '100', '0'), (2984, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '660', '1380', '3.5', 'None', 'VTU', 'computer science', '60', '100', '0'), (2985, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '142', '297', '3', '6', 'None', 'I.T', '70', '100', '0'), (2986, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '470', '1200', '3', '81', 'S.R.K.N.E.C', 'Information Technology', '65', '100', '0'), (2987, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '60.41', '100', '0'), (2988, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '155', '146', '301', '3', '81', 'GITAM', 'Computer Science', '8.45', '10', '0'), (2990, '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '165', '149', '314', '4', '105', 'MU', 'Mechanical', '60', '100', '0'), (2991, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (2992, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '720', '430', '1150', '3.5', '105', 'MU', 'Information Technology', '64', '100', '0'), (2993, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '330', '1040', '3', 'None', 'D Y Patil College of Engineering', 'Information Technology', '61.5', '100', '0'), (2994, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VJTI', 'Electronics', '6', '10', '0'), (2995, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (2996, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', 'None', '85', 'BITS Pilani', 'CSE', '6.75', '10', '0'), (2997, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (2998, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (2999, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '620', '580', '1200', '4', '115', 'VTU', 'ECE', '78.5', '100', '0'), (3000, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (3001, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '144', '302', '3', '98', 'NMIMS', 'Electronics and telecomm', '3.06', '4', '0'), (3002, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '400', '1140', '3', '91', 'MU', 'Computers', '63', '100', '0'), (3003, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '108', 'BIT Mesra', 'ECE', '6.93', '10', '0'), (3004, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '151', '147', '298', '3', '91', 'MU', 'Electronics Engg', '68.6', '100', '24'), (3005, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '3', '102', 'Pune University', 'IT', '3.6', '4', '0'), (3006, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '160', '146', '306', '3', '98', 'MU', 'EXTC', '65', '100', '0'), (3007, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (3008, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '146', '305', '3.5', '99', 'RGIT', 'Comp', '53', '100', '0'), (3009, '4', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3010, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3011, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3012, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '155', '146', '301', '3.5', '100', 'VKIT', 'CS', '65', '100', '32'), (3013, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (3014, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '149', '303', '4', '108', 'Anna University', 'ECE', '74', '100', '38'), (3015, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (3016, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (3017, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '143', '303', '3', 'None', 'VRSEC', 'IT', '8.45', '10', '0'), (3018, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '98', 'IT BHU', 'Electrical Engg', '7.48', '10', '0'), (3019, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '106', 'RGPV', 'cs', '69.56', '100', '0'), (3020, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '156', '151', '307', '3', '101', 'UPTU', 'information technology', '74.4', '100', '0'), (3021, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '109', 'University College Of Engineering Kariavattom Trivandrum', 'Computer Science', '6.7', '10', '0'), (3022, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (3023, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '380', '1130', '3', '90', 'PESIT', 'Information Scinece and Engineering', '67', '100', '0'), (3024, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (3025, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '670', '450', '1120', '3', 'None', 'sbmjce', 'eee', '0', '0', '0'), (3026, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3027, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (3028, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2013', '164', '150', '314', '3.3', '89', 'Wuhan University of Technology', '0', '0', '100', '0'), (3029, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '111', 'Pune University', 'Mechanical', '53', '100', '0'), (3030, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '490', '1200', '3', '106', 'University', 'CSE', '7.89', '10', '0'), (3031, '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2011', '740', '590', '1330', '3', '100', 'Southeast University', 'Communication Engineering', '80', '100', '0'), (3032, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '2.5', '84', 'SIET affliated to JNTU', 'IT', '68.25', '100', '0'), (3033, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (3034, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '730', '380', '1110', '3', '95', 'Velalar College of Engg & Tech Erode', 'Computer Science and Engineering', '75', '100', '0'), (3035, '4', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2011', '730', '340', '1070', 'None', '80', 'University of Mumbai', 'Electronics and Telecommunication', '69.72', '100', '0'), (3036, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '380', '1090', '2.5', '103', 'NMIMS', 'Electronics', '3.32', '4', '0'), (3037, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (3038, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '154', '311', '3', '104', 'VTU', 'ISE', '7.04', '10', '45'), (3039, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '390', '1180', '3.5', '112', 'Gujarat Technological University', 'Computer', '3.82', '4', '0'), (3040, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '155', '320', '3', 'None', 'PTU-Dav Institue of Engineering and Technology', 'Information Technology', '69', '100', '0'), (3041, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '460', '1240', '3', '101', 'None', '0', '0', '0', '0'), (3042, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'MU', 'Computer Engineering', '62.6', '100', '15'), (3043, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (3044, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '3.5', '106', 'MU', 'Computers', '59.76', '100', '0'), (3045, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3', '99', 'SSEC', 'CSE', '73', '100', '0'), (3046, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (3047, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '161', '153', '314', '3', 'None', 'SASTRA', 'info and comm technology (ICT)', '7.3', '10', '24'), (3048, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '680', '1460', '4.5', '105', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3049, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Amrita School of Engineering', 'CSE', '7', '10', '0'), (3050, '4', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '50', '21', '71', '4', '88', 'ITM Gurgaon', 'CSE', '68', '100', '0'), (3051, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (3052, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '150', '310', '3', '102', 'MU', 'IT', '65', '100', '0'), (3053, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (3054, '4', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (3055, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '147', '301', '3', '110', 'University of Mumbai', 'computer engineering', '3.7', '4', '0'), (3056, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (3057, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', 'None', 'None', '0', 'None', '105', 'Pune University', 'CS', '7', '10', '0'), (3058, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '145', '309', '3', '103', 'Amrita School of Engineering', 'Mechanical', '6.1', '10', '36'), (3059, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '158', '150', '308', '3.5', 'None', 'RMK Engineering College', 'EEE', '72', '100', '0'), (3060, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '3', '92', 'Maharashtra Academy of Engineering / University of Pune', 'Computer Engineering', '62.8', '100', '0'), (3061, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '760', '450', '1210', 'None', '97', 'Anna University', 'Computer Science', '76', '100', '0'), (3062, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (3064, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (3065, '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '790', '650', '1440', '3', '100', 'Jaypee Institute of Information Technology', 'CSE', '6.9', '10', '0'), (3066, '4', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '163', '153', '316', '4', '113', 'MU', 'Civil Engineering', '51', '100', '22'), (3067, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '156', '147', '303', '3', '89', 'Atharva College', 'computer', '60', '100', '0'), (3068, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '580', '1310', '3.5', '91', 'Pune University', 'Electrical engineering', '58.51', '100', '0'), (3069, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (3070, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', '103', 'KIIT', 'EEE', '8', '10', '0'), (3071, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '143', '303', '3', '91', 'GITAM', 'CSE', '7.87', '10', '0'), (3072, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '153', '149', '302', '3', 'None', 'University of Mumbai', 'Management', '61', '100', '36'), (3073, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (3074, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (3075, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (3076, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (3077, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (3078, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (3079, '4', 'Reject', 'MS', 'MIS', 'Summer ', '2013', '159', '152', '311', '4', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engg.', '55', '100', '0'), (3080, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '520', '1210', 'None', '93', 'MU', 'Information Technology', '57', '100', '0'), (3081, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (3082, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (3083, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (3084, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '460', '1250', '4.5', '283', 'Pune University', 'Computer Engg.', '57', '100', '0'), (3085, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '158', '144', '302', '3', '90', 'Thadomal Shahani Engineering College', 'CS', '7', '10', '0'), (3086, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3.5', '101', 'MU', 'Computer', '66', '100', '0'), (3087, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (3088, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (3089, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (3090, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '86', 'Anna University', 'CS', '7', '100', '29'), (3091, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '740', '400', '1140', '3.5', '99', 'Bharat Institute of Engineering and Technology', 'Instrumentation and Control', '79', '100', '0'), (3092, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '166', '140', '306', '3', '85', 'VTU', 'Computer Science', '72.4', '100', '36'), (3093, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '145', '308', '2.5', '87', 'Panimalar Engineering College', 'ECE', '82', '100', '0'), (3094, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (3095, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (3096, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2009', '780', '450', '1230', '3.5', '101', 'University of Mumbai', 'CS', '0', '0', '0'), (3097, '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (3098, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '710', '390', '1100', '3', '103', 'University of Pune', 'Information Technology', '58', '100', '0'), (3099, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'Fr. agnels vashi', 'Information technology', '56.45', '100', '0'), (3100, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '530', '1240', '3', '95', 'Vishwakarma Institute of Technology', 'Electronics', '68.2', '100', '0'), (3101, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '97', 'VTU', 'electronics and communication', '71', '100', '0'), (3102, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '91', 'Walchand College Of Engineering', 'Computer Science & Engineering', '63.71', '100', '0'), (3103, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (3104, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (3105, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (3106, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (3107, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (3108, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '730', '400', '1130', '3', '96', 'Anna University', 'ECE', '7.5', '10', '0'), (3109, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '145', '301', '3', '97', 'VTU', 'CSE', '3.34', '4', '0'), (3110, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (3111, '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '152', '152', '304', '3', 'None', 'PESIT', 'MECHANICAL', '6.13', '10', '0'), (3112, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '155', '145', '300', '3', '100', 'MU', 'IT', '60', '100', '8'), (3113, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '750', '440', '1190', '4', '283', 'J.S.S.A.T.E. Noida', 'Computer Science', '69', '100', '0'), (3114, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '93', 'GGSIPU', 'CSE', '70', '100', '36'), (3115, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '380', '1160', '2.5', '91', 'Pondicherry University', 'CSE', '7.45', '10', '0'), (3116, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '660', '530', '1190', '3.5', '96', 'Pune University', 'B.E.Computer', '74', '100', '0'), (3117, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (3118, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (3119, '4', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '690', '330', '1020', '3.5', '92', 'Shivajirao S. Jondhale College of Engineering', 'Electronics & Telecomm', '57.5', '100', '0'), (3120, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (3121, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (3122, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '153', '148', '301', 'None', '87', 'Anna University', 'Computer Science', '75', '100', '0'), (3123, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (3124, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (3125, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '580', '1310', '3', '87', 'CBIT', 'Mechanical', '72.2', '100', '0'), (3126, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (3127, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (3128, '4', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '340', '1070', '3', '80', 'University of Mumbai', 'Electronics & Telecommunication', '69.72', '100', '0'), (3129, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '145', '304', '3', '98', 'MU', 'E&TC;', '64', '100', '0'), (3130, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (3131, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '144', '300', 'None', 'None', 'Vidyalankar Institute of Technology', 'Computer Engg', '65', '100', '0'), (3132, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '4.5', '280', 'None', 'Comp Sc.', '74', '100', '0'), (3133, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'Pune University', 'Computer Engg', '54', '100', '0'), (3134, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '470', '1190', '3.5', '90', 'Gautam Buddh Technical University', 'Electrical Engineering', '66', '100', '0'), (3135, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (3136, '4', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '360', '1160', '3.5', '108', 'Dr. B.A.M.U.', 'MECHANICAL', '65', '100', '0'), (3137, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '460', '1190', '3.5', '108', 'MU', 'Computer', '63', '100', '0'), (3138, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (3139, '4', 'Reject', 'MS', 'Entrepreneurship', 'Fall ', '2014', '151', '149', '300', '3', '97', 'VIT', 'ECE', '6.45', '10', '0'), (3140, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (3141, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '530', '1260', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '70', '100', '0'), (3142, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '141', '299', '3.5', 'None', 'JNTU', 'CSE', '72.56', '100', '0'), (3143, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (3144, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '770', '470', '1240', '3.5', '253', 'VJTI', 'Mechanical', '65.9', '100', '0'), (3146, '4', 'Reject', 'MS', 'Computer Science', 'Spring', 'None', '730', '510', '1240', '3.5', 'None', 'University of Pune', '0', '70', '100', '0'), (3147, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '155', '153', '308', '3', '106', 'University of Pune', 'Information Technology', '59.3', '100', '7'), (3148, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (3149, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (3150, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (3151, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3', '105', 'MPSTME NMIMS', 'CS', '3', '4', '0'), (3152, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '144', '304', '2.5', '93', 'MU', 'Computer Engineering', '53', '100', '42'), (3153, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (3154, '4', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '150', '309', '3.5', '108', 'VTU', 'ECE', '69', '100', '0'), (3155, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', 'None', '107', 'MU', 'Information Technology', '54', '100', '0'), (3156, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '149', '313', '3.5', '100', 'University of Dhaka', 'Computer Science & Engineering', '3.44', '4', '40'), (3157, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '2.5', '92', 'Gujarat Technological University', 'computer', '7.39', '10', '0'), (3158, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '150', '305', '3', '108', 'MU', 'Information Technology', '66', '100', '0'), (3159, '4', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (3160, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '154', '148', '302', '3', '107', 'Jain University', 'EC', '69', '100', '0'), (3161, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (3162, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (3163, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '144', '301', '3', '91', 'VIT Pune', 'Instrumentation', '61', '100', '0'), (3164, '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2013', '160', '148', '308', 'None', '104', 'Symbiosis Institute of Technology', 'Computer Science', '2.68', '4', '0'), (3166, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '147', '306', '3.5', '101', 'Sardar Vallabhbhai National Institute of Technology', 'Information Technology', '7.74', '10', '0'), (3167, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '105', 'Biju Patnaik University of Technology', 'CSE', '7.65', '10', '31'), (3168, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (3169, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '470', '1210', '3.5', '108', 'VTU', 'Computer Science', '74', '100', '0'), (3170, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (3171, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (3172, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '144', '298', '3.5', '93', 'APSCE VTU', 'Information Science', '64.5', '100', '0'), (3173, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2014', '48', '34', '82', '4.5', '103', 'Manipal Institue of Technology', 'Electrical and Electronics', '6.58', '10', '0'), (3174, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '159', '325', '3.5', '107', 'ITM Gurgaon', 'CS', '61', '100', '0'), (3175, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '97', 'IIIT Allahabad', 'IT', '6.71', '10', '0'), (3176, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (3177, '4', 'Reject', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (3178, '4', 'Reject', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (3179, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (3180, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (3181, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '380', '1070', '2.5', '89', 'K J Somaiya College of Engiineering', 'IT', '73', '100', '0'), (3182, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (3183, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '750', '410', '1160', '4', '106', 'Anna University', 'Computer Science', '73', '100', '0'), (3184, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '143', '304', '3', 'None', 'SUNY buffalo', 'EE', '73', '100', '0'), (3185, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (3186, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (3187, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (3188, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '350', '1050', '3.5', '103', 'Pune University', 'IT', '0', '0', '0'), (3190, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '155', '152', '307', '2.5', '94', 'Sri Venkateswara College of Engineering', 'ECE', '6.82', '10', '0'), (3191, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '460', '1260', '3', '112', 'SJCE', 'Electronics and Communication', '68', '100', '0'), (3192, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '460', '1230', '3', '100', 'Shivaji University', 'Mechanical Engineering', '60.47', '100', '0'), (3193, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '161', '318', '3.5', '115', 'Punjabi University', 'Electronics and Communication', '70.6', '100', '0'), (3194, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (3196, '4', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2014', '156', '149', '305', '4', '107', 'Osmania University', 'Mechanical', '61', '100', '0'), (3197, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (3198, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (3199, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '144', '304', '3', '102', 'University of Pune', 'Electronics and Telecommunication', '71.4', '100', '0'), (3200, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '165', '326', '3.5', '112', 'BITS Pilani', 'E.E.E', '5.73', '10', '0'), (3201, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '103', 'GNIT (JNTU-H)', 'Computer Science and Engineering', '68', '100', '0'), (3202, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '490', '1170', '3', '93', 'SRM', 'CS', '8.69', '10', '0'), (3203, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3', '101', 'BIT Mesra', 'Computer Science Enggineering', '6.21', '10', '24'), (3204, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (3205, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '148', '304', 'None', '102', 'MGM CoET Noida', 'CS', '61', '100', '0'), (3206, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (3207, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (3208, '4', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (3209, '4', 'Reject', 'MS', 'Management Information System', 'Fall ', '2015', '162', '151', '313', '3.5', '105', 'Kurukshetra University', 'Information Technology', '61.4', '100', '31'), (3210, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '159', '319', '4.5', '108', 'COEP', 'Electrical Engineering', '6.54', '10', '9'), (3211, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '390', '1090', '4', '103', 'St Francis Institute of Technology - Mumbai Unversity', 'IT', '60', '100', '0'), (3212, '4', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (3213, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '156', '323', '4', '110', 'MU', 'Electronics and Telecommunication', '67', '100', '0'), (3214, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '780', '440', '1220', '3', '98', 'MU', 'Electronics and telecommunication', '53', '100', '0'), (3216, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (3217, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '139', '302', 'None', '81', 'MU', 'Computer Engineering', '64', '100', '0'), (3219, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (3220, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (3221, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (3222, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '147', '304', '3', '7', 'Pune University', 'computer', '54.5', '100', '0'), (3223, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (3224, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (3225, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '152', '149', '301', '3.5', '82', 'Goa University', 'Electronics & Telecom', '69', '100', '0'), (3226, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '154', '149', '303', '3', '98', 'Biju Patnaik University of Technology', 'Applied Electronics & Instrumentation', '7.827', '10', '48'), (3227, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '153', '313', '3', '103', 'Gujarat Technological University', 'ECE', '3.42', '4', '0'), (3228, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '4', '109', 'NIT Tirchy', 'Computer Science and Engineering', '6.82', '10', '19'), (3229, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '480', '1250', '2.5', '96', 'MU', 'information technology', '5.7', '100', '0'), (3230, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '149', '303', '4', '105', 'University of Pune', 'Information Technology', '55.36', '100', '0'), (3232, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '149', '312', '3', '94', 'MU', 'Information Technology', '62', '100', '0'), (3233, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '146', '303', '3.5', '97', 'University of Mumbai', 'Information Technology', '0', '0', '0'), (3234, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '290', '1030', '3', '86', 'Pune University', 'Computer Engg', '68.6', '100', '0'), (3235, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '159', '318', '3', '106', 'JNTU', 'CS', '58', '100', '0'), (3236, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '151', '146', '297', '3', '85', 'VIIT', 'Computer Engg', '59', '100', '0'), (3237, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '140', '298', '2.5', '84', 'Kurukshetra University', 'Computer Science engineering', '67', '100', '0'), (3238, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '109', 'MU', 'Information Technology', '62', '100', '0'), (3239, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (3240, '4', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '159', '144', '303', '2.5', '7', 'Amrita School of Engineering', 'Electronics and communication', '6.47', '10', '0'), (3241, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '144', '304', '4', '88', 'RGMCET', 'CSE', '73.8', '100', '0'), (3242, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (3243, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2011', '680', '480', '1160', '3.5', '99', 'MU', 'computer science', '69', '100', '0'), (3244, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (3245, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (3246, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (3247, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '155', '152', '307', '3.5', '110', 'UMIT SNDT UNIVERSITY', 'ELECTRONICS AND COMMUNICATION', '6.83', '10', '0'), (3248, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (3249, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '148', '309', '3.5', '102', 'St. vincent pallotti college iof engineering and technology', 'Computer Engineering', '70.23', '100', '0'), (3250, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (3251, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '3.5', '107', 'Anna University', 'ECE', '73', '100', '0'), (3252, '4', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '168', '147', '315', '3.5', '91', 'VTU', 'Electronics & Communication', '67', '100', '0'), (3253, '4', 'Reject', 'MS', 'Computational Science', 'Fall ', '2011', '740', '310', '1050', '3', '84', 'Saveetha Engineering College', 'Information Technology', '73', '100', '0'), (3254, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '160', '324', '4', '103', 'Atharva College', 'Information Technology', '58.6', '100', '0'), (3255, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '149', '313', '3', '92', 'Lovely Professional Univesity', 'Computer Science', '74.6', '100', '39'), (3256, '4', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (3257, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (3258, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '380', '1150', '3', '90', 'K J Somaiya College of Engiineering', 'I.T.', '66', '100', '0'), (3259, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '340', '1110', '3.5', '93', 'Sinhgad College of Engineering', 'Information Technology', '64', '100', '0'), (3260, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (3261, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (3262, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '760', '440', '1200', '3', '88', 'Coimbatore Insitute of Technology', 'Computer Science and engineering', '7.23', '10', '0'), (3263, '4', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '150', '309', '2.5', '94', 'SVITS', 'Electronics & Communication', '70', '100', '0'), (3264, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (3265, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '430', '1230', '3.5', '97', 'Amrita School of Engineering', 'computer science', '6.43', '10', '0'), (3266, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (3267, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '102', 'NIT Surat', 'Computer Engineeing', '7.61', '10', '0'), (3268, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (3269, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (3271, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '750', '470', '1220', '3', '102', 'IET DAVV', 'ELECTRONICS', '67', '100', '0'), (3272, '4', 'Reject', 'MS', 'Engineering Management', 'Summer ', '2014', '163', '153', '316', '4', '114', 'MU', 'Electrical Engineering', '60', '100', '0'), (3273, '4', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2015', 'None', 'None', '0', 'None', '99', 'None', '0', '0', '0', '51'), (3274, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (3275, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (3277, '4', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '157', '152', '309', '3.5', 'None', 'SRM', 'Electronics and Communications', '7.7', '10', '0'), (3278, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '3', '100', 'Jaypee Institute of Information Technology', 'Computer Science', '5.6', '10', '43'), (3279, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (3280, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '750', '460', '1210', '4', '92', 'MU', 'IT', '68', '100', '0'), (3281, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '530', '1270', '4', '110', 'VTU', 'Computer Science', '59.5', '100', '0'), (3282, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (3283, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (3284, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (3285, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '560', '1270', '3', '94', 'MU', 'computer', '63', '100', '0'), (3287, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '450', '1200', '3.5', '85', 'PICT', 'Computer Engineering', '0', '0', '0'), (3288, '4', 'Reject', 'MS', 'MIS', 'Fall', 'None', '156', '144', '300', '3', '91', 'Rajasthan Technical University', 'computer science', '3.3', '4', '24'), (3289, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', '3.5', '101', 'MU', 'Computer engineering', '64', '100', '36'), (3290, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '156', '146', '302', '3.5', '101', 'Sapthagiri College of Engineering', 'Computer Science', '76.13', '100', '26'), (3291, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (3292, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '3', '112', 'MU', 'EXTC', '63', '100', '42'), (3294, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '520', '1280', '3', '97', 'Institute of Engineering & Technology DAVV Indore', 'Computer Engineering', '77', '100', '0'), (3295, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (3296, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (3297, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (3298, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '146', '304', '4', '101', 'Malnad College Of Engineering', 'CS and E', '79.91', '100', '0'), (3299, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (3300, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (3301, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (3302, '4', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (3304, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '430', '1190', '3.5', '111', 'JNTU', 'Computer Science', '70', '100', '0'), (3305, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (3306, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (3307, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (3308, '4', 'Reject', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (3309, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '3.5', '102', 'VTU', 'Computer Science and Engineering', '71', '100', '0'), (3310, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (3311, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (3312, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '3', '99', 'VTU', 'Information Science', '70', '100', '0'), (3313, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '147', '303', 'None', 'None', 'CMRIT', 'IT', '63', '100', '0'), (3314, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2008', '710', '370', '1080', '3', '102', 'Sree Sastha Institute of Engineering and Technology', 'Computer Science and Engineering', '75.29', '100', '0'), (3315, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '680', '1390', '4', '109', 'MU', 'Computer Science', '61.6', '100', '0'), (3316, '4', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '740', '510', '1250', '4', '104', 'MU', 'computer science', '55', '100', '0'), (3317, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '152', '308', '4', '109', 'NIT Tirchy', 'Chemical Engineering', '6.2', '10', '0'), (3318, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '3.5', 'None', 'GITAM', 'Computer Science and Engineering', '7.9', '10', '0'), (3319, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '710', '410', '1120', '3', '108', 'MU', 'Information Technology', '58', '100', '0'), (3320, '4', 'Reject', 'MS', 'Textile Science & Technology', 'Fall ', '2013', '152', '149', '301', '3', '101', 'Anna University', 'textile', '8.24', '10', '0'), (3321, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '670', '500', '1170', '2.5', '89', 'Pune University', 'Computer Engineering', '62.4', '100', '0'), (3322, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (3323, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '155', '145', '300', '3', '99', 'Osmania University', 'EEE', '66', '100', '0'), (3324, '4', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (3325, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (3326, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '157', '146', '303', '3.5', '99', 'MU', 'Mechanical engineering', '57', '100', '0'), (3328, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '144', '303', '3.5', '93', 'Fr.C. Rodrigues Institute of Technology Vashi Navi Mumbai', 'Computer Science', '64.33', '100', '0'), (3329, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '410', '1100', '3', 'None', 'RAIT', 'Computer Engineering', '65', '100', '0'), (3332, '4', 'Reject', 'MS', 'Information Systems', 'Fall ', '2015', '157', '145', '302', '3', '97', 'ASIET', 'IT', '70.6', '100', '42'), (3334, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '105', 'RAIT', 'Instrumentation', '60', '100', '0'), (3335, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (3336, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3337, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '150', '312', '3.5', '96', 'Narsee Monjee Institute of Management studies', 'Computer Science', '3.1', '4', '0'), (3338, '4', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (3339, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '480', '1210', '3.5', '108', 'VTU', 'Information Science', '67.2', '100', '0'), (3340, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '149', '153', '302', '3', '105', 'SASTRA', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '7.7', '10', '49'), (3341, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '154', '317', '3.5', '109', 'Amrita School of Engineering', 'Information Technology', '7.81', '10', '60'), (3342, '4', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (3343, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (3344, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '98', 'B M S College of Engineering', 'CS', '8.28', '10', '0'), (3345, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', 'None', '97', 'JNTU', 'CSE', '65', '100', '0'), (3346, '4', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', '3.5', '105', 'University of Pune', 'Information Technology', '64', '100', '0'), (3347, '4', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '156', '146', '302', '4', '115', 'Anna University', 'Biomedical Engineering', '65', '100', '0'), (3348, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '780', '420', '1200', '3.5', '91', 'COEP', 'Material Science', '6.46', '10', '0'), (3349, '4', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '154', '152', '306', '4', '106', 'VTU', 'Electronics & Communication', '65', '100', '0'), (3351, '4', 'Reject', 'MS', 'None', 'Fall ', '2012', '158', '149', '307', '3.5', '99', 'None', '0', '6.6', '100', '0'), (3352, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (3353, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (3354, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '151', '307', '3', '91', 'WIT Solapur', 'ECE', '62.65', '100', '0'), (3355, '4', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '163', '152', '315', '3.5', '108', 'MU', 'Computer Engineering', '60.26', '100', '0'), (3356, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (3357, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (3358, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (3359, '4', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '610', '500', '1110', '4.5', '293', 'K J Somaiya College of Engiineering', 'Computer', '61', '100', '0'), (3360, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (3361, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (3362, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '590', '1330', '3.5', '103', 'MU', 'information technology', '61.45', '100', '0'), (3363, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3364, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '2.5', '88', 'Northeast Dianli Univ.', 'Electrical Engineering', '78', '100', '0'), (3365, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3', '93', 'RGTU', 'Computer Science', '76', '100', '0'), (3366, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (3367, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '340', '1050', '3', '92', 'Pune University', 'IT', '73', '100', '0'), (3368, '4', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '450', '1250', '2.5', 'None', 'MU', 'Electronics and Telecommunication', '58', '100', '0'), (3369, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (3370, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '102', 'IIT Kharagpur', 'Chemistry', '6.39', '10', '0'), (3371, '4', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (3372, '4', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '153', '151', '304', '3', '107', 'Gvp College Of Engineering', 'Information Technology', '77', '100', '0'), (3373, '4', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2012', '159', '143', '302', '3.5', '85', '-1', 'ECE', '79', '100', '0'), (3374, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '630', '1390', '4.5', '115', 'Anna University', 'EE', '82', '100', '0'), (3375, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '153', '323', '3.5', '105', 'CoE Trivandrum', 'CSE', '7.9', '10', '0'), (3376, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '158', '322', '4', '108', 'TSEC', 'Information Technology', '64.2', '100', '0'), (3377, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '169', '151', '320', '3', '101', 'NIET', 'ECE', '71', '100', '0'), (3378, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '110', 'Dr. M.G.R. EDUCATIONAL AND RESEARCH INSTITUTE UNIVERSITY', 'ELECTRICAL AND ELECTRONICS ENGINEERING', '9.37', '10', '24'), (3379, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (3380, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '170', '150', '320', '3', '100', 'IIIT Gwalior', 'Information Technology', '7', '10', '21'), (3381, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '155', '325', '4', '118', 'M.S.U.', 'Electronics engineering', '3.98', '4', '0'), (3382, '6', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (3383, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '160', '150', '310', '3', 'None', 'VIT', 'Civil', '8.69', '10', '0'), (3384, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (3385, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'R V College of Engineering', 'INFORMATION TECHNOLOGY', '8.39', '10', '0'), (3386, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '590', '1290', '2', '102', 'National Institute Of Engineering', 'Computer Science', '8.86', '10', '0'), (3387, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', '98', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunications', '8.77', '10', '0'), (3388, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '148', '311', '3', '98', 'SPCE', 'Electrical', '76', '100', '0'), (3389, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3390, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '150', '309', '3', '105', 'None', '0', '0', '0', '0'), (3391, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3.5', '114', 'Manipal Institue of Technology', 'ECE', '8.3', '10', '0'), (3392, '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (3394, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '147', '312', '3.5', '96', 'IIT Patna', 'Electrical Engineering', '8.62', '10', '0'), (3395, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '150', '314', '4', '102', 'Sri Venkateswara College of Engineering', 'Information Technology', '7.968', '10', '0'), (3396, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (3397, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '400', '1200', '3.5', '102', 'NIT-K Surathkal', 'Electrical', '8.1', '10', '0'), (3398, '6', 'Admit', 'MS', 'renewable energy', 'Fall', 'None', '161', '151', '312', '4.5', 'None', 'None', '0', '0', '0', '0'), (3399, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (3400, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '4.5', '114', 'UPTU', 'CSE', '70.8', '100', '0'), (3401, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '520', '1300', '3', '95', 'Acharya Nagarjuna University', 'cse', '87.6', '100', '0'), (3402, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '103', 'WBUT', 'Mechanical', '8.38', '10', '0'), (3403, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (3404, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (3405, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (3406, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '150', '320', '3.5', '102', 'NIT Rourkela', 'Electronics And Communication Engg', '9.06', '10', '40'), (3407, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '145', '311', '3', '95', 'IP University Delhi', 'Information Technology', '73.4', '100', '24'), (3408, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (3410, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '116', 'VIT University', 'Computer Sc & Engg', '8.8', '10', '0'), (3411, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (3412, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '108', 'Anna University', 'Computer Science', '8.6', '10', '0'), (3413, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '680', '1470', '3.5', '105', 'Manipal Institue of Technology', 'ECE', '7.08', '10', '0'), (3414, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '101', 'B M S College of Engineering', 'Computer Science', '9.5', '10', '33'), (3415, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '110', 'Pune University', 'Electronics Engineering', '3.25', '4', '0'), (3416, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '410', '1210', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.01', '10', '0'), (3417, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (3418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3.5', '106', 'Maharishi Dayanand University', 'Computer Engineering', '7.66', '10', '24'), (3419, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (3420, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '790', '360', '1150', '3', '102', 'VIT Pune', 'Electronics', '9', '10', '0'), (3421, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (3422, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '156', '318', '3', '101', 'Pune University', 'INDUSTRIAL ENGG.', '8.49', '10', '0'), (3423, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (3424, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (3425, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (3426, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2015', '154', '148', '302', '3', '92', 'Chhattisgarh Swami Vivekanand Technical University', 'Civil', '7.7', '10', '12'), (3427, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (3428, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (3429, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (3430, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '4', '110', 'IIIT Hyderabad', 'Information Technology', '8.9', '10', '29'), (3431, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '104', 'VTU', 'Electrical & Electronics', '69', '100', '27'), (3432, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3433, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '157', '324', '4', '114', 'SRM', 'EEE', '8.5', '10', '0'), (3434, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '310', '1060', '3', '90', 'Dharamsinh Desai University', 'Electronics and Communications', '68', '100', '0'), (3435, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '420', '1150', '4', '100', 'VTU', 'Electronics & Communications', '78.38', '100', '0'), (3436, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '430', '1220', '3.5', 'None', 'COEP', 'Information Technology', '7.94', '10', '0'), (3437, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4', '103', 'R V College of Engineering', 'Telecommunication', '9.01', '10', '0'), (3438, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '144', '306', '2', 'None', 'VTU', 'electronics and communication', '87.15', '100', '0'), (3439, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3.5', '108', 'VTU', 'Computer Science', '8.45', '10', '0'), (3440, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '600', '1380', '3.5', '115', 'VTU', 'Electrical and Electronics Engineering', '77.4', '100', '0'), (3441, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (3442, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '690', '1460', '3', '104', 'MU', 'CS', '63.5', '100', '0'), (3443, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '670', '1470', '2.5', '96', 'VIT University', 'ECE', '8.1', '10', '0'), (3444, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (3445, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '146', '305', '3', '104', 'MSRIT', 'Mechanical', '9.66', '10', '0'), (3446, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '152', '313', '4', '111', 'SRM', 'Mechanical', '9.1', '10', '0'), (3447, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '103', 'University of Mumbai', 'Information Technology', '68', '100', '0'), (3448, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '150', '315', '3', '100', 'NIT Jamshedpur', 'COMPUTER SCIENCE AND ENGINEERING', '8.4', '10', '0'), (3449, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '153', '310', '4', '109', 'VTU', 'Computer Science', '68.3', '100', '0'), (3450, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '154', '319', '3.5', '105', 'NIT-warangal', 'EEE', '7.01', '10', '27'), (3451, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '165', '152', '317', '3.5', '105', 'VIT', 'School of Electrical Engineering', '8.65', '10', '0'), (3452, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (3453, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '500', '1260', '4', '90', 'VTU', 'ISE', '78', '100', '0'), (3454, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '510', '1250', '3', 'None', 'Maharashtra Institute of Technology', 'Electronics and telecommunications', '62.12', '100', '0'), (3455, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '154', '318', '3.5', '100', 'NIT Hamirpur', 'Mechanical Engineering', '7.34', '10', '0'), (3456, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '107', 'MU', 'COMP ENGG', '60', '100', '0'), (3457, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (3458, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '111', 'Nagpur University', 'Computer Tech', '67', '100', '0'), (3459, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2008', '770', '460', '1230', '3.5', '110', 'VIT', 'E&I;', '8.76', '10', '0'), (3460, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '770', '390', '1160', '3.5', '107', 'VTU', 'Electronics and Communication', '76.46', '100', '0'), (3461, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'VIT', 'Telecommunication Engineering', '8.17', '10', '0'), (3462, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (3463, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (3464, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '88', 'Anna University', 'Electronics and communication enginnering', '8.1', '10', '0'), (3465, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '156', '317', '4', '106', 'Coimbatore Insitute of Technology', 'Computer Science', '9.4', '10', '30'), (3466, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (3467, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'SVCE', 'Electronics and Communication Engineering', '7.7', '10', '0'), (3468, '6', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (3469, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '157', '148', '305', '3.5', '93', 'Vidyalankar Institute of Technology', 'biomedical', '71.5', '100', '0'), (3470, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '147', '312', '3', '105', 'VNIT Nagpur', 'Electrical and Electronics', '8.86', '10', '14'), (3471, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '149', '307', '3', '102', 'Sri Sairam Engineering College', 'CSE', '84', '100', '0'), (3472, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (3473, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '105', 'ITME', 'Computer Science Engg', '8.08', '10', '0'), (3474, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '460', '1220', '3', '108', 'Sri Sairam Engineering College', 'Mechanical Engineering', '8.15', '10', '0'), (3475, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '101', 'Anna University', 'Mechanical Engineering', '8.53', '10', '0'), (3476, '6', 'Admit', 'MS', 'renewable energy', 'Fall ', '2015', '160', '154', '314', '4', '114', 'BMSCE', 'ECE', '8.1', '10', '0'), (3477, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '650', '1440', '2.5', '106', 'NIT Jalandhar', 'Civil Engineering', '6.22', '10', '0'), (3478, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '146', '308', '3', '102', 'University of Pune', 'Information Tech.', '72.23', '100', '36'), (3479, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'University of Pune', 'Electronics and Telecommunication', '73', '100', '0'), (3480, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '144', '302', '2.5', '81', 'Gujarat Technological University', 'Mechanical Engineeirng', '8.4', '10', '0'), (3481, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '650', '1430', '4.5', '112', 'Dr Ambedkar Institute of Technology', 'Electronics and Communications Engineering', '76', '100', '0'), (3482, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (3483, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (3484, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (3485, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '147', '305', '3', '95', 'JNTU', 'ece', '80', '100', '0'), (3486, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '152', '316', '3', '106', 'IIT Hyderabad', 'Electrical Engineering', '8.5', '10', '0'), (3487, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (3488, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '4', '113', 'VIT Pune', 'Electronics & Telecom', '8.93', '10', '0'), (3489, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '97', 'JUET Guna', 'CSE', '7.2', '10', '0'), (3490, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (3491, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '108', 'BITS Goa', 'Mechanical', '8.56', '10', '0'), (3492, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '109', 'MU', 'EnT', '71', '100', '0'), (3493, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '163', '145', '308', '3', 'None', 'Future Institute of Engineering and Management', 'E.C.E', '7.98', '10', '0'), (3494, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '4', '100', 'ssec anna university', 'cse', '8.1', '10', '0'), (3495, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '106', 'MU', 'Computers', '66', '100', '0'), (3496, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3.5', '96', 'MU', 'Information Technology', '71', '100', '42'), (3497, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '3', 'None', 'Anna University', 'Mechanical', '71.33', '100', '0'), (3498, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (3499, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (3500, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '154', '319', '3.5', '103', 'PESIT', 'Mechanical', '9.55', '10', '0'), (3501, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', 'None', 'None', 'COEP', 'Electrical', '6.2', '10', '0'), (3502, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3', '103', 'JSS Noida', 'electrical', '65', '100', '0'), (3503, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (3504, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '110', 'NIT Surat', 'Computer Engg.', '7.54', '10', '0'), (3505, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'COEP', 'mechanical engineering', '7.98', '10', '6'), (3506, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '144', '310', '3.5', '110', 'Pune University', 'Computer Engineerinmg', '9.17', '10', '0'), (3507, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '94', 'GITAM', 'ECE', '79.1', '100', '0'), (3508, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '151', '313', '3', '104', 'PICT', 'CS', '3.5', '4', '0'), (3509, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '5', '116', 'Symbiosis Institute of Technology', 'Computer Science and Information Technology', '2.8', '4', '24'), (3510, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '116', 'University of Mumbai', 'EXTC', '72.48', '100', '0'), (3511, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '540', '1300', '3.5', '102', 'VJTI', 'Information Technology', '8.4', '10', '0'), (3512, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (3513, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '4', '104', 'VTU', 'Information Science and engineering', '78', '100', '0'), (3514, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '153', '314', '4.5', '103', 'PESIT', 'Mechanical Engineering', '8.57', '100', '0'), (3515, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '111', 'Manipal Institue of Technology', 'ECE', '9.7', '10', '0'), (3516, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '720', '1510', '4.5', 'None', 'NIT Durgapur', 'Computer Science and Engineering', '8.28', '10', '0'), (3517, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '110', 'PESIT', 'ECE', '8.64', '100', '0'), (3518, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '164', '151', '315', '5', '110', 'None', 'Biomedical Engg', '8.1', '10', '0'), (3519, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '153', '316', '4', '114', 'Anna University', 'EEE', '9.25', '10', '12'), (3520, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', 'None', 'VJTI', 'computer science', '8.4', '10', '0'), (3521, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.71', '10', '0'), (3522, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '163', '326', '4.5', '112', 'None', '0', '0', '0', '0'), (3523, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '149', '314', '4', '106', 'IIITDM Kancheepuram', 'Computer Engineering', '8.61', '10', '0'), (3524, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '167', '322', '3.5', '102', 'NIT Hamirpur', 'Electrical Engg', '7.38', '10', '56'), (3525, '6', 'Admit', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (3526, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (3527, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (3528, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (3529, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '147', '311', '3', '102', 'PICT', 'EnTC', '3', '4', '0'), (3530, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '550', '1350', '4.5', '109', 'K J Somaiya College of Engiineering', 'computer', '72', '100', '0'), (3531, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (3532, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '3.5', '114', 'Osmania University', 'IT', '73', '100', '0'), (3534, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '3.5', '107', 'IIT BHU', 'Electrical Engineering', '7.3', '10', '0'), (3535, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '164', '146', '310', '3', '91', 'VTU', 'CSE', '71.8', '100', '0'), (3536, '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (3537, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '147', '312', '3', '91', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICAION', '9.48', '10', '0'), (3538, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '90', 'JSS Noida', 'INDUSTRIAL ENGINEERING AND MANAGEMENT', '71.4', '100', '16'), (3539, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (3540, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '97', 'IIIT Hyderabad', 'Computer Science', '8.22', '10', '0'), (3541, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '151', '315', '3.5', '105', 'SASTRA', 'ICT', '9.11', '10', '0'), (3542, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '3', '107', 'University of Mumbai', 'Computer Engineering', '69.68', '100', '0'), (3543, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '400', '1200', '3.5', '108', 'YCCE', 'Electronics and Telecommunication', '78.91', '100', '0'), (3545, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '640', '1430', '5', '117', 'PESIT', 'Electronics and Communication', '85', '100', '0'), (3547, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', 'None', 'None', '0', 'None', 'None', 'Pondicherry University', 'ELECTRONICS & COMMUNICATION', '7.8', '10', '0'), (3548, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (3549, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '580', '1360', '3', '98', 'SRM', 'Mechanical Engineering', '7.74', '10', '0'), (3550, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3551, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (3552, '6', 'Admit', 'MS', 'Computational Science', 'Spring ', '2015', '164', '148', '312', '3.5', '106', 'Amrita School of Engineering', 'CSE', '7.81', '10', '36'), (3553, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', '111', 'Mahatma Gandhi University Kerala', 'Computer Science And Engineering', '75', '100', '0'), (3555, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '95', 'CEG', 'Computer Science', '8.33', '10', '60'), (3556, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '99', 'Northern India Engg College (GGSIPU)', 'Information Technology', '77.45', '100', '29'), (3557, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2013', '770', '440', '1210', '3', '97', 'Valliammai Engineering College', 'ELECTRONICS AND INSTRUMENTATION ENGINEERING', '8.59', '10', '0'), (3558, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '160', '146', '306', '3.5', '101', 'Osmania University', 'Mechanical(Industrial Production Engineering)', '70', '100', '0'), (3560, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '160', '328', '3.5', '108', 'Walchand College Of Engineering', 'Computer Science and Engg', '7.5', '10', '0'), (3561, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '158', '320', '3', '111', 'NIT Warangal', 'Electronics and Communication Engineering', '8.19', '10', '30'), (3562, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '350', '1150', '3.5', '273', 'Anna University', 'Electronics and Communication', '78', '100', '0'), (3564, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (3565, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (3566, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3567, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (3568, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '154', '324', '4', '110', 'GGSIPU', 'Computer Science', '78', '100', '0'), (3569, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '106', 'Chaitanya Bharathi Institute of Technology', 'MECHANICAL', '83.91', '100', '0'), (3570, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '3', '110', 'VJTI', 'Computer', '8.1', '10', '0'), (3571, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (3572, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '161', '320', '3.5', '113', 'West Bengal University Of Technology', 'ECE', '8.7', '10', '0'), (3573, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '156', '148', '304', '3', '101', 'PICT', 'Information Technology', '3.63', '4', '0'), (3574, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '550', '1330', '3.5', '103', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '0'), (3575, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (3576, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '3.5', '115', 'Biju Patnaik University of Technology', 'Electronics and Telecommunication', '9.07', '10', '0'), (3577, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '770', '460', '1230', '1230', '270', 'VTU', 'Instrumentation Technology', '82.4', '100', '0'), (3578, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3', '98', 'WBUT', 'CSE', '8.46', '10', '0'), (3579, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '3', '86', 'CBIT', 'CSE', '80.8', '100', '0'), (3580, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '153', '314', '4', '111', 'SASTRA', 'Information Technology', '7.99', '10', '0'), (3581, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '103', 'IIT Guwahati', 'Mechaanical', '8.6', '10', '3'), (3582, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '159', '148', '307', '3', '307', 'Osmania University', 'CSE', '85', '100', '0'), (3583, '6', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (3584, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '110', 'NITK Surathkal', 'Computer Engineering', '0', '0', '0'), (3585, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '530', '1290', '2.5', '98', 'Sri Sairam Engineering College', 'CS', '7.72', '10', '0'), (3586, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '168', '152', '320', '3.5', '106', 'None', '0', '8.56', '10', '0'), (3587, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (3588, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (3589, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (3590, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '3', '106', 'NIT Calicut', 'ECE', '8.34', '10', '0'), (3591, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '4', '110', 'Pune University', 'Computer Engineering', '63.39', '100', '0'), (3592, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '157', '320', '3', '97', 'YMCA', 'Electronics & Instrumentation & Control', '8.44', '10', '36'), (3593, '6', 'Admit', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '680', '620', '1300', '4.5', '115', 'Mahrishi Dayanand University', 'Instrumentation and controls engg.', '69.58', '100', '0'), (3594, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'Panjab University', 'Dr SSB university Inst. of Chemical Engg. and Tech.', '9.098', '10', '0'), (3595, '6', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '150', '306', '2.5', '98', 'Manipal Institue of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (3596, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '108', 'Delhi College Of Engineeing', 'Mechanical Engineering', '74.33', '100', '0'), (3597, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '143', '309', '3', '92', 'VTU', 'Electronics and Communication', '87', '100', '0'), (3598, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '800', '620', '1420', '3.5', '103', 'MSRIT', 'Mechanical', '9.34', '10', '0'), (3599, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (3600, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '480', '1240', 'None', '113', 'GGSIPU', 'Mechanical and Automation', '0', '0', '0'), (3601, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (3602, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '101', 'IP University Delhi', 'Computer Science', '83', '100', '0'), (3603, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '510', '1280', '4.5', '273', 'Atharva College', 'Computer Engineering', '60.11', '100', '0'), (3604, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '105', 'VTU', 'Computer Science', '72', '100', '6'), (3605, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (3606, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (3607, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (3608, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (3609, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (3610, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '159', '151', '310', '3', '99', 'GGSIPU', 'Chemical Engineering', '72.53', '100', '26'), (3611, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '148', '316', '3', '102', 'VIT', 'ECE', '9.14', '10', '0'), (3612, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '111', 'VIT', 'Information Technology', '64.24', '100', '0'), (3613, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '660', '1410', '4', '113', 'NIT', 'computer', '8.92', '10', '0'), (3614, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (3615, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (3616, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (3617, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4.5', '100', 'Chandigarh Engineering College Landran', 'Information Technology', '73', '100', '0'), (3618, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (3619, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '114', 'VTU', 'CSE', '74.6', '100', '24'), (3620, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (3621, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (3622, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '620', '1360', '3.5', '104', 'MU', 'Mechanical', '59.29', '100', '0'), (3623, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4.5', '112', 'GITAM', 'Civil engineering', '7.48', '10', '0'), (3624, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '317', '155', '472', '3', '106', 'MS uni', 'electronics', '3.91', '4', '0'), (3625, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (3626, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (3627, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '100', 'University of Kerala', 'Electrical & Electronics Engineering', '9.06', '10', '0'), (3628, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '147', '311', '2.5', '99', 'Osmania University', 'mechanical engineering', '8.3', '10', '0'), (3629, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (3630, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (3631, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (3632, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (3633, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '94', 'CVRCE', 'ECE', '84', '100', '0'), (3634, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '156', '316', '3.5', '100', 'VTU', '0', '79', '100', '0'), (3635, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '151', '314', '3.5', '116', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.17', '10', '0'), (3636, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '142', '303', '3.5', '95', 'VTU', 'CS', '8.57', '10', '0'), (3637, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (3638, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '151', '311', '3', 'None', 'VTU', 'Computer Science', '81.8', '100', '0'), (3639, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '161', '328', '4', '108', 'IIT Kharagpur', 'Industrial Engineering', '8.09', '10', '0'), (3640, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '560', '1360', '4.5', '111', 'None', '0', '0', '0', '0'), (3641, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (3642, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (3643, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '157', '165', '322', '4', '110', 'PESIT', 'CSE', '8.34', '10', '0'), (3644, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (3645, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '630', '1380', '3', '97', 'University of Enngineering and Technology Taxila', 'Electrical', '90.5', '100', '0'), (3646, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '154', '322', '4', '112', 'VTU', 'Computer Science', '70', '100', '45'), (3647, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '277', 'PESIT', 'EC', '77', '100', '0'), (3648, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '440', '1180', '3', '103', 'Anna University', 'ece', '82', '100', '0'), (3649, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (3650, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '107', 'NIT Nagpur', 'Metallurgy and Material Science', '8.86', '10', '0'), (3651, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '115', 'K J Somaiya College of Engiineering', 'Computer Science', '74.5', '100', '0'), (3652, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (3653, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '740', '520', '1260', 'None', '86', 'BMSCE', 'E&C;', '79.45', '100', '0'), (3654, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (3655, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '92', 'New Horizon College of Engineering', 'computer science', '79', '100', '48'), (3656, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '4', '109', 'WBUT', 'CSE', '8.18', '10', '62'), (3657, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3.5', '104', 'VTU', 'Computer Science', '76', '100', '0'), (3658, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '710', '510', '1220', '4', '270', 'Punjab Technical University', 'PRODUCTION ENGINEERING', '76', '100', '0'), (3659, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '530', '1300', '4', '93', 'Punjab Engineering College', 'Mechanical Engineering', '8.04', '10', '0'), (3660, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '155', '315', '4', '101', 'Guru Gobind Singh Indraprashta University', 'Mechanical & Automation Engineering', '75', '100', '0'), (3661, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '4', '107', 'WBUT', '0', '7.7', '10', '0'), (3662, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '154', '322', '3', '103', 'Institute of Engineering & Management', 'Computer Science & Engineering', '8.2', '10', '0'), (3663, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '94', 'Uttarakhand Technical University', 'Computer Science Engineering', '75.2', '100', '0'), (3664, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (3665, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (3666, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (3667, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '156', '322', '4', '114', 'RMK Engineering College', 'BE CSE', '7.85', '10', '15'), (3668, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '3.5', '107', 'University School of Technology IP Univ Delhi', 'Information Technology', '74', '100', '0'), (3669, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', 'None', 'SSN College of Engineering', 'CSE', '77.3', '100', '0'), (3670, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '113', 'The LNM Institute of Information Technology', 'Electrocnics and Communication', '9.2', '10', '0'), (3671, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (3672, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '156', '320', '3.5', '110', 'Graphic Era University', 'Computer Science', '83', '100', '24'), (3673, '6', 'Admit', 'MS', 'Materials Science', 'Fall ', '2015', '166', '151', '317', '3', '108', 'BITS Pilani', 'Mechanical &Physics;', '6.26', '10', '0'), (3674, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '158', '320', '4', '115', 'Amrita Vishwa Vidhyapeetham', 'CSE', '8.1', '10', '0'), (3675, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '147', '308', '3.5', '91', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '0'), (3676, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '800', '540', '1340', '3', '106', 'RTM Nagpur University', 'Electronics', '73.63', '100', '0'), (3677, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '440', '1200', '4', '107', 'Rajarshi Shahu College of Enginneering', 'Computer Science', '66', '100', '0'), (3678, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3', 'None', 'VJTI', 'IT', '7.7', '10', '0'), (3679, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'SIES Graduate School of Technology', 'CE', '67', '100', '0'), (3680, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (3681, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '159', '327', '3.5', '115', 'Anna University', 'Electronics and Communication Engineering', '7.9', '10', '0'), (3682, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (3683, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '103', 'GNDU', 'CS', '71', '100', '0'), (3684, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '166', '152', '318', '3', '110', 'Sikkim Manipal Institute of Technology', 'Computer Science', '7.19', '10', '51'), (3685, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', '3.5', '104', 'MNMJEC', 'CSE', '8.48', '10', '0'), (3686, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', 'None', 'SASTRA', 'ICT', '7.17', '100', '0'), (3687, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (3688, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', '4', '115', 'DA-IICT', 'ICT ( Information and Communication Technology)', '7.75', '10', '0'), (3689, '6', 'Admit', 'MS', 'Computer Engineering', 'Summer ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3690, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (3691, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '146', '308', '3', 'None', 'CEG', 'Computer Science', '8.59', '10', '0'), (3692, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3.5', 'None', "St Joseph's College of Engineering", 'electronics and instrumentation engg', '8.92', '10', '0'), (3693, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '510', '1200', '4', '102', 'PESIT', 'CS', '0', '0', '0'), (3694, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '145', '302', '3.5', '103', 'VIT University', 'Computer Science & Engineering', '7.85', '10', '0'), (3695, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '146', '307', 'None', '95', 'Govt. College of Engg Amravati(Autonomous Institute)', 'Computer Science & Engineering', '7.99', '10', '0'), (3696, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (3697, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '153', '317', '3', '102', 'DSCE', 'CS', '77', '100', '0'), (3698, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '159', '324', '4', '112', 'Maharaja Sayajirao University Of Baroda', 'Computer Science and Engineering', '3.74', '4', '0'), (3699, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '680', '470', '1150', '3.5', '99', 'Anna University', 'EIE', '80', '100', '0'), (3700, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (3701, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (3702, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '154', '322', '3.5', '108', 'VTU', 'Electronics and Communication', '85', '100', '0'), (3703, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (3704, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '760', '440', '1200', '3', '110', 'University of Pune', 'Computer Science', '66.81', '100', '0'), (3705, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '152', '313', '4', '101', 'Goa University', 'Information Technology', '74', '100', '0'), (3706, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '4', '105', 'Coimbatore Insitute of Technology', 'EEE', '8.4', '10', '0'), (3707, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '113', 'SJCE', 'EEE', '74', '100', '0'), (3708, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (3709, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (3710, '6', 'Admit', 'MS', 'MSIM', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3711, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'JNTU', 'CS', '76', '100', '0'), (3712, '6', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (3713, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (3715, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '600', '1330', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.73', '10', '0'), (3716, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (3717, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '580', '1280', '3.5', '108', 'SSN College of Engineering', 'Computer Science', '78.5', '100', '0'), (3718, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (3719, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '490', '1220', '3', '93', 'Meenakshi Sundararajan Engineering College', 'cse', '80', '100', '0'), (3720, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '610', '1380', '4.5', '287', 'RAIT', 'CE', '62', '100', '0'), (3721, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '510', '1310', '4', '270', 'Kerala University', 'Electronics and Communication', '79', '100', '0'), (3722, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (3723, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3', '110', 'NIT Silchar', 'Computer Science', '7.52', '10', '0'), (3724, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (3725, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (3726, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (3727, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '790', '510', '1300', 'None', '105', 'Thadomal Shahani Engineering College', 'Information Technology', '3.9', '4', '0'), (3728, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (3729, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3730, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '91', 'CBIT', 'Computer Science', '84.3', '100', '12'), (3731, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '151', '315', '4', 'None', 'None', 'CS', '9.26', '10', '0'), (3732, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (3733, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (3734, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '143', '305', '3.5', '99', 'GITAM', 'ECE', '8.74', '10', '0'), (3735, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '152', '320', '3.5', '113', 'PSG College of Technology', 'MEchanical', '8.4', '10', '4'), (3736, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (3737, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (3738, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '112', 'BITS Pilani', 'Electronics and Instrumentation', '7.76', '10', '0'), (3739, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (3740, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (3742, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (3743, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '104', 'SRM', 'Electronics and Communication', '7.72', '10', '35'), (3744, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '149', '312', '2.5', '91', 'Institute of Technology Nirma University', 'Computer Science', '7.49', '10', '0'), (3745, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3', '90', 'VJTI', 'Mechanical', '8', '10', '0'), (3746, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '630', '1430', '660', '293', 'Nirma Institute of Technology', 'Information Technology', '79.38', '100', '0'), (3747, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '151', '313', '4', '109', 'Anna University', 'IT', '7.92', '10', '0'), (3748, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (3749, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'RGPV', 'Computer Science', '74.13', '100', '0'), (3750, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '97', 'PESIT', 'ECE', '8.72', '10', '0'), (3751, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'CS', '77', '100', '0'), (3752, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '560', '1360', '3', '93', 'SLC', 'ECE', '84.2', '100', '0'), (3753, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2011', '800', '500', '1300', '3.5', '100', 'West Bengal University Of Technology', 'ECE', '8.53', '10', '0'), (3754, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'SSN College of Engineering', 'Biomedical Engineering', '8.38', '10', '0'), (3755, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (3756, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (3757, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (3758, '6', 'Admit', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (3759, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (3760, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (3761, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '590', '1390', '4', '113', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (3762, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '150', '316', '3.5', 'None', 'NITK Surathkal', '0', '8.73', '10', '0'), (3763, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '108', 'VTU', 'Computer Science', '78', '100', '0'), (3764, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '560', '1290', '4', '115', 'SSN College of Engineering', 'ECE', '80', '100', '0'), (3765, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (3766, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '100', 'Anna University', 'Electronics and Communication', '81.74', '100', '0'), (3767, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '109', 'NIT Karnataka', 'Electrical and Electronics', '7.81', '10', '0'), (3768, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '105', 'Sathyabama University', 'Mechanical Engineering', '7.456', '10', '0'), (3769, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3.5', '104', 'Anna University', 'IT', '6.82', '10', '24'), (3770, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '151', '318', 'None', '98', 'BITS Pilani', 'EEE', '6.92', '10', '0'), (3771, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (3772, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (3773, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '165', '149', '314', '3', '91', 'BITS Goa', 'EEE', '6.43', '10', '0'), (3774, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3775, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '102', 'Coimbatore Insitute of Technology', 'CSE', '8.6', '10', '20'), (3776, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'BITS Pilani', 'Electrical and Electronics', '7.95', '10', '0'), (3777, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2006', '800', '610', '1410', '4.5', '277', 'Crescent Engineering College', 'ECE', '84.5', '100', '0'), (3778, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '107', 'CEG', 'Electronics and communication', '8.67', '10', '0'), (3779, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '157', '318', '3', '103', 'Anna University', 'Mechanical Engineering', '8.31', '10', '0'), (3780, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', 'None', 'NIE', 'CSE', '8.87', '10', '0'), (3781, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '3', '100', 'NIT Warangal', 'Mechanical', '8.08', '10', '0'), (3782, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', '108', 'IIT Guwahati', '0', '0', '0', '0'), (3783, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '3', '102', 'VIT University', 'BTECH/CSE', '8.94', '10', '0'), (3784, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '4', '105', 'VTU', 'CSE', '74.5', '100', '0'), (3785, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '146', '307', '3', '93', 'VIT', 'ece', '7.23', '10', '18'), (3786, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (3787, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (3789, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (3790, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (3791, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (3792, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '4', '104', 'Kakatiya University', 'ECE', '74', '100', '0'), (3793, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '108', 'Gujarat Technological University', 'Electrical Engineering', '8.2', '10', '0'), (3794, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (3795, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (3796, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'VTU', 'Electronics and Communication', '8.74', '10', '0'), (3797, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (3798, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '100', 'Model Engineering College', 'Computer Science', '75', '100', '0'), (3799, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '146', '306', '3', 'None', 'None', 'ECE', '74', '100', '0'), (3800, '6', 'Admit', 'MS', 'Business Analytics', 'Summer ', '2015', '165', '148', '313', '2.5', '101', 'MU', 'Telecommunication', '66', '100', '49'), (3801, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (3802, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (3803, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '106', 'NIT Nagpur', 'Civil', '7.5', '10', '0'), (3804, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cochin University of Science and Technology', 'Computer Science', '82.8', '100', '42'), (3805, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (3806, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '4', '108', 'NIT Nagpur', 'Electrical and Electronics', '8.25', '10', '0'), (3807, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Engineering', '8.82', '10', '0'), (3808, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '149', '317', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.31', '10', '0'), (3809, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (3810, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (3812, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '145', '308', '3', '101', 'Nagarjuna University', 'Electronics and Computers', '8.66', '10', '0'), (3813, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.95', '10', '0'), (3814, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '98', 'IEM/WBUT', 'CSE', '8.65', '100', '0'), (3815, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (3816, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '4', '110', 'VJTI', '0', '0', '0', '20'), (3817, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '160', '148', '308', '2.5', '95', 'GITAM', 'IT', '8.85', '10', '0'), (3818, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'VTU', 'Electrical and Electronics Engineering', '70', '100', '42'), (3819, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '650', '1430', '3', '101', 'M.I.T.M(RGTU)', 'Computer Science', '70', '100', '0'), (3820, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '4.5', '111', 'SSN College of Engineering', 'CSE', '8.25', '10', '0'), (3821, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (3822, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '510', '1290', '3', '95', 'MU', 'IT', '62', '100', '0'), (3823, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (3824, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '151', '312', '4', '98', 'BITS Pilani', 'computer science', '7.08', '10', '0'), (3825, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (3826, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', 'None', '102', 'CoE Trivandrum', 'Computer Science', '83', '100', '0'), (3827, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3.5', '100', 'SRM', 'Computer science and engineering', '6.8', '10', '0'), (3828, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '142', '303', '3.5', '101', 'College of Technology Pantnagar', 'production engineering', '7.15', '10', '0'), (3829, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (3830, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '1330', '540', '1870', '3', '89', 'VESIT', 'E & TC', '75', '100', '0'), (3831, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '158', '328', '4.5', '116', 'K J Somaiya College of Engiineering', 'Mechanical', '61', '100', '0'), (3832, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (3833, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (3834, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '148', '311', 'None', '103', 'RNSIT', 'Electronics and Communicati', '80', '100', '0'), (3835, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '4', '107', 'None', '0', '90', '100', '0'), (3836, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (3837, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (3838, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '162', '158', '320', '4', '116', 'Sardar Patel College of Engineering', 'Information Technology', '65.36', '100', '28'), (3839, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '94', 'Sir MVIT', 'Information Science', '70', '100', '0'), (3840, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (3841, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (3842, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4.5', '98', 'CoE Trivandrum', 'CSE', '78', '100', '0'), (3843, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '107', 'Indraprastha University', 'Electronics and Communication', '71', '100', '0'), (3844, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '148', '312', '3.5', '96', 'NIT ALLAHABAD', 'Electrical Engineering', '9.05', '10', '0'), (3845, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '750', '450', '1200', '4.5', '110', 'Institute of Technology Nirma University', 'Instrumentation & Control Electrical Department', '6.56', '10', '0'), (3846, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '750', '590', '1340', '3', '91', 'NIT Rourkela', 'CIVIL ENGINEERING', '7.81', '10', '0'), (3847, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '4.5', '114', 'BIT Mesra', 'Computer Science Engineering', '7.5', '10', '30'), (3848, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'GITAM', 'Electrical and Electronics', '3.95', '4', '0'), (3849, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (3850, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '110', 'Model Engineering College', 'Computer Science', '80.2', '100', '0'), (3851, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '163', '148', '311', '3', '96', 'MSRIT', 'CSE', '8.71', '10', '0'), (3852, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '91', 'Anna University', 'Computer Science', '8.17', '10', '30'), (3853, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (3854, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '580', '1330', '3', '101', 'Pune University', 'Electonics and telecommunication', '72', '100', '0'), (3855, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (3856, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '149', '316', '4', '96', 'Mahatma Gandhi University Kerala', 'MECHANICAL ENGINEERING', '7.42', '10', '0'), (3857, '6', 'Admit', 'MS', 'Business Analytics and Project Management', 'Fall ', '2015', '162', '151', '313', '3', '91', 'Anna University', 'Mechanical', '7.26', '10', '30'), (3858, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (3859, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (3860, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '142', '305', '3.5', '100', 'NIT Allahabad', 'Mechanical', '9.11', '10', '0'), (3861, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '165', '147', '312', '3.5', '100', 'Lakshmi Narain College of Technology', 'Computer Science and Engineering', '74.75', '100', '52'), (3862, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '620', '1410', '3.5', '118', 'Anna University', 'EEE', '81', '100', '0'), (3863, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '750', '600', '1350', '3.5', '113', 'Anna University', 'EEE', '8.274', '10', '0'), (3864, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '146', '303', '3', '107', 'RNSIT', 'Electronics and communication', '76.5', '100', '0'), (3865, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '95', 'Swami Vivekananda Institute Of Technology', 'Computer science', '73', '100', '0'), (3866, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (3867, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '48', '32', '80', '5.5', '113', 'University of Pune', 'ENTC', '0', '0', '0'), (3868, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '154', '324', '3', '113', 'NIT Nagpur', 'Electronics and Communication Engineering', '7.4', '10', '24'), (3869, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '111', 'VIT', 'Computer Science and Engineering', '7.88', '10', '0'), (3870, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '49', '35', '84', '6', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.13', '10', '0'), (3871, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '460', '1170', '3', '101', 'VTU', 'CSE', '80.5', '100', '0'), (3872, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '151', '313', '4', '109', 'VTU', 'ECE', '77', '100', '0'), (3873, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (3874, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '720', '1460', '6', '293', 'NITK Surathkal', 'EnC', '88', '100', '0'), (3875, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (3876, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4.5', '111', 'Sir MVIT', 'Info Science', '79.82', '100', '0'), (3877, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '3', '108', 'West Bengal University Of Technology', 'ECE', '8.85', '10', '0'), (3878, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '570', '1340', '3', '100', 'WBUT', 'A.E.I.E', '8', '100', '0'), (3879, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (3880, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '145', '306', '3.5', '105', 'R V College of Engineering', 'Mechanical Engineering', '7.65', '10', '0'), (3882, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3.5', '111', 'Sardar Patel College of Engineering', 'Information Technology', '68.2', '100', '17'), (3883, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '150', '310', '3', '7', 'Anna University', 'Mechanical Engineering', '7.5', '10', '0'), (3884, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (3885, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '760', '630', '1390', '4', '114', 'NIT Tirchy', 'Electrical & Electronics', '6.83', '10', '0'), (3886, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '102', 'Sri Venkateswara College of Engineering', 'Electrical and Electronics Engineering', '8.34', '10', '0'), (3887, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3', '98', 'VIT', 'School of Electronics Engineering', '9.26', '10', '0'), (3888, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '3', '99', 'West Bengal University Of Technology', 'CSE', '7.3', '10', '90'), (3889, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (3890, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '650', '1440', '3', '109', 'SGSITS', 'mechanical', '78', '100', '0'), (3891, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (3892, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '0', '770', '3.5', '95', 'PESIT', 'Computer SCience', '77', '100', '0'), (3893, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '400', '1200', '4', '112', 'SRM', 'Computer Science', '9.4', '10', '0'), (3894, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3', '106', 'WBUT', 'Electrical Engineering', '8.39', '10', '0'), (3895, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '149', '313', '3', '101', 'NIT Durgapur', 'Computer Science', '7.8', '10', '59'), (3896, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '163', '143', '306', 'None', '104', 'GGSIPU', 'biotechnology', '0', '0', '0'), (3897, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Guru Gobind Singh Indraprashta University', 'INDUSTRIAL AND PRODUCTION', '74.5', '100', '0'), (3898, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '4.5', '110', 'BITS Pilani', 'MECHANICAL', '7.31', '100', '0'), (3899, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (3900, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '630', '1420', '3.5', '117', 'SSN College of Engineering', 'ece', '80', '100', '0'), (3901, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '540', '1310', '4.5', '104', 'UPTU', 'Computer Science', '76', '100', '0'), (3902, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '3.5', '95', 'SDM', 'Electrical Engineering', '8.8', '10', '0'), (3903, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'GITAM', 'ECE', '9.72', '10', '0'), (3904, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '154', '322', '3.5', '105', 'NIT Warangal', 'electrical and electronics', '9.43', '10', '0'), (3905, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (3906, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '163', '326', '3.5', '116', 'Institue of Engineering And Management', 'Computer science and Engineering', '9.22', '10', '0'), (3907, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (3908, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (3909, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '155', '325', '4', '107', 'College of Technology Pantnagar', 'ECE', '72.44', '100', '9'), (3910, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '93', 'VTU', 'Electronics and communication', '79', '100', '0'), (3911, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (3912, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (3913, '6', 'Admit', 'MS', 'CS', 'Fall ', '2014', '161', '146', '307', '3', '100', 'BMSCE', 'CS', '74.14', '100', '0'), (3914, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '151', '309', '3.5', '107', "Hautes Etudes d'Ingenieur", 'Electrical Engineering', '3.3', '4', '0'), (3915, '6', 'Admit', 'MS', 'MIS', 'Spring ', '2016', '156', '148', '304', '3', 'None', 'RMK Engineering College', 'Electronics and Instrumentation', '8.97', '10', '19'), (3916, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (3917, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (3918, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '4.5', '108', 'VTU', 'IT', '69.7', '100', '0'), (3919, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (3920, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '108', 'Pune University', 'E&TC;', '70', '100', '0'), (3921, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '110', 'Kalpataru Institute of Technology', 'Computer Science', '72', '100', '0'), (3922, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '107', 'NIT Warangal', 'CIVIL ENGINEERING', '8.45', '10', '0'), (3923, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (3924, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '140', '299', '3', 'None', 'SCSVMV University', 'Mechanical engineering', '9.37', '10', '0'), (3925, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '101', 'Charotar University of Science and Technology', 'Information Technology', '7.82', '100', '0'), (3926, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (3928, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '47', '35', '82', '4.5', '106', 'Bharati Vidyapeeth', 'Chemical Engineering', '68', '100', '0'), (3929, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (3930, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '12', '720', '530', '1250', '3', '101', 'Anna University', 'mechanical', '8.7', '10', '0'), (3931, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '152', '311', '4', '103', 'JNTU', 'ECE', '82.75', '100', '0'), (3932, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '620', '1370', '3.5', '93', 'Anna University', 'ECE', '78', '100', '0'), (3933, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', 'None', '93', 'Anna University', 'CSE', '8.2', '10', '0'), (3934, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '3.5', '95', 'Pune University', 'Mechanical Engineering', '78', '100', '0'), (3935, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (3936, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (3937, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (3938, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (3939, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '3', '103', 'MU', 'Electronics', '70.3', '100', '0'), (3940, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '166', '332', '4', '114', 'West Bengal University Of Technology', 'Information Technology', '81.6', '100', '0'), (3941, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2007', '800', '640', '1440', '5', '287', 'SVCE', 'EEE', '85', '100', '0'), (3942, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '105', 'VJTI', 'Computer Engineering', '6.4', '10', '29'), (3943, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '390', '800', '1190', '4', '107', 'Gayatri Vidya Parishad College of Engineering', 'Comp Science Engg', '76.67', '100', '0'), (3945, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '115', 'SASTRA', 'Computer Science', '9.6', '10', '0'), (3946, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '111', 'LD Engineering Gujarat University', 'Computer Engineering', '70', '100', '0'), (3947, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '460', '1180', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (3948, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '113', 'Sri Venkateswara College of Engineering', 'Chemical Engg', '8.4', '10', '0'), (3949, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '104', 'VIT', 'BTech-EEE', '8.89', '10', '24'), (3950, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '164', '160', '324', '3.5', '107', 'Manipal Institue of Technology', 'Mechanical & Manufacturing (Mechatronics)', '6.96', '10', '0'), (3951, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (3952, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (3953, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '750', '530', '1280', '3.5', '106', 'Coimbatore Insitute of Technology', 'Mechanical Engineering', '8.37', '10', '0'), (3954, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '750', '340', '1090', '2.5', '93', 'Anna University', 'EEE', '79.91', '100', '0'), (3955, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3.5', '110', 'None', '0', '81', '100', '0'), (3956, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '107', 'Crescent Engineering College', 'Electronics & Communication', '0', '0', '0'), (3957, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (3958, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (3959, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '156', '159', '315', '3.5', 'None', 'Chaitanya Bharathi Institute of Technology', 'Biotechnology', '77', '100', '0'), (3960, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '600', '1360', '3.5', '110', 'RIT Shivaji University', 'Mechanical', '74', '100', '0'), (3961, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '170', '165', '335', '4.5', '109', 'None', '0', '70', '100', '0'), (3962, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '152', '317', '4', '104', 'COEP', 'Civil Engineering', '7.51', '10', '21'), (3963, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'Manipal Institue of Technology', 'electronics and communication', '8.71', '10', '0'), (3964, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (3965, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '590', '1370', '4', '115', 'None', '0', '0', '0', '0'), (3966, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '162', '150', '312', '3.5', '100', 'None', 'Electronics', '9.6', '10', '0'), (3967, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (3968, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '152', '309', '4.5', '111', 'SRM', 'ECE', '9.1', '10', '0'), (3969, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '106', 'Anna University', 'Electrical and Electronics', '7.53', '10', '0'), (3970, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3971, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '101', 'Kurukshetra University', 'Computer Science', '3.26', '4', '106'), (3972, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '142', '304', '3.5', '92', 'None', '0', '9.02', '10', '0'), (3973, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '153', '315', '3.5', 'None', 'Manipal Institue of Technology', 'Electronics and Communication Engineering Department', '9.3', '10', '0'), (3974, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '430', '1230', '3', '93', 'DA-IICT', 'Information & Comm. Tech', '8.27', '10', '0'), (3975, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '87', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.57', '10', '0'), (3976, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '148', '315', '3', '82', 'BITS Goa', 'Electrical and Electronics', '8.67', '10', '0'), (3977, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (3978, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '151', '314', '4.5', '108', 'SRM', 'Mechatronics', '7.932', '10', '0'), (3979, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (3980, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '155', '314', '3', '106', 'Indraprastha University', 'Computer Science', '81', '100', '0'), (3981, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '114', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication Engineering', '79.5', '100', '0'), (3982, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (3983, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '103', 'Sardar Vallabhbhai National Institute of Technology', 'Civil Engineering', '6.95', '10', '0'), (3984, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (3985, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '730', '1510', '4', '113', 'COEP', 'Computer Engineering', '7.95', '10', '0'), (3986, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '152', '321', '3.5', '105', 'National Institue Of Technology Karnataka Surathkal', 'Computer Engineering', '8.24', '10', '0'), (3987, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '650', '550', '1200', '3', '102', 'MU', 'electrical', '64', '100', '0'), (3988, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'VIT University', 'IT', '9.12', '10', '0'), (3989, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (3990, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (3991, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (3992, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '103', 'JNTU', 'EEE', '82', '100', '0'), (3994, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '151', '315', '3', '92', 'PSG College of Technology', 'ECE', '8.96', '10', '0'), (3995, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '690', '660', '1350', '3', '103', 'Anna University', 'Biomedical Engineering', '84', '100', '0'), (3996, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2011', '720', '490', '1210', '3', '109', 'Anna University', 'Electrical and Electronics Engineering', '85.19', '100', '0'), (3997, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '640', '1430', '4.5', '112', 'Thapar University', 'Electrical Engineering', '9.23', '10', '0'), (3998, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Anna University', 'Computer Science', '74.9', '100', '0'), (3999, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '740', '1520', '4.5', 'None', 'NIT Calicut', 'Electronics & Communication', '7.49', '10', '0'), (4000, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '159', '148', '307', '3.5', '98', 'Cochin University of Science and Technology', 'Computer Science And Engineering', '68.5', '100', '0'), (4001, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '157', '314', '4', '110', 'MU', 'Computer Engineering', '69', '100', '0'), (4002, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', 'None', '100', 'NIT Allahabad', 'ECE', '9.08', '10', '36'), (4003, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (4004, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '155', '317', '3.5', '104', 'VITU', 'ECE', '7.81', '10', '0'), (4005, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (4006, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '106', 'NIT Patna', 'Computer Science', '8.24', '10', '36'), (4007, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (4008, '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '9.14', '10', '0'), (4009, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '3.5', '103', 'VTU', 'CS', '67', '100', '0'), (4010, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '340', '1130', '4', '103', 'None', '0', '0', '0', '0'), (4011, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '101', 'Punjab Technical University', 'Computer Science & Engineering', '71', '100', '0'), (4012, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', 'None', 'JNTU', 'Mechanical', '83.1', '100', '0'), (4013, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '151', '314', '4.5', '113', 'SRM', 'Electonrics and Communication', '9.52', '10', '0'), (4014, '6', 'Admit', 'MS', 'Telecom management', 'Fall ', '2012', '790', '480', '1270', '3', '106', 'Anna University', 'ECE', '7.872', '10', '0'), (4015, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '470', '1220', '3', '92', 'CEG', 'CSE', '8.76', '10', '0'), (4016, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '161', '144', '305', '3.5', '95', 'SSN College of Engineering', 'Computer Science', '74', '100', '52'), (4017, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '370', '1160', '3', '102', 'Anna University', 'B.Tech-Information Technology', '79', '100', '0'), (4018, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '160', '322', '3', '105', 'BITS Pilani', 'ECE', '8.7', '10', '0'), (4019, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (4020, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '104', 'Gautam Buddh Technical University', 'Information Technology', '71', '100', '0'), (4021, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '109', 'Guru Nanak Dev University Amritsar', 'Electronics Technology', '7.57', '10', '11'), (4022, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (4023, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (4024, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '660', '1460', '800', '290', 'MU', 'EE', '72', '100', '0'), (4025, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (4026, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (4027, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '107', 'VTU', 'ECE', '84', '100', '0'), (4028, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '106', 'None', 'computer science', '72', '100', '0'), (4029, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (4030, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '790', '350', '1140', '3.5', '104', 'Anna University', 'IT', '82', '100', '0'), (4032, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '147', '307', '3', '98', 'VIT University', 'ECE', '9.03', '10', '2'), (4033, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (4034, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (4035, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (4036, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (4037, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '149', '314', '3.5', '100', 'Sairam engg college(Anna University)', 'CSE', '7.79', '10', '30'), (4038, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '104', 'VTU', 'Computer Science and Engineering', '76', '100', '0'), (4039, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '95', 'IIIT Allahabad', 'IT', '7.95', '10', '0'), (4040, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (4041, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'ICFAI', 'Computer Science Engineering', '9.48', '10', '0'), (4042, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (4043, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '150', '318', '3.5', '111', 'NIT Hamirpur', 'cse', '7.98', '10', '24'), (4044, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (4045, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '112', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '68', '100', '0'), (4046, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '73', '100', '0'), (4047, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3', '93', 'SASTRA', 'ECE', '8.02', '10', '0'), (4049, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '149', '316', '3', '7', 'Manipal Institue of Technology', 'ECE', '6.31', '10', '0'), (4050, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (4051, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '3', '88', 'Kakatiya University', 'ECE', '82', '100', '0'), (4052, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '113', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Computers', '8.2', '10', '0'), (4053, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '145', '306', '4', '106', 'Sapthagiri College of Engineering', 'Electronics and Communication', '76.53', '100', '0'), (4054, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '3.5', 'None', 'Naional Institute of Technology Raipur', 'Electronics & Telecommunication', '77.1', '100', '0'), (4055, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (4056, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '3', '106', 'Sreenidhi Institute of Science & Technology', 'cse', '81.7', '100', '0'), (4057, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (4058, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '750', '580', '1330', '3.5', '260', 'Gujarat Technological University', 'Information Technology', '71', '100', '0'), (4059, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '101', 'R V College of Engineering', 'electronics', '9.28', '10', '0'), (4060, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (4062, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (4063, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', 'None', '110', 'NITK Surathkal', 'Information Technology', '7.27', '10', '0'), (4064, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '154', '316', '3.5', '107', 'NIT Allahabad', 'Chemical Engineering', '7.39', '10', '18'), (4065, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '780', '490', '1270', '3', '96', 'NITK Surathkal', 'EEE', '7.97', '10', '0'), (4066, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (4067, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'VIT', 'Mechanical Engineering', '8.81', '10', '0'), (4068, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '570', '1300', '5', '110', 'CEC', 'CS', '83', '100', '0'), (4069, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '114', 'WBUT', 'Computer Science and Engineering', '8.47', '10', '0'), (4070, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '167', '152', '319', '3.5', '95', 'VTU', 'EEE', '69', '100', '0'), (4071, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (4072, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '560', '1360', '4', '111', 'JNTU', 'EEE', '81.4', '100', '0'), (4073, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '370', '1150', '3.5', '1004', 'None', '0', '0', '0', '0'), (4074, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '660', '490', '1150', '2.5', '80', 'MU', 'Production', '0', '0', '0'), (4075, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (4076, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (4077, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '580', '1340', '3', '93', 'Sardar Patel College of Engineering', 'IT', '70', '100', '0'), (4078, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (4079, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '162', '153', '315', '4.5', '111', 'None', '0', '0', '0', '0'), (4080, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '169', '146', '315', '3.5', '86', 'HUST', 'Information Technology', '7.82', '10', '0'), (4081, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '146', '316', '3.5', '97', 'JNTU', 'Electronics and Communication Engineering', '87.8', '100', '0'), (4082, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '100', 'UPTU', 'Electronics and Telecommunication', '69.4', '100', '0'), (4083, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2016', '160', '140', '300', '3', 'None', 's.r.k.r engineering college', 'civil engineering', '7.7', '10', '0'), (4084, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2011', '740', '580', '1320', '4', '113', 'Gujarat Technological University', 'Electronics & Communication', '74', '100', '0'), (4085, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '4', '106', 'MU', 'Computer Engineering', '76', '100', '0'), (4086, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (4087, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '147', '310', '4', '110', 'Amrita School of Engineering', 'Civil', '7.29', '10', '0'), (4088, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (4089, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '147', '311', '3', '93', 'BMSCE', 'Electronics and Commuications', '9.42', '10', '22'), (4090, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (4091, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (4092, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '153', '316', '3.5', '110', 'None', 'ECE', '8', '10', '0'), (4093, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (4094, '6', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (4095, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '450', '1250', '3.5', '100', 'NIT Warangal', 'Electronics and Communications Engineering', '7.89', '10', '0'), (4096, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '460', '1260', '3', '103', 'Pune University', 'Mechanical engineering', '60', '100', '0'), (4097, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '760', '490', '1250', '3', '101', 'Madras Institute of Technology', 'ECE', '6.4', '10', '0'), (4098, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (4099, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '151', '159', '310', '3.5', '114', 'Amrita School of Engineering', 'Computer Science and Engineering', '7.93', '10', '0'), (4100, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (4101, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '3.5', '100', 'VTU', 'Telecommunication engineering', '8.9', '10', '0'), (4102, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '4', '109', 'VTU', 'CS', '79', '100', '0'), (4103, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (4104, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '4.5', '100', 'SRM', 'COMPUTER SCIENCE AND ENGINEERING', '9.04', '10', '0'), (4105, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4106, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (4107, '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '161', '149', '310', '4', '105', 'UPTU', 'Computer Scinece', '82.04', '100', '30'), (4108, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (4109, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (4110, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (4111, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '150', '318', '3', '101', 'GGSIPU', 'ECE', '87', '100', '0'), (4112, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (4113, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '710', '1510', '5', '277', 'CEG', 'ECE', '8.6', '10', '0'), (4114, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '2.5', '97', "St Joseph's College of Engineering", 'ECE', '8.62', '10', '0'), (4115, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (4116, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '145', '159', '304', '3.5', '92', 'CEG', 'EEE', '7.8', '10', '0'), (4117, '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '800', '570', '1370', '3', 'None', 'VJTI', 'Electronics', '8.6', '10', '0'), (4118, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2014', '165', '145', '310', '3.5', '103', 'NIT MIZORAM', 'ECE', '8.52', '10', '0'), (4119, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (4120, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '3.5', '104', 'Jalpaiguri Govt Engg College', 'Electrical', '8.57', '10', '0'), (4121, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (4122, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '4', '104', 'University Institute of Engineering & TEch Kurukshetra University', 'Computer Science', '74', '100', '0'), (4123, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '109', 'CEG', 'Electronics and Communication', '9.31', '10', '0'), (4124, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '490', '1290', '5', '283', 'University of Bombay', 'Computer', '65', '100', '0'), (4125, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (4126, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5.5', '117', 'BITS Goa', 'EEE', '8.62', '10', '0'), (4127, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (4128, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '165', '146', '311', '3', '110', 'Savitribai Phule Pune University', 'Electrical Engineering', '66.5', '100', '0'), (4129, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (4130, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '140', '299', '4', 'None', 'GTU', 'IT', '7.72', '10', '0'), (4131, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '153', '312', '3.5', '104', 'G. H. Patel College of Engineering and Technology', 'Electrical', '7.73', '10', '0'), (4132, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (4133, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (4134, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (4135, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '720', '680', '1400', '3', '106', 'VIT', 'elctronics and communication', '6.72', '10', '0'), (4136, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (4137, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '670', '1340', '4', '101', 'SCE', 'CSE', '3.32', '4', '0'), (4138, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', 'None', 'COEP', 'Electronics and Telecom Engg.', '6.71', '10', '0'), (4139, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (4140, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', '116', 'MU', 'Mechanical', '72.94', '100', '0'), (4141, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '152', '314', '3.5', '101', 'NIT-Jaipur', 'Computer Science', '7', '10', '0'), (4142, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3', '102', 'IIITDM Kancheepuram', 'Computer Engineering', '8.31', '10', '0'), (4143, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '12', '800', '330', '1130', '3.5', '99', 'VIT', '0', '8.64', '10', '0'), (4144, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '500', '1290', '3', '100', 'GGSIPU', 'Mechanical and Automation', '75', '100', '0'), (4145, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2014', '720', '560', '1280', '3', '98', 'S.D.B.C.T', 'Computer Science', '72.06', '100', '0'), (4146, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (4147, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '155', '147', '302', '3.5', '97', 'Lingayas Institute of management and technology', 'school of civi engineering', '57.7', '100', '0'), (4148, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '151', '309', '3', '110', 'Pune University', 'Computer', '66', '100', '0'), (4149, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (4150, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '560', '1340', '4', '108', 'Pune University', 'Electrical', '69', '100', '0'), (4151, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '95', 'Madras Institute of Technology', 'CSE', '8.3', '10', '0'), (4152, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (4153, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '163', '330', '4.5', '115', 'Delhi College Of Engineeing', 'Electrical and Electronics Engineering', '70.5', '100', '0'), (4154, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', 'None', '96', 'West Bengal University Of Technology', 'Information Technology', '8.14', '10', '0'), (4155, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '167', '150', '317', '3.5', '110', 'KLUNIVERSITY', 'industrial', '8.3', '100', '0'), (4156, '6', 'Admit', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (4157, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (4158, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '152', '316', '3', '110', 'NIT Durgapur', 'electronics and communication', '8.66', '10', '0'), (4159, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (4160, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '3', '109', 'Gujarat Technological University', 'Electronics & Communication', '3.96', '4', '0'), (4161, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (4162, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '3', '91', 'Govt Model Engineering College', 'Computer Science and Engineering', '72', '100', '0'), (4163, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '147', '306', '3.5', '97', 'Guru Nanak Dev University Amritsar', 'ece', '74', '100', '0'), (4164, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (4165, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '4', '109', 'VTU', 'CS', '70', '100', '0'), (4166, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (4167, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (4168, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '157', '323', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.4', '10', '36'), (4169, '6', 'Admit', 'MS', 'optics', 'Fall ', '2014', '165', '160', '325', '4', '110', 'None', 'Physics', '89', '100', '0'), (4170, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '600', '1350', '3.5', '100', 'SSN College of Engineering', 'EEE', '8.61', '10', '0'), (4171, '6', 'Admit', 'MS', 'Robotics', 'Fall ', '2014', '167', '156', '323', '4', '111', 'U.V. Patel College of Engineering Ganpat University', 'Mechatronics engineering', '68.25', '100', '0'), (4172, '6', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '790', '570', '1360', '3.5', '92', 'MU', 'Electronics and Telecommunication', '70.04', '100', '0'), (4173, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (4174, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '172', '151', '323', '3.5', '105', 'None', '0', '0', '0', '0'), (4175, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '163', '333', '4', '112', 'DU', 'ECE', '78', '100', '0'), (4176, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences Indore', 'Electrical Engineering', '80.38', '100', '0'), (4178, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '145', '304', '3', '91', 'JNTU', 'Information Technology', '73.25', '100', '0'), (4179, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '101', 'UPTU', 'CS', '71', '100', '0'), (4180, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '158', '315', '4.5', '116', 'NIT Karnataka', 'Computer Engineering', '6.9', '10', '0'), (4181, '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'CEG', 'Civil Engineering (Agricultural and Irrigation Engineering Degree)', '7.5', '10', '0'), (4182, '6', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (4183, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '510', '1230', '3.5', '100', 'COEP', 'Information Technology', '8.05', '10', '0'), (4184, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '4', '97', 'PSG College of Technology', 'Mechanical', '8.04', '10', '0'), (4186, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (4188, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (4189, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (4190, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '790', '560', '1350', '4', '101', 'VJTI', 'civil engineering', '7', '10', '0'), (4191, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '550', '1340', '3.5', '112', 'Sathyabama University', 'ICE', '78', '100', '0'), (4192, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '102', 'Kurukshetra University', 'Information Technology', '70', '100', '0'), (4193, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (4194, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3', '107', 'VTU', 'CS', '8.9', '10', '0'), (4195, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (4196, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '148', '311', '3', '104', 'The LNM Institute of Information Technology', 'Communication and Computer Engineering', '7.79', '10', '0'), (4197, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '3', '107', 'GGSIPU', 'Computer Science', '72', '100', '0'), (4198, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2008', '800', '570', '1370', '3', '105', 'TCE', 'ECE', '8.43', '10', '0'), (4199, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (4200, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '570', '1370', '4', '110', 'BITS Pilani', 'EEE', '8.12', '10', '0'), (4201, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '150', '309', '3', '98', 'NIT Kurukshetra', 'Mechanical Engineering', '8', '10', '0'), (4202, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '148', '311', '3', '102', 'JNTU', 'Electronics and communication engineering', '80', '100', '0'), (4203, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (4204, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2007', '800', '640', '1440', '4', '273', 'CEG', 'ECE', '8.79', '10', '0'), (4206, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '110', 'RNSIT', 'Computer Science', '76.7', '100', '0'), (4207, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '6', 'Vignan Institute of Technology and Science', 'ECE', '77', '100', '0'), (4208, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (4209, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Anna University', 'Computer Science', '78', '100', '0'), (4210, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '150', '310', '4.5', '106', 'UVCE', 'Computer Science', '81', '100', '75'), (4211, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '153', '315', '3.5', '110', 'SASTRA', 'Mechanical Engg', '8.26', '10', '27'), (4212, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '150', '160', '310', '3.5', '104', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (4213, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3', '120', 'BMSCE', 'CS', '81', '100', '0'), (4214, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '154', '319', '3', '112', 'The LNM Institute of Information Technology', 'Computer Science', '8.5', '10', '0'), (4215, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '780', '590', '1370', '4', '112', 'JNTU', 'ece', '85', '100', '0'), (4216, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '330', '1120', '3.5', '91', 'Sathyabama University', 'ECE', '78', '100', '0'), (4217, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4218, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '104', 'SK University', 'CSE', '77.8', '100', '0'), (4219, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (4220, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '97', 'VJTI', 'Electronics', '7.9', '10', '0'), (4221, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '162', '328', '4', '113', 'NIT Tirchy', 'Mechanical', '8.38', '10', '0'), (4222, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '96', 'University of Mumbai', 'Computer Engineering', '70.4', '100', '0'), (4224, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (4225, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (4226, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '4.5', '115', 'Amity University', 'Computer Science', '7.36', '10', '0'), (4227, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (4228, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '149', '310', '3.5', '102', 'VTU', 'Computer Science', '74.95', '100', '25'), (4229, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '470', '1230', '4.5', '97', 'Pune University', '0', '70', '100', '0'), (4230, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '610', '1400', '3.5', '113', 'JNTU', 'ece', '78.7', '100', '0'), (4232, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (4233, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (4234, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (4237, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '161', '149', '310', '3', '103', 'Anna University', 'ECE', '8.73', '10', '16'), (4239, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '283', 'University of Madras', 'Computer Science', '76', '100', '0'), (4240, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '167', '147', '314', '3.5', '103', 'K J Somaiya College of Engiineering', 'Electronics', '55', '100', '0'), (4241, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '94', 'JSSATE India', 'CS', '72.84', '100', '0'), (4242, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '670', '520', '1190', '4', '93', 'MSRIT', 'Industrial Engineering and Management', '70.92', '100', '0'), (4243, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '730', '640', '1370', '4.5', '108', 'L D College Of Engineering', 'Civil', '7.56', '10', '0'), (4244, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '153', '323', '4', '106', 'IIT Roorkee', 'Electrical Engineering', '8.3', '10', '0'), (4246, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '560', '1330', '4', '108', 'Anna University', 'Aeronautical Engineering', '8.33', '10', '0'), (4247, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (4248, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '470', '1260', '5.5', '283', 'NIT Karnataka', 'Electronics and Communication', '82', '100', '0'), (4249, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '570', '1370', '3.5', '108', 'NSS College of Engineering', 'Electronics and Communication', '79', '100', '0'), (4250, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (4251, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '143', '301', '3', '98', 'Anna University', 'Mechanical', '7.76', '10', '0'), (4252, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (4253, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '790', '760', '1550', '4.5', '111', 'BITS Pilani', '0', '7.9', '10', '0'), (4254, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '760', '530', '1290', '3.5', '109', 'NIT Warangal', 'Metallurgical and Materials Engg.', '8.5', '10', '0'), (4255, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '460', '1200', '3', '91', 'MIT/ANNA UNIVERSITY', 'PRODUCTION ENGINEERING', '8.3', '10', '0'), (4256, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '157', '156', '313', '3.5', '107', 'VIT', 'Biomedical EWNgineering', '8.3', '10', '0'), (4257, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '780', '340', '1120', '3', 'None', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '82', '100', '36'), (4258, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '141', '305', '3.5', '98', 'MU', 'Information Technology', '67.96', '100', '0'), (4259, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '550', '1340', '3.5', '100', 'Nirma Institute of Technology', 'Electronics & Communications', '8.47', '10', '0'), (4260, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (4261, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '112', 'NIT Calicut', 'ECE', '8.32', '10', '0'), (4262, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (4263, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '167', '157', '324', '3', '110', 'IIT', 'Electronics and Communication', '7.94', '10', '0'), (4264, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '101', 'KLCE', 'Electonics and communications', '8.68', '100', '0'), (4265, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '149', '312', '3', '99', 'JNTU', 'ECE', '7.26', '10', '0'), (4267, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (4268, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', 'None', '103', 'PSG College of Technology', 'MECHANICAL SANDWICH', '8.71', '10', '0'), (4269, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '109', 'IIT Delhi', 'Electrical Engineering', '8.06', '10', '0'), (4270, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '640', '1440', '3', '100', 'CVRCE', 'ece', '81', '100', '0'), (4272, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2013', '153', '146', '299', '3', '7', 'Osmania University', 'civil', '0', '0', '0'), (4273, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '590', '1370', '3', '98', 'CEG', 'Electronics and Communication', '7.03', '10', '0'), (4274, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (4275, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '155', '320', '3', '109', 'IIT (BHU) Varanasi', 'Mechanical Engineering', '7.01', '10', '0'), (4276, '6', 'Admit', 'MS', 'Electronics Engineering', 'Fall ', '2015', '168', '156', '324', '3', '96', 'Velammal Engineering College', 'Electronics and Communication Engineering', '9.01', '10', '0'), (4277, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (4278, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '142', '310', '3', '90', 'IIT Bhubaneswar', 'Electrcial Engineering', '8.14', '10', '0'), (4279, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3', '103', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.69', '10', '0'), (4280, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '161', '152', '313', '4', '112', 'MNIT', 'Civil Engineering', '7.67', '10', '0'), (4281, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '160', '329', '4', '106', 'IIT Madras', 'Engineering Physics', '0', '0', '0'), (4282, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '157', '321', '4', '113', 'Manipal Institue of Technology', 'EEE', '8.08', '10', '0'), (4283, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '161', '146', '307', '4', '103', 'NMAM Institute of technology', 'Electronics and Communication Engineering', '8.73', '10', '0'), (4284, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '610', '1380', '3.5', '112', 'NIT Bhopal', 'ECE', '8.27', '10', '0'), (4285, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '147', '306', '3', '99', 'The National Institute of Engineering', 'Mechanical Engg.', '8.91', '10', '34'), (4286, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '157', '318', '4.5', '105', 'University of Pune', 'Mechanical', '68', '100', '0'), (4287, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '4', '106', 'VTU', 'CS', '8.7', '10', '0'), (4288, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (4289, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '410', '1210', '3.5', '107', 'MIST JNTU -HYD', 'ECE', '0', '0', '0'), (4290, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (4291, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '94', 'MU', 'Comp. Engg', '77', '100', '0'), (4292, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '156', '319', '3.5', '107', 'VIT', 'Mechanical engineering', '8.93', '10', '29'), (4293, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '14', '161', '147', '308', '3.5', '99', 'SRM', 'CSE', '7.98', '10', '33'), (4294, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (4295, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '4', '105', 'BITS Pilani', 'Computer Science', '7.64', '10', '35'), (4296, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '157', '318', '3.5', '95', 'AMU Aligarh', 'Mech.', '9.67', '10', '0'), (4297, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '107', 'MS University Baroda', 'Electronics', '78.14', '100', '0'), (4298, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '169', '155', '324', '3', '99', 'NIT Kurukshetra', 'ECE', '8.53', '10', '0'), (4299, '6', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '47', '33', '80', '4.5', '97', 'Pune University', '0', '67.3', '100', '0'), (4300, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '160', '327', '4', '110', 'Amrita School of Engineering', 'ECE', '8.06', '10', '0'), (4301, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '161', '155', '316', '3.5', '103', 'None', 'Mechanical Engineering', '82.78', '100', '0'), (4302, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '154', '162', '316', '4', '112', 'SWEC Hyd', 'Electronics and Instrumentation', '76', '100', '0'), (4303, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '310', '159', '469', '151', '98', 'NIT Calicut', 'Computer Science', '8.07', '10', '0'), (4304, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '152', '311', '3', '100', 'Amrita School of Engineering', 'Mechanical', '8.34', '10', '0'), (4305, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '151', '311', '3', '86', 'Thapar University', 'electronics and comm. engg', '9.1', '10', '0'), (4306, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '560', '1300', '3.5', '106', 'HKBKCE', 'Electronics and Communication', '79', '100', '0'), (4307, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (4308, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '157', '156', '313', '3', '105', 'College Of Engg Chengannur', 'ECE', '73.2', '100', '55'), (4309, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (4310, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '590', '1350', '4.5', '115', 'Anna University', 'Electrical and Electronics/ Information Technology', '85', '100', '0'), (4311, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (4312, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (4313, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '700', '1440', '4', '104', 'Sri Venkateswara College of Engineering', 'EEE', '77', '100', '0'), (4314, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '145', '314', '4', '106', 'BNMIT', 'Electrical and Electronics', '77.32', '100', '0'), (4315, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3.5', '93', 'JNVU/MBM Engg College Jodhpur Rajasthan', 'CSE', '67', '100', '0'), (4316, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '145', '311', '3', '100', 'None', '0', '0', '0', '0'), (4317, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (4318, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4319, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '113', 'R V College of Engineering', 'Electronics and Communication Engineering', '74.19', '100', '0'), (4320, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (4321, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '4', '108', 'VTU', 'Infosmation Science & Engineering', '75.67', '100', '0'), (4322, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '148', '314', '3', '102', 'VIT University', 'Mechanical engineering', '9', '10', '0'), (4323, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (4324, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '750', '650', '1400', '4', '114', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (4325, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (4326, '6', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (4327, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '147', '305', '3', '103', 'Anna University', 'Aeronautical Engineering', '8.24', '10', '0'), (4328, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '540', '1240', '3.5', '101', 'BIT Mesra', 'ECE', '0', '0', '0'), (4329, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '660', '1460', '3.5', '113', 'None', '0', '73', '100', '0'), (4330, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (4331, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (4332, '6', 'Admit', 'MS', 'Environmental Science', 'Fall ', '2014', '170', '157', '327', '4', '110', 'ISM Dhanbad', 'Environmental Science and Engineering', '7.09', '10', '0'), (4333, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '150', '310', '4', '99', 'VJTI', 'Production Engineering', '8.2', '10', '36'), (4334, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '101', 'WBUT', 'Information Technology', '8.38', '10', '0'), (4335, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '92', 'Punjab Technical University', 'ece', '78', '100', '0'), (4336, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '107', 'None', '0', '0', '0', '0'), (4337, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (4338, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4.5', '112', 'SSN College of Engineering', 'Computer Science and Engineering', '8.04', '10', '0'), (4339, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (4340, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '3', '109', 'COEP', 'Electrical', '7.73', '10', '0'), (4341, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '150', '320', '3.5', '110', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '7.23', '10', '0'), (4342, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (4343, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (4344, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '92', 'VTU', 'Information science & Engineering', '72', '100', '0'), (4345, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '155', '317', '3', 'None', 'MU', 'Computer Engineering', '61', '100', '0'), (4346, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4', '109', 'SSN College of Engineering', 'Electronics & Communication', '89', '100', '0'), (4347, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '149', '314', '3', '7', 'SRM', 'Computer Science', '8.3', '10', '0'), (4348, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '153', '310', '3', '107', 'SRM', 'Electronics and instrumentation', '7.92', '10', '0'), (4349, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '540', '1320', '4', '113', 'NIT Tirchy', 'Instrumentation and Control Engineering', '8.07', '10', '0'), (4350, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '163', '323', 'None', '111', 'MU', 'Computer Engg', '72.87', '100', '0'), (4351, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '115', 'NITK Surathkal', 'EEE', '8.64', '10', '0'), (4352, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '156', '321', '4', '116', 'M.V.S.R Engineering College', 'ECE', '87', '100', '0'), (4353, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (4354, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '510', '1310', '3', '96', 'IIT Kharagpur', 'ECE', '7.81', '10', '0'), (4355, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3', '108', 'NIT Surathkal', '0', '7.65', '10', '0'), (4356, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '4', '108', 'SSN College of Engineering', 'Computer Science', '82.4', '100', '0'), (4357, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (4358, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '103', 'BITS Pilani', 'Information Systems', '7.6', '10', '0'), (4359, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (4360, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '159', '140', '299', '2.5', '80', 'JNTU', 'ece', '63', '100', '0'), (4361, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '107', 'MU', 'Computer Engineering', '3.8', '4', '0'), (4362, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (4363, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '148', '151', '299', '3.5', '112', 'MU', 'BE Civil', '0', '0', '0'), (4364, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3.5', '94', 'Nagpur University', 'Computer Science', '70', '100', '0'), (4365, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '560', '1350', '3.5', '108', 'VJTI', 'Electrical Engineering', '7.3', '10', '0'), (4366, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '590', '1390', '4', '287', 'MU', 'IT', '65', '100', '0'), (4367, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2010', '770', '560', '1330', '4.5', '116', 'Atharva College', 'Computer Engineering', '77', '100', '0'), (4368, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (4369, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '143', '310', '3', 'None', 'GITAM', 'ECE', '90', '100', '0'), (4370, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '350', '1100', '3', '87', 'Madras Institute of Technology', 'ECE', '9.5', '10', '0'), (4371, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '450', '1230', '3.5', '106', 'Punjabi University', 'Mechanical Engineering', '8.13', '10', '0'), (4372, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (4373, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Manipal Institue of Technology', '0', '0', '0', '0'), (4374, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '150', '307', '4', '105', 'MU', 'Information Technology', '73.5', '100', '0'), (4375, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '154', '315', '3', '103', 'VTU', 'Computer Science', '85', '100', '0'), (4376, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '152', '310', '4', '113', 'Amrita School of Engineering', 'CSE', '8.4', '10', '0'), (4377, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '680', '1460', '3', '106', 'MU', 'electronics', '79', '100', '0'), (4378, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '169', '152', '321', '3', '106', 'IIT Patna', 'EE', '7.6', '10', '0'), (4379, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', '103', 'PSG College of Technology', 'Computer science and Engineering', '8.3', '10', '41'), (4380, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'PSG College of Technology', 'Electronics and Communications', '9.17', '10', '0'), (4381, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '520', '1290', '305', '105', 'Dr Mahalingam College of Engineering and Technology', 'CSE', '80', '100', '0'), (4382, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '152', '315', '4', 'None', 'NIT Nagpur', 'Electronics & Communication', '9.63', '10', '0'), (4383, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '470', '1260', '3.5', '102', 'Anna University', 'CSE', '68', '100', '0'), (4384, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '160', '323', '3', '106', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '85.79', '100', '0'), (4385, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (4386, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (4387, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '490', '1290', 'None', '99', 'IIITH', 'Computer Science', '8.37', '10', '0'), (4388, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '161', '153', '314', '3', '110', 'VTU', 'CSE', '83.33', '100', '38'), (4389, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (4390, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '157', '150', '307', '3', '100', 'Anna University', 'Biomedical Engineering', '8.58', '10', '0'), (4391, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (4392, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4393, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '157', '316', '3', '101', "Vidyavardhini\\'s College of Engg and Technology", 'Computer Engineering', '73.22', '100', '0'), (4394, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '3.5', '108', 'COEP', 'Mechanical', '7.18', '10', '15'), (4395, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (4396, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (4397, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '149', '315', '4', '107', 'VIT', 'ECE', '8.75', '10', '0'), (4398, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '430', '1190', '3.5', '91', 'srknec', 'electonics', '63', '100', '0'), (4399, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (4400, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (4401, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Electronics and Communication', '70', '100', '0'), (4402, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (4403, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '116', 'Thiagarajar College of engineering', 'EEE', '8.8', '10', '0'), (4404, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '44', '31', '75', '4', '108', 'Sri Venkateswara College of Engineering', 'CSE', '75', '100', '0'), (4405, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '150', '312', '3', '91', 'PSG College of Technology', 'Mechanical', '8.36', '10', '48'), (4406, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (4407, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '620', '1400', '4', '110', 'VIT University', '0', '8.4', '10', '0'), (4408, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (4410, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (4411, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (4412, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '112', 'MNM Jain Engineering College', 'Electrical and Electronics Engineering', '90', '100', '0'), (4413, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (4414, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '147', '308', '3', '97', 'NIT Surat', 'Electronics Engineering', '8.02', '10', '0'), (4415, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '680', '1470', '5', '293', 'D J Sanghvi', 'Computer Engineering', '66', '100', '0'), (4416, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '770', '490', '1260', '3', 'None', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (4417, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '152', '320', '3.5', '107', 'Medicaps Institute of Science & Technology Indore', 'Electronics & Communication', '71', '100', '0'), (4418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (4420, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '161', '329', '4', '110', 'Jamia Millia Islamia', 'Dept of Comp Engg', '8.77', '10', '0'), (4421, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (4422, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '150', '308', '4', '110', 'Coimbatore Insitute of Technology', 'ECE', '9.28', '10', '68'), (4423, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (4424, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '550', '1280', '3.5', '86', 'Anna University', 'mechanical', '78', '100', '0'), (4425, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (4426, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '640', '1440', '4', '108', 'Amrita School of Engineering', 'Electrical and Electronics', '7.73', '10', '0'), (4427, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (4428, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '151', '149', '300', '3.5', '91', 'Iowa State University', 'Electrical Engineering', '3.5', '100', '0'), (4429, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (4430, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '153', '323', '3', '107', 'Assam Engineering College', 'Computer Science and engineering', '76', '100', '12'), (4432, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3.5', '99', 'IIT Madras', 'Electrical Engineering', '7.16', '10', '0'), (4433, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '780', '620', '1400', '4', '113', 'Univ. of Pune', 'Computer Engineering', '61.55', '100', '0'), (4434, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '139', '297', '3', '87', 'RTU/Government Engineering College Ajmer', 'Computer Science', '80', '100', '6'), (4435, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '160', '324', '4', '114', 'VTU', 'CS', '75', '100', '0'), (4436, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (4437, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '670', '1440', '6', '293', 'Anna University', 'CSE', '80', '100', '0'), (4438, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '148', '311', '3', '102', 'Osmania University', 'ECE', '92', '100', '0'), (4439, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3.5', '107', 'VTU', 'ECE', '8.99', '10', '0'), (4440, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '360', '1160', '3', '107', 'Anna University', 'Electronics and Communication Engg', '75', '100', '0'), (4441, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '153', '148', '301', '3.5', '110', 'Sethu Institute of Technology AU', 'Instrumentation and Control Engineering', '65', '100', '0'), (4442, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '156', '323', '4', '113', 'BITS Pilani', 'EEE', '6.45', '10', '25'), (4443, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '141', '304', '4', '103', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (4444, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (4445, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '150', '316', '3', '103', 'Walchand College Of Engineering', 'CSE', '8.45', '10', '0'), (4446, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (4447, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (4448, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (4449, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (4450, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '151', '313', '3', '101', 'Pune University', 'Computer Science', '68', '100', '25'), (4451, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (4452, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '153', '323', '3.5', '90', 'Osmania University', 'ECE', '77', '100', '0'), (4453, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '162', '153', '315', '4', '104', 'Bangalore Institute of Technology', 'Electronics and Communication', '72.86', '100', '0'), (4454, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '540', '1310', '3.5', '98', 'SSN College of Engineering', 'IT', '77', '100', '0'), (4455, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '153', '316', '3.5', '101', 'GGSIPU', 'Computer science and Engg', '73.4', '100', '0'), (4456, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3', '107', 'Anna University', 'Electronics and Communication', '8.9', '10', '0'), (4457, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '780', '500', '1280', '3.5', '92', 'BIT Mesra', 'Electical and Electronics Engineering', '6.28', '10', '0'), (4458, '6', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '770', '520', '1290', '3', '105', 'NIT Patna', 'IT', '9.18', '10', '0'), (4459, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (4460, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (4461, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '104', 'None', '0', '67', '100', '0'), (4462, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '2.5', '81', 'G.Narayanamma Institute of Technology and Science', 'computer science', '78', '100', '0'), (4463, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '580', '1380', '4.5', '117', 'Osmania University', 'Electronics and Communication Engg.', '79', '100', '0'), (4464, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (4465, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (4466, '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (4467, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '153', '317', '4', '108', 'RGTU', 'Electronics & Communication Engineering', '75', '100', '0'), (4468, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (4469, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3.5', '107', 'WBUT', 'CSE', '8.4', '10', '0'), (4470, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '3.5', '108', 'Jadavpur University', 'Information Technology', '8.99', '10', '0'), (4471, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '161', '154', '315', '4', '110', 'NUAA', '0', '4.3', '5', '0'), (4472, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '157', '320', '3', '100', 'ACCET', 'Electronics and Coomunication', '80.04', '100', '45'), (4473, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '149', '309', '4', '114', 'COEP', 'Information Technology', '9.04', '10', '0'), (4474, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (4475, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (4476, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '89', 'JNTU', 'Computer Science & Engineering', '78.45', '100', '0'), (4477, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '108', 'VJTI', 'CS', '7.5', '10', '0'), (4478, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (4479, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '149', '312', '3', '108', 'BMSCE', 'ECE', '8.9', '10', '0'), (4480, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '3.5', '97', 'ISM Dhanbad', 'ELECTRONICS ENGINEERING', '7.06', '10', '0'), (4481, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', '107', 'PSG College of Technology', 'Electronics and Communication', '9.24', '10', '0'), (4482, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '550', '1350', '4.5', '280', 'G.B. Pant Univ of Agril. & Tech.', 'Computer Engineering', '72.3', '100', '0'), (4483, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '160', '319', '4', 'None', 'RGPV', 'Computer Science', '71', '100', '0'), (4484, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '112', 'PESIT', 'Computer science and Engineering', '8.21', '10', '25'), (4485, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '151', '310', '3', 'None', 'VTU', 'Electronics and communication', '8.9', '10', '0'), (4486, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (4487, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '139', '303', '3', '90', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '74.44', '100', '0'), (4488, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '770', '470', '1240', '4', '108', 'JNTU', 'Electronics and Computer Engineering', '83.1', '100', '36'), (4489, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '155', '316', '4', '107', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '77', '100', '27'), (4490, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'NIT Tirchy', '0', '0', '0', '0'), (4491, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '151', '159', '310', '3', '107', 'NIT Tirchy', 'Production Engg', '7.37', '10', '0'), (4492, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '147', '310', '4', '88', 'NITK Surathkal', 'ECE(Mtech)', '7.33', '10', '0'), (4493, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '460', '1240', '2.5', '95', 'Manipal Institue of Technology', 'Electronics and Communication', '8.69', '10', '0'), (4494, '6', 'Admit', 'MS', 'None', 'Spring ', '2016', '163', '146', '309', '2.5', 'None', 'SRM', 'computer science and engineering', '8', '10', '30'), (4495, '6', 'Admit', 'MS', 'Information technology management', 'Spring ', '2013', '165', '154', '319', '4', '107', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Computer Science', '73.72', '100', '0'), (4497, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '115', 'Amrita School of Engineering', 'ECE', '8.32', '10', '0'), (4498, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (4499, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Electronics & communication', '9.25', '10', '0'), (4500, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '99', 'CBIT', 'CSE', '89', '100', '0'), (4501, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '145', '305', '3', '98', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (4502, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '790', '560', '1350', '3', '102', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4503, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4504, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '108', 'CBIT', 'EEE', '81.3', '100', '0'), (4505, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '147', '315', '3.5', '99', 'None', 'Computer Science', '9.74', '10', '0'), (4506, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '151', '311', '3', '101', 'UPTU', 'Information Techonoly', '76.28', '100', '36'), (4507, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3', 'None', 'None', 'CSE', '8.23', '10', '24'), (4508, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '92', 'NIT Warangal', 'Chemical Engineering', '8.36', '10', '0'), (4509, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (4510, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '4', '115', 'University of Calicut', 'Electronics and Communication', '9.54', '10', '0'), (4511, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (4512, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (4513, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (4514, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '4', '105', 'Pune University', 'Computer', '64.24', '100', '0'), (4516, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '510', '1280', '3.5', '94', 'BITS Pilani', '0', '8.17', '10', '0'), (4517, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Bangalore Institute of Technology', 'Information Science', '78.8', '100', '0'), (4518, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '620', '1420', '4.5', '108', 'VJTI', 'electrical', '8', '10', '0'), (4519, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '153', '317', '4', '109', 'Amrita School of Engineering', 'ECE', '8.88', '10', '0'), (4520, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (4521, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (4522, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3.5', '109', 'UPTU', 'Computer Science', '73.12', '100', '0'), (4523, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '149', '312', '3.5', '93', 'Maharishi Dayanand University', 'Computer Science', '75', '100', '0'), (4524, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '530', '1300', '4.5', '118', 'Anna University', 'Electronics and Communication Engineering', '73', '100', '0'), (4525, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3', '104', 'U.P Technical University', 'Computer Science', '62', '100', '0'), (4527, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '420', '1200', '4', '100', 'MSRIT', 'Electronics & Communications', '79', '100', '0'), (4528, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '158', '323', '2.5', '100', 'NIT Rourkela', 'Mechanical Engg.', '8.17', '10', '0'), (4529, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (4530, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '165', '152', '317', '4', '109', 'NIT Tirchy', 'Electrical & Electronics Engineering', '7.7', '10', '36'), (4531, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '166', '155', '321', '4', 'None', 'VTU', 'CS', '76', '100', '0'), (4532, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '156', '319', '4', '119', 'National Insititute of Technology Karnataka', 'Electrical Engineering', '7.13', '10', '0'), (4533, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '500', '1250', '3', 'None', 'LNMIIT', 'computer science', '7.93', '10', '0'), (4534, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '620', '1420', '3.5', '101', 'UIET Panjab University', 'Computer science', '72.7', '100', '0'), (4535, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '143', '313', '4', '97', 'MU', 'Computer Engineering', '74', '100', '0'), (4536, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '153', '319', '4', 'None', 'Anna University', 'ece', '7.04', '10', '0'), (4537, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', 'None', 'JSSATE', 'InformationScience', '67', '100', '0'), (4538, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '610', '1410', '4', '109', 'PEC University of Technology', 'Mechanical Engineering', '8.61', '10', '0'), (4539, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (4540, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '150', '314', '3.5', '109', 'BITS Pilani', 'E&I;', '7.4', '10', '0'), (4541, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '161', '155', '316', '4', '100', 'VTU', 'Computer Science', '73', '100', '61'), (4542, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '580', '1300', '3.5', '106', 'VTU', 'EEE', '78.86', '100', '0'), (4543, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (4544, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '94', 'FCRIT', 'IT', '77.7', '100', '0'), (4545, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '158', '319', '4.5', 'None', 'VTU', 'Industrial Engg. & Management', '73', '100', '0'), (4546, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (4547, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '780', '460', '1240', '3', '92', 'JNEC', 'CS', '66', '100', '0'), (4548, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3.5', '112', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (4549, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '143', '307', '3', '94', 'NITK Surathkal', 'Mechanical Engineering', '7.41', '10', '0'), (4550, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3.5', '99', 'Osmania University', 'Computer Science', '78', '100', '0'), (4551, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '430', '1210', '4', '105', 'VTU', 'CS', '75.2', '100', '0'), (4552, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (4553, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (4554, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '770', '640', '1410', '5.5', '283', 'NIT Calicut', 'ECE', '9.2', '10', '0'), (4555, '6', 'Admit', 'MS', 'MIS', 'Fall', 'None', '162', '150', '312', 'None', '100', 'Nirma Institute of Technology', 'ECE', '7.74', '10', '0'), (4556, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (4557, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (4558, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (4559, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'JNTU', 'EIE', '73', '100', '0'), (4560, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '500', '1270', '3.5', '104', 'PSG College of Technology', 'CS', '9.43', '10', '0'), (4561, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'VTU', 'Computer Science', '75', '100', '0'), (4562, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '450', '1220', '3', '88', 'Sir MVIT', 'EC', '8.2', '100', '0'), (4563, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', 'None', 'Osmania University', 'I.T', '86', '100', '34'), (4564, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (4565, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '570', '1330', '3', '109', 'VTU', 'Electronics and Communication', '74', '100', '0'), (4566, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (4567, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '280', '1050', '3.5', '97', 'JNTU', 'Mechanical Engineering', '84.8', '100', '0'), (4568, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '113', 'RNSIT', 'ISE', '75', '100', '0'), (4569, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '1460', '670', '2130', '4', '114', 'University Institute of Engineering and Technology Kurukshetra University', 'Electronics and Communication', '71.11', '100', '0'), (4570, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '530', '1330', '4', '280', 'NIT Tirchy', 'ECE', '8.2', '10', '0'), (4571, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '149', '312', '4', '106', 'YMCA', 'Information Technology', '8.27', '10', '0'), (4572, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '102', 'R V College of Engineering', 'Information Science', '9.05', '10', '40'), (4573, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', 'None', 'Panjab University', 'ECE', '65.38', '100', '0'), (4574, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '156', '324', '3', '103', 'IIIT Allahabad', 'ECE', '9', '10', '0'), (4575, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '318', '155', '473', '163', '107', 'JNTU', 'Electronics and communications', '86.12', '100', '0'), (4576, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '160', '143', '303', '3', '6', 'LDCE', '0', '7.2', '10', '0'), (4577, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '154', '318', '3', 'None', 'CEG', 'ECE', '9.62', '10', '24'), (4578, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '152', '313', '3.5', '109', 'Amrita Vishwa Vidhyapeetham', 'EEE', '9.16', '10', '24'), (4579, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (4580, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '510', '1290', '2.5', 'None', 'Anna University', 'EEE', '8.01', '10', '0'), (4581, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '162', '332', '4.5', '118', 'IIT Madras', 'Aerospace', '9.4', '100', '0'), (4582, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '152', '314', '4.5', '109', 'Pune University', 'Electronics', '58', '100', '0'), (4583, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (4584, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '790', '530', '1320', '3.5', '101', 'IIT Guwahati', 'Mech', '7.65', '10', '0'), (4585, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (4586, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (4587, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '157', '319', '4', '110', 'Gujarat Technological University', 'Mech', '8.3', '10', '0'), (4588, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (4590, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '97', 'Pune University', 'Computer Engineering', '71', '100', '0'), (4591, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (4592, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '2.5', '91', 'SSN College of Engineering', 'IT', '79.2', '100', '0'), (4593, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '152', '314', '4', '106', 'NMIMS', 'IT', '3.04', '4', '0'), (4594, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (4595, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (4596, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '83', 'Sinhgad College of Engineering', 'CS', '74', '100', '0'), (4597, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (4598, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '400', '1190', '3', '102', 'VIT', 'Electronics', '8.52', '10', '0'), (4599, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '149', '317', '4', '105', 'IIT BHU', 'Electrical Engineering', '7.68', '10', '10'), (4600, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '157', '319', '3.5', 'None', 'Arizona State University', 'Electrical Engineering', '3', '4', '0'), (4601, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '162', '150', '312', '3', '100', 'VIT Pune', 'CHEMICAL ENGINEERING', '8.5', '10', '0'), (4603, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '4', '105', 'IIT Patna', 'Department of EEE', '8.23', '10', '0'), (4604, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'University of Mumbai', 'Computer Engineering', '65', '100', '0'), (4605, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '100', 'VTU', 'Computer Science', '74', '100', '0'), (4606, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '105', 'RGPV', 'Information Technology', '77.09', '100', '0'), (4607, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4608, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4609, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (4610, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '160', '146', '306', '3', '99', 'NIT Surat', 'Mechanical', '7.39', '10', '0'), (4611, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (4612, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '162', '149', '311', '3', 'None', 'JNTU', 'Computer Science and Engineering', '73', '100', '36'), (4613, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '163', '140', '303', '3', '88', 'Sree Vidyanikethan Engineering College', 'Civil Engineering', '76.2', '100', '0'), (4615, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2011', '800', '540', '1340', '3.5', '107', 'NIT Trichy', 'CSE', '7.31', '10', '0'), (4616, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '143', '298', '3', 'None', 'Coimbatore Insitute of Technology', 'mechanical', '7.7', '10', '0'), (4617, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'Madras Institute of Technology', 'Information Technology', '7.5', '10', '0'), (4618, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '98', 'West Bengal University Of Technology', 'Electrical Engg.', '8.36', '10', '0'), (4619, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '97', 'None', '0', '0', '0', '0'), (4620, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (4621, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '540', '1330', '3', '101', 'R V College of Engineering', 'ECE', '76.57', '100', '0'), (4622, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (4623, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'RVR & JC College of Engineering', 'electrical and electronics engineering', '83.69', '100', '0'), (4624, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '152', '310', '3.5', '111', 'None', 'ECE', '90.04', '100', '0'), (4625, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '153', '314', '3', '104', 'Bangalore Institute of Technology', 'Computer Science', '73', '100', '12'), (4626, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '155', '150', '305', '3.5', '107', 'Nagpur University', '0', '0', '0', '0'), (4627, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (4628, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '159', '324', '4', '112', 'NIT Rourkela', 'Electronics and Communication', '8.18', '10', '0'), (4629, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '420', '1190', '3', '99', 'Sri Venkateswara College of Engineering', 'Electrical And Electronics Engineering', '75', '100', '0'), (4630, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '151', '314', '3', 'None', 'IIIT Allahabad', 'IT', '8.78', '10', '18'), (4631, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '3', '100', 'West Bengal University Of Technology', 'CSE', '8.44', '10', '0'), (4632, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '163', '153', '316', '3', '101', 'GGSIPU', 'CSE', '75.6', '100', '18'), (4633, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (4634, '6', 'Admit', 'MS', 'Manufacturing Engineering', 'Fall ', '2012', '163', '148', '311', '3', '105', 'BVP Pune', 'production', '77', '100', '0'), (4635, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (4637, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '147', '311', '3.5', '101', 'DA-IICT', 'ICT', '8.2', '10', '0'), (4638, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (4639, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '109', 'SRM', 'Electrical and Electronics', '9.8', '100', '0'), (4640, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2016', '161', '152', '313', '3.5', 'None', 'University of Bristol', 'Civil Engineering', '3.2', '4', '0'), (4641, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '440', '1240', '3', '96', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Computer Science', '9.17', '10', '0'), (4642, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '290', 'MU', 'Information Technology', '70', '100', '0'), (4643, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '164', '161', '325', '4', '112', 'COEP', 'Metallurgy and Material Science', '8.71', '10', '0'), (4644, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '143', '305', '3', '92', 'JBIT (Afflliated to JNTU)', 'Information Technology', '71.75', '100', '0'), (4645, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '650', '1450', '5', '297', 'PESIT', 'Electronics & Communication', '82.3', '100', '0'), (4647, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (4648, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (4649, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (4650, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '570', '1300', '3', 'None', 'KIIT', 'ELECTRICAL ENGINEERING', '8.5', '10', '0'), (4651, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institue of Technology and Science R.G.P.V. Bhopal', 'Electrical Engineering', '73.43', '100', '0'), (4652, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4653, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '530', '1290', '3', '91', 'IIT Allahabad', 'Information Technology', '8.11', '10', '0'), (4654, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '155', '320', '3', '96', 'VJTI', 'ETRX', '8.7', '10', '0'), (4655, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '161', '323', '4', '113', 'VIT', 'School of Electrical Sciences', '8.17', '10', '0'), (4656, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '151', '316', '3.5', '111', 'Govt. College Of Engg. Aurangabad', 'Computer Science', '80.5', '100', '0'), (4657, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '159', '146', '305', '3', '91', 'University of Pune', 'Computer Science', '63', '100', '0'), (4658, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', 'None', 'Manipal Institue of Technology', 'Computer Science', '7.97', '10', '24'), (4659, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', '106', 'PSG College of Technology', 'Production Engineering', '8.46', '10', '0'), (4660, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (4661, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '157', '326', '4', '112', 'BITS Pilani', 'Electronics & Instrumentation', '7.5', '10', '0'), (4662, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (4663, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '104', 'VTU', 'ECE', '81.23', '100', '0'), (4664, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '460', '1220', '3.5', '102', 'PSG College of Technology', 'Computer Science', '8.61', '10', '0'), (4665, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3.5', '101', 'NIT Silchar', 'CSE', '8.23', '10', '0'), (4666, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3', '105', 'University of Mumbai', 'Computer Engineering', '67.68', '100', '6'), (4667, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '150', '313', '3.5', '98', 'SSN College of Engineering', 'Computer science', '8', '10', '25'), (4668, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '510', '1240', '3', '104', 'Sri Siddhartha Institute of technology', 'Information Science', '9.24', '10', '0'), (4669, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '470', '1240', '3', '94', 'VIT University', 'B.Tech - IT', '8.87', '10', '0'), (4671, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (4672, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '148', '313', '4', '105', 'SSN College of Engineering', 'Computer Science and Engineering', '8.34', '10', '22'), (4673, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '161', '159', '320', '3.5', '106', 'IIT Mandi', 'Mechanical Engineering', '7.09', '10', '0'), (4674, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'VIT University', 'Electronics and communication Engineering', '8.75', '10', '0'), (4675, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '156', '324', '3.5', '112', 'SASTRA', 'ELECTRICAL & ELECTRONICS', '7.7', '10', '0'), (4676, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (4677, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'CVRCE', 'Civil Engineering', '75', '100', '0'), (4678, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '145', '311', '3', '92', 'BITS Pilani', 'Civil', '8.15', '10', '0'), (4679, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '2.5', '94', 'JNTU', 'EEE', '77', '100', '0'), (4680, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '147', '310', '3.5', '106', 'Sinhgad College of Engineering', 'Computer', '67.14', '100', '0'), (4681, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '149', '308', '3', '104', 'SRM', 'Civil Engineering', '9.1', '10', '16'), (4682, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (4683, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '168', '152', '320', '3.5', '102', 'NIT Rourkela', 'ECE', '7.75', '10', '48'), (4684, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '750', '470', '1220', '3', 'None', 'Crescent Engineering College', 'Mechanical Engineering', '7.98', '10', '24'), (4685, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '770', '580', '1350', '4', '115', 'PESIT', 'Mechanical', '8.73', '10', '0'), (4686, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (4687, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '103', 'BMSCE', 'Electronics and communication', '9.14', '10', '0'), (4688, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4.5', '118', 'BITS Pilani', 'Mechanical Engineering', '8.09', '10', '0'), (4689, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '165', '143', '308', '3.5', '103', 'NIT Rourkela', 'Mechanical Engineering', '8.19', '10', '0'), (4690, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (4691, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (4692, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '4', '109', 'COEP', 'IT', '8.22', '10', '0'), (4693, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (4694, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (4695, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '159', '159', '318', '4', '112', 'Sir MVIT', 'Industrial Engineering and Management', '79', '100', '0'), (4696, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '550', '1320', '3.5', '113', 'UPTU', 'Electronics and Communication', '76.56', '100', '0'), (4697, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (4698, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (4699, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '158', '318', '3', '106', 'S.D.M.C.E.T', 'electronics an communication engineering', '8.63', '10', '0'), (4700, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3', '107', 'VTU', 'Computer Science', '73', '100', '0'), (4701, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4702, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '111', 'MU', 'Mechanical Engineering', '70', '100', '0'), (4703, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (4704, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'Sinhgad College of Engineering', 'Mechanical engineering', '66', '100', '0'), (4705, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', 'None', '99', 'VTU', 'ECE', '82', '100', '0'), (4706, '6', 'Admit', 'MS', 'civil', 'Fall ', '2014', '157', '148', '305', '2.5', '91', 'MSRIT', 'Civil', '8.15', '10', '0'), (4707, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2014', '157', '142', '299', '3', '90', 'JNTU', 'ece', '73', '100', '0'), (4708, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3', '88', 'Sri Sairam Engineering College', 'EEE', '80', '100', '0'), (4710, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '4', '116', 'MU', 'Information Technology', '66.71', '100', '0'), (4711, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (4712, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '2.5', 'None', 'Guru Nanak Dev University Amritsar', 'Computer Science and Engineering', '78.2', '100', '0'), (4713, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3', '104', 'Anna University', 'CSE', '84.5', '100', '0'), (4714, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '98', 'BITS Goa', 'Electrical Engineering', '7.84', '10', '0'), (4715, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3.5', '107', 'GGSIPU', 'Information technology', '77.4', '100', '0'), (4716, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '108', 'GITAM', 'ECE', '7.83', '10', '0'), (4717, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '164', '156', '320', '4', '114', 'R V College of Engineering', 'CIVIL ENGINEERING', '9.8', '10', '0'), (4718, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '580', '1330', '4', '103', 'Anna University', 'ECE', '78', '100', '0'), (4719, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'D J Sanghvi', 'EXTC', '0', '0', '0'), (4720, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '3.5', '102', 'JBIET', 'ece', '76', '100', '0'), (4722, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '157', '155', '312', '3.5', '116', 'SRM', 'EEE', '7.9', '10', '0'), (4723, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '102', 'Univ--West Bengal University Of Technology/College--Institute Of Engineering And Management Kolkata', 'Computer Science Engineering', '8.52', '10', '0'), (4724, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'GITAM', 'Mechanical Engineering', '8.07', '10', '0'), (4725, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '165', '150', '315', '3', '105', 'Kerala University', 'EEE', '7.88', '10', '30'), (4726, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3', 'None', 'A D Patel Institute Of Technology', 'IT', '7.71', '10', '0'), (4727, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (4728, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '162', '160', '322', '3.5', '106', 'None', '0', '7.57', '10', '0'), (4729, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '146', '309', '4', '93', 'JNTU', 'CSE', '70.09', '100', '0'), (4730, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (4731, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '510', '1290', '3', '97', 'Velammal Engineering College', 'ECE', '80', '100', '0'), (4732, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '156', '325', '4.5', '109', 'NIT Karnataka', 'Mechanical Engineering', '7.23', '10', '0'), (4733, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '160', '151', '311', '3.5', '106', 'NMIMS', 'Computer Engineering', '2.98', '4', '0'), (4734, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (4735, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (4736, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (4737, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (4738, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '105', 'SATHAGIRI COLLEGE OF ENGINEERING VTU', 'ECE', '78.93', '100', '0'), (4739, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4741, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (4742, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (4743, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (4744, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '760', '630', '1390', '3', '102', 'CoE Trivandrum', '0', '7.3', '10', '0'), (4745, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '154', '315', '3', '115', 'Abhinav Hi-Tech College Of Engineering', 'Electronics and Communicaton Engineering', '71', '100', '0'), (4746, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '3.5', '105', 'GITAM', 'Electronics and Communication', '8.78', '10', '0'), (4747, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (4748, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '160', '320', '6', '120', 'MU', 'ME', '99', '100', '0'), (4749, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', 'None', '103', 'VIT', 'Information Technology', '9.02', '10', '23'), (4750, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (4751, '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2014', '164', '152', '316', 'None', '104', 'SIT', 'ECE', '9.4', '10', '0'), (4752, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3.5', '104', 'VNR VJIET', 'CSE', '72', '100', '0'), (4753, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (4754, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3.5', '106', 'Maharaja Agrasen Institute Of Technology', 'Computer Science', '76', '100', '0'), (4755, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '3.5', '111', 'College Of Engineering Roorkee', 'Computer Science', '76', '100', '0'), (4756, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (4757, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '93', 'Pune University', 'Computer Engineering', '63', '100', '0'), (4759, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (4760, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (4761, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3', '107', 'PSG College of Technology', 'Production Engineering', '7.94', '10', '0'), (4762, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '4', '101', 'Coimbatore Insitute of Technology', 'CSE', '8.23', '10', '0'), (4763, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '117', 'Madras Institute of Technology', 'RUBBER AND PLASTICS TECHNOLOGY', '8.48', '10', '0'), (4764, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (4765, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '4', '113', 'Pune University', 'Electronics and telecomm', '0', '0', '0'), (4766, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (4767, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (4768, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '370', '1170', '3', 'None', 'Govt. Engg. College Jabalpur', 'Mechanical Engineering', '75.78', '100', '0'), (4769, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '410', '1140', '4', '108', 'KLESCET Belgaum', 'Computer science', '75.2', '100', '0'), (4770, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (4771, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '103', 'NIT Durgapur', 'MCA', '8.67', '10', '0'), (4772, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (4773, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (4774, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '148', '307', '3.5', '96', 'VTU', 'Computer Science', '0', '0', '0'), (4775, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '390', '1180', '4', 'None', 'Bangalore Institute of Technology', 'Electronics & Communications', '77', '100', '0'), (4776, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '790', '490', '1280', '4.5', '280', 'PSG College of Technology', 'ECE', '8.82', '10', '0'), (4777, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (4778, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (4779, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3.5', '104', 'GGSIPU', 'CSE', '73.28', '100', '0'), (4780, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '158', '317', '3.5', '111', 'Vidyavardhaka College of Engineering', 'Computer Science', '74.28', '100', '0'), (4781, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '146', '308', '3.5', '95', 'National Institute of Science and Technology B.P.U.T Orissa', 'ELectronics & Communication', '7.56', '10', '0'), (4782, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '780', '450', '1230', '3', '100', 'GGSIPU', 'COMPUTER', '81.1', '100', '0'), (4783, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (4784, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (4785, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (4786, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '142', '306', '3', '99', 'VTU', 'IS', '8.49', '10', '0'), (4787, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '146', '309', '3.5', '109', 'Sri Sairam Engineering College', 'Computer Science', '8', '10', '0'), (4788, '6', 'Admit', 'MS', 'Manufacturing Systems Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'University of Calicut', 'MECHANICAL ENGINEEIRNG', '78.2', '100', '0'), (4789, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '149', '311', '3', '112', 'Anna University', 'CSE', '8', '10', '0'), (4790, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '520', '1260', '3', '95', 'R V College of Engineering', 'CSE', '76', '100', '0'), (4791, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (4792, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '114', 'NIT Tirchy', 'Electrical and Electronics', '9.1', '10', '19'), (4793, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3.5', '90', 'S.G.S.I.T.S. Indore RGPV Univ', 'Computer Engineering', '68', '100', '0'), (4794, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (4795, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '154', '317', '3', '103', 'SSN College of Engineering', 'EEE', '8.37', '10', '0'), (4796, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '101', 'IIIT Hyderabad', 'Computer Science', '8.01', '10', '0'), (4797, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '89', 'NIT Warangal', 'cse', '8.38', '10', '24'), (4798, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '96', 'R V College of Engineering', 'ISE', '8.45', '10', '43'), (4799, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (4800, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '143', '311', '3', '96', 'CEG', 'Computer Science', '7.25', '10', '48'), (4801, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '740', '550', '1290', '3.5', '111', 'VTU', 'ECE', '80', '100', '0'), (4802, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '103', 'BITS Goa', 'EEE', '7.81', '10', '0'), (4803, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '142', '304', '3', '88', 'JNTU', 'ECE', '72', '100', '0'), (4804, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3.5', '110', 'SRM', 'Electronics and Instrumentation', '8.71', '10', '0'), (4805, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (4806, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '102', 'IIITDM', 'electronics engg', '9.27', '10', '0'), (4807, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '167', '327', '4.5', '116', 'VTU', 'CS', '80', '100', '0'), (4808, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '2.5', '92', 'SGGSIE&T; Nanded', 'Information Technology', '7.8', '10', '0'), (4809, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '560', '1340', '3', '99', 'BMSCE', 'EC', '75', '100', '0'), (4810, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '141', '308', '3', '98', 'NIT Warangal', 'CSE', '8.5', '10', '48'), (4811, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '780', '540', '1320', '3.5', '105', 'NIT Surathkal', 'Civil Engineering', '8.8', '10', '0'), (4812, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '162', '324', '4.5', '114', 'Amity University', 'Electrical & Electronics (EEE)', '8.69', '10', '0'), (4813, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '160', '150', '310', '3', '102', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.71', '10', '0'), (4815, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '2.5', '90', 'COEP', 'Electronics and Telecommunications', '7.3', '10', '0'), (4816, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4817, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '99', 'NIT Rourkela', 'Biomedical Engineering', '7.03', '10', '0'), (4818, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '430', '1230', '3', '92', 'BITS Pilani', 'Marine Engineering', '9.27', '10', '0'), (4819, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '151', '316', '3.5', '104', 'NIT Warangal', 'ECE', '7.78', '10', '0'), (4820, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4821, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', 'None', '800', '620', '1420', '3.5', '108', 'VIT University', 'ECE', '8.8', '10', '0'), (4822, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '162', '148', '310', '3.5', '95', 'NIT Warangal', 'Mechanical Engineering', '8.77', '10', '24'), (4823, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', '3', '93', 'GITAM', 'Information Technology', '8.4', '10', '0'), (4824, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4825, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '159', '146', '305', '3.5', 'None', 'JNTU', 'Electronics and Communication Engineering', '82.6', '100', '0'), (4826, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (4827, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (4828, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', '98', 'PSG College of Technology', 'Information Technology', '8.85', '10', '0'), (4829, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (4830, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '590', '1300', '3', '107', 'VTU', 'Computer science', '80', '100', '0'), (4831, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (4832, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (4833, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3.5', '94', 'VIT University', 'ECE', '8.9', '100', '0'), (4834, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '109', 'VTU', 'electrical', '76', '100', '0'), (4835, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '101', 'IPS Academy Indore [RGPV University Bhopal]', 'CSE', '75', '100', '0'), (4836, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (4837, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '170', '154', '324', '3.5', '107', 'NIT Calicut', 'EEE', '7.4', '10', '0'), (4839, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '158', '321', '4.5', '105', 'Pune University', 'Computer Engineering', '67', '100', '0'), (4840, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '770', '380', '1150', '3.5', '100', 'Osmania University', 'CSE', '79', '100', '0'), (4841, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '410', '1210', '2', '108', 'JNTU', 'ECE', '70', '100', '0'), (4842, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '164', '159', '323', '3.5', '103', 'PESIT', 'Computer Science', '77', '100', '54'), (4843, '6', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3', '102', 'SASTRA', 'ECE', '8', '10', '0'), (4844, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '4', '99', 'WCE Sangli', 'IT', '79', '100', '0'), (4845, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '3', '96', 'Thapar University', 'Electrical Engineering', '9.14', '10', '0'), (4846, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4847, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '157', '317', '4', '109', 'NIT Silchar', 'Computer Science and Engineering', '8.23', '10', '0'), (4848, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (4849, '6', 'Admit', 'MS', 'CS', 'Fall ', '2015', '164', '153', '317', '3', '103', 'NIT Rourkela', 'Computer Science & Engineering', '8.44', '10', '34'), (4850, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4851, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '151', '308', '3.5', '102', 'RGPV', 'MECHANICAL ENGINEERING', '3.45', '4', '0'), (4852, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (4853, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (4854, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2007', '800', '430', '1230', '4', '237', 'CEG', 'Electronics and Communication', '9.03', '10', '0'), (4855, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '94', 'Sree Vidyanikethan Engineering College', 'INFORMATION TECHNOLOGY', '74.34', '100', '0'), (4856, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '153', '315', '3', '104', 'RGUKT', 'Electronics and Communication', '9.11', '10', '0'), (4857, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3', '92', 'NMREC', 'ECE', '71', '100', '0'), (4858, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '159', '145', '304', '3', '99', 'NIT Warangal', 'civil engineering', '8.19', '10', '0'), (4859, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (4860, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '95', 'COEP', 'Computer Science', '7.99', '10', '36'), (4861, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '800', '620', '1420', '4', '104', 'VIT Pune', 'Instrumentation and Control', '8.5', '10', '0'), (4862, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '4.5', '113', 'Bangalore Institute of Technology', 'Computer Science', '83.6', '100', '0'), (4863, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '155', '316', '4', '108', 'Rajiv Gandhi Technical University', 'Information Technology', '72.06', '100', '50'), (4864, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (4865, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '149', '306', '3.5', '94', 'BVBCET', 'Computer Science', '7.26', '10', '0'), (4866, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '101', 'IIT Kanpur', 'Electrical Engineering', '8.8', '10', '0'), (4867, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '96', 'IPU/MAIT', 'ECE', '76', '100', '0'), (4868, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '660', '1410', '3.5', '112', 'SSN College of Engineering', 'EEE', '8.787', '10', '0'), (4869, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (4870, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (4871, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (4872, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '3.5', '112', 'Nagarjuna University', 'IT', '89.3', '100', '0'), (4873, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '157', '326', '4', '108', 'None', 'Mechanical', '8.46', '10', '0'), (4874, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '800', '1590', '4.5', '290', 'Dharamsinh Desai University', 'Computer Engineering', '76.2', '100', '0'), (4875, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '600', '1400', '4.5', '111', 'VTU', 'Electronics and Communications', '75', '100', '0'), (4876, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '480', '1280', '4', '283', 'Model Engineering College', 'Electronics and Comunication', '79.4', '100', '0'), (4877, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '149', '316', 'None', 'None', 'Manipal Institue of Technology', 'CSE', '8.53', '10', '0'), (4878, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '700', '540', '1240', '3', '109', 'CoE Trivandrum', 'Applied Electronics and Instrumentation', '7.97', '10', '0'), (4879, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (4880, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '360', '1150', '3', '89', 'YCCE', 'electronics engineering', '64', '100', '0'), (4881, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (4882, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '157', '327', '3', '101', 'NIT Jamshedpur', 'Electronics and Comm. Engg.', '8.55', '10', '0'), (4883, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (4884, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '109', 'Jalpaiguri Government Engineering College', 'Electronics & Communication Engg', '8.14', '10', '0'), (4885, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '570', '1370', '4', '283', 'VTU', 'Electronics and Communication Engineering', '83', '100', '0'), (4886, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '169', '151', '320', '3.5', '105', 'IIT', 'Mechanical', '8', '10', '0'), (4887, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '167', '147', '314', '4', '101', 'Shiv Nadar University', 'Mathematics', '8.5', '10', '0'), (4888, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '96', 'Anna University', 'E&I;', '7.82', '10', '0'), (4889, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '96', 'Nirma Institute of Technology', 'Computer Science and Engineering', '7.88', '10', '0'), (4890, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '450', '1220', 'None', 'None', 'COEP', 'production', '7', '10', '0'), (4891, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '770', '600', '1370', '4', '111', 'COEP', 'Information Techology', '7.74', '10', '0'), (4892, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '149', '313', 'None', '109', 'GNITS', 'ETM', '89.37', '100', '0'), (4893, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (4894, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '540', '1310', '3.5', '111', 'None', 'Electronics and comm. engg', '76.92', '100', '0'), (4895, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '800', '450', '1250', '2.5', '106', 'JNTU', 'ECE', '76.1', '100', '0'), (4896, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3', '100', 'None', '0', '0', '0', '0'), (4897, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '161', '143', '304', '3', 'None', 'NIT Surat', 'Electronics', '8.64', '10', '0'), (4898, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '630', '1410', '3', '102', 'Acharya Nagarjuna University', 'EEE', '80', '100', '0'), (4899, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2014', '760', '650', '1410', '3', '105', 'VITU Vellore', 'Biotechnology', '8.25', '10', '0'), (4900, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4.5', '115', 'VTU', 'Computer Science', '71', '100', '0'), (4901, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '3', '105', 'VIT University', 'SELECT', '8.34', '100', '0'), (4902, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '420', '1180', '3.5', '96', 'Ramrao Adik Institute of Technology', 'Electronics', '67', '100', '0'), (4904, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '157', '143', '300', '3', '91', 'Nitte Meenakshi Institute of Technology (Autonomous) / VTU', 'Mechanical Engineering', '8.71', '10', '0'), (4905, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '5', '114', 'NIT Karnataka', 'Mechanical Engineering', '8.66', '10', '0'), (4906, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '510', '1210', '3.5', '98', 'SRM', 'EIE', '77', '100', '0'), (4907, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '151', '311', '4', 'None', 'Anna University', 'Information Technology', '82', '100', '0'), (4909, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '650', '1380', '4', '103', 'Sardar Patel College of Engineering', 'electronics and telecommunication', '79.04', '100', '0'), (4910, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (4911, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (4912, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '520', '1320', '3', '105', 'SVIT', 'computers', '68', '100', '0'), (4913, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (4914, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (4915, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (4916, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (4917, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '158', '151', '309', 'None', '105', 'GITAM', 'ECE', '8.84', '10', '0'), (4918, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2013', '790', '630', '1420', '3', '101', 'nitw', 'elcetronics', '8.6', '10', '0'), (4919, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4920, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '164', '330', '4', '119', 'MNM Jain Engineering College', 'CSE', '8.6', '10', '0'), (4922, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (4923, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (4924, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3', '106', 'JNTU', 'ECE', '78', '100', '0'), (4925, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '650', '1420', '2.5', 'None', 'NIT Durgapur', 'Mechanical engineering', '8.28', '10', '0'), (4926, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '159', '322', '4.5', '110', 'Vasavi College of Engineering', 'Information Technology', '89', '100', '16'), (4927, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '156', '318', '3.5', '112', 'CEG', 'computer science', '7.3', '10', '0'), (4928, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '159', '327', '3', '105', 'NIT Jamshedpur', 'Electronics & Communication Engineering', '8.68', '10', '48'), (4929, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '167', '152', '319', '4', '113', 'Manipal Institue of Technology', 'ECE', '8.87', '10', '0'), (4930, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (4931, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '720', '520', '1240', '4', '106', "St Joseph's College of Engineering", 'EEE', '75.31', '100', '0'), (4932, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (4933, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (4934, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (4935, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4936, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3.5', '103', 'CBIT', 'EEE', '80', '100', '0'), (4937, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3.5', '101', 'University of Mumbai', 'Mechanical Engineering', '65.5', '100', '0'), (4938, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '730', '530', '1260', '4', '112', 'None', 'Mechanical Engineering', '3.75', '4', '0'), (4939, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (4940, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '740', '520', '1260', '4', '263', 'MDU', 'MEchanical', '74', '100', '0'), (4941, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (4942, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (4943, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '510', '1270', '3', '104', 'VIT University', 'EIE', '8.57', '10', '0'), (4945, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (4946, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '450', '1210', '3', '106', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '9.06', '10', '0'), (4947, '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '166', '150', '316', '3.5', '94', 'VIT', 'Computer Science', '7.88', '10', '0'), (4948, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '650', '1350', '4.5', '105', 'VTU', 'CS', '78', '100', '0'), (4949, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', 'None', 'None', 'CSE', '81.4', '100', '0'), (4950, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '143', '306', '3.5', '95', 'University of Mumbai', 'Information Technology', '66', '100', '0'), (4951, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (4952, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '114', 'Manipal Institue of Technology', 'Computer Science', '8.09', '10', '0'), (4953, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '480', '1280', '3', 'None', 'PESIT', 'E & C', '78.4', '100', '0'), (4954, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'VTU', 'Computer Science', '74', '100', '0'), (4955, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '780', '550', '1330', '3', '90', 'JNTU', 'eee', '0', '0', '0'), (4956, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '46', '25', '71', '5', '102', 'IIITM', 'IT', '8.17', '10', '120'), (4957, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '144', '310', '2.5', '102', 'VTU', 'EnC', '74.5', '100', '0'), (4958, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '94', 'Thiagarajar College of engineering', 'Computer science', '7.86', '10', '0'), (4959, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '550', '1320', '3.5', '94', 'Madhav Institute of Technology & Science Gwalior', 'Electrical Engineering', '73.43', '100', '0'), (4960, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '97', 'Sharif university of Technology', 'Industrial engineering', '3.92', '4', '0'), (4961, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '163', '153', '316', '4', '111', 'SRM', 'Mechanical', '8', '10', '0'), (4962, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '162', '150', '312', '4', '107', 'SSN College of Engineering', 'Information Technology', '7.8', '10', '0'), (4963, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '480', '1260', '3', '97', 'SRM', 'Electrical & Electronics Engineering', '8.35', '10', '0'), (4964, '6', 'Admit', 'MS', 'CS', 'Fall ', '2013', '164', '153', '317', '4.5', '109', 'VTU', 'CS', '82.6', '100', '0'), (4965, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (4966, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (4967, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '150', '311', '4.5', '98', 'NIT Durgapur', 'Computer Science and Engineering', '7.52', '10', '0'), (4968, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '440', '1210', '4', '104', 'New Horizon College of Engineering', 'Computer Science and Engineering', '78.8', '100', '0'), (4969, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '4.5', '115', 'IIT Delhi', 'Electrical (Power)', '6.78', '10', '0'), (4970, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '3', '97', 'GITAM', 'cse', '8.22', '10', '0'), (4971, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '149', '310', '3.5', '109', 'VIT University', 'mechanical- energy', '8.3', '10', '0'), (4972, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (4973, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '149', '316', '3.5', '97', 'BIT Mesra', 'cse', '7.51', '10', '36'), (4974, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '640', '1420', '4', '116', 'NIT Tirchy', 'Instrumentation and control', '8.78', '10', '0'), (4975, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '4.5', '117', 'Pondicherry Engineering College', 'CS', '77', '100', '0'), (4976, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '157', '327', '4', '110', 'BITS Hyderabad', 'Mechanical Engineering', '8.31', '10', '12'), (4977, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '146', '309', '3', '104', 'JNTU', 'CSE', '79.18', '100', '0'), (4978, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '390', '1180', '3', '88', 'SSN College of Engineering', 'EEE', '84', '100', '0'), (4979, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (4980, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '147', '310', '3', '94', 'West Bengal University Of Technology', 'ECE', '9.18', '10', '0'), (4981, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '161', '146', '307', '3', '99', 'K J Somaiya College of Engiineering', 'mechanical', '9.12', '10', '0'), (4982, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (4983, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '166', '148', '314', '2', '101', 'Maharaja Sayajirao University Of Baroda', 'Mech eng', '3.94', '4', '0'), (4985, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (4986, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'Anna University', 'mechanical', '75', '100', '0'), (4987, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '164', '148', '312', '3', '94', 'BITS Goa', 'Mechanical', '6.5', '10', '0'), (4989, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '3', '98', 'MU', 'IT', '63', '100', '17'), (4990, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '154', '321', '4.5', '114', 'KIIT', 'Electronics and Electrical', '9.08', '10', '0'), (4991, '6', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '162', '154', '316', '3.5', '111', 'Kathmandu University', 'Civil', '3.42', '4', '7'), (4992, '6', 'Admit', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (4993, '6', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (4994, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '146', '307', '4', '100', 'University of Pune', 'IT', '75.56', '100', '0'), (4995, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '104', 'Jadavpur University', 'Electrical Engineering', '8.17', '10', '0'), (4996, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '102', 'Netaji Subhas Institute of Technology', 'Electrical Engineering', '8.02', '10', '0'), (4997, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (4998, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '151', '321', '4', '102', 'IIT Kharagpur', 'ECE', '8.64', '10', '0'), (4999, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3.5', '100', 'Model Engineering College', 'Computer science', '80', '100', '0'), (5000, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3.5', '103', 'SGSITS', 'Electronics & Instrumentation', '8', '10', '0'), (5002, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '104', 'BVBCET', 'Information Science', '8.7', '10', '0'), (5003, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '2.5', '90', 'BITS Pilani', 'Electronics and Instrumentation', '7.44', '10', '0'), (5004, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '152', '318', '3.5', '100', 'M.V.S.R Engineering College', 'Electronics & Communication', '76.23', '100', '0'), (5005, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', 'None', "St Joseph's College of Engineering", 'Information Technology', '7.52', '10', '0'), (5006, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '167', '148', '315', '3', '101', 'ISM Dhanbad', 'electronics and communication engineering', '8.2', '10', '0'), (5007, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (5008, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '790', '540', '1330', '5.5', '277', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '73.14', '100', '0'), (5009, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3.5', '96', 'Heritage Institute of Technology', 'Computer Science and Engineering', '88', '100', '54'), (5010, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (5011, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '590', '1320', '3', '107', 'Manipal Institue of Technology', 'ECE', '7.47', '10', '0'), (5012, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2013', '159', '150', '309', '3', '102', 'JNTU', 'Computer Science and Engineering', '67.48', '100', '0'), (5013, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '620', '1410', 'None', '100', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65', '100', '0'), (5014, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (5015, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (5016, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '161', '326', '3', '110', 'Jaypee Institute of Information Technology', 'IT', '6.2', '10', '0'), (5017, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '360', '1100', '3.5', 'None', 'Madras Institute of Technology', 'production engineering', '8.6', '10', '0'), (5018, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '620', '1360', '3', '99', 'Zakir husain college AMU', 'Electronics engg', '8.65', '10', '0'), (5019, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (5020, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '3.5', '108', 'CEG', 'computer science', '8.82', '10', '36'), (5021, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (5022, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '650', '1390', '3', '93', 'Sreenidhi Institute of Science & Technology', 'electronics and computers', '72', '100', '0'), (5023, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '470', '1260', '3', '96', 'MVSR', 'Information Technology', '78', '100', '0'), (5024, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '152', '322', '3', 'None', 'BITS Pilani', 'E&I;', '7.58', '10', '24'), (5025, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (5026, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (5027, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '3.5', '98', 'Thapar University', 'Computer Science', '7.96', '10', '0'), (5028, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '149', '304', '3.5', '106', 'JNTU', 'CS', '66', '100', '0'), (5029, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '3.5', '110', 'SASTRA', 'Electrical & Electronics Engineering', '9.00427', '10', '0'), (5030, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '110', 'The LNM Institute of Information Technology', 'Computer Science', '7.6', '10', '0'), (5031, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (5032, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', 'None', '108', 'Amrita School of Engineering', 'cse', '9.59', '100', '0'), (5033, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '155', '148', '303', '3', '98', 'GITAM', 'Electrical and Electronics Engineering', '8.32', '10', '0'), (5034, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '590', '1380', '4', '273', 'None', '0', '0', '0', '0'), (5035, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '107', 'Inderprastha engineering college(Affiliated to Uttar Pradesh Technical university)', 'Computer Science and Engineering', '82.74', '100', '0'), (5036, '6', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '670', '1460', '4.5', '111', 'Manipal Institue of Technology', 'Electronics and Comm.', '8.48', '10', '0'), (5037, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '720', '760', '1480', '4.5', '293', 'VTU', 'Info Sc and Engg', '76', '100', '0'), (5038, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', 'None', '110', 'NIT Hamirpur', 'Electronics & Communication Engg.', '9', '10', '0'), (5039, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '730', '580', '1310', '3', 'None', 'NIT Warangal', 'ECE', '7.84', '10', '0'), (5040, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '148', '309', '3.5', '107', 'Banasthali University', 'Information Technology', '79.2', '100', '0'), (5041, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (5042, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '147', '314', '3', '94', 'NIT Rourkela', 'Computer Science', '9.6', '10', '26'), (5043, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '152', '320', '4', '104', 'NIT Kurukshetra', 'Mechanical Engineering', '8.53', '10', '0'), (5044, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3', '111', 'NIT Surat', 'Electronics Engg.', '8.57', '10', '0'), (5045, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (5046, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '154', '316', '4', '109', 'VTU', 'CS', '81', '100', '53'), (5047, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (5048, '6', 'Admit', 'MS', 'environmental engineering', '81', 'None', '159', '0', '159', '0', '107', 'Nagpur University', 'Civil Engg', '58', '100', '0'), (5049, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5050, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (5051, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (5052, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (5053, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Spring ', '2012', '760', '330', '1090', '3', '90', 'MSRIT', 'MECHANICAL', '9.42', '100', '0'), (5054, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '146', '306', '3', '97', 'BMSCE', 'IEM', '8.77', '10', '0'), (5055, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '3.5', '115', 'Anna University', 'biomedical engineering', '8.68', '10', '0'), (5056, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2014', '161', '153', '314', '3.5', '107', 'SRM', 'Biotechnology', '8.58', '10', '0'), (5057, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '151', '314', '4', '107', 'PESIT', 'CS', '7.69', '10', '0'), (5058, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '4', '112', 'Vishwakarma Institute of Technology', 'Electronics', '8.72', '10', '0'), (5059, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '159', '327', 'None', '109', 'Delhi College Of Engineeing', 'Mechanical Department', '68.7', '100', '10'), (5060, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '166', '330', '4.5', 'None', 'VIT', 'ECE', '8.65', '10', '0'), (5061, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (5062, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '450', '1250', '4', '99', 'IIIT Hyderabad', 'ECE', '7.56', '10', '0'), (5063, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (5064, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '145', '306', '3.5', '105', 'Anna University', 'Mechanical Engineering', '8.33', '10', '0'), (5065, '6', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '158', '159', '317', '3', '111', 'VTU', 'Electronics and Communication', '80.17', '100', '0'), (5066, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '101', 'G.H Patel colg of Engg. Sardar Patel University', 'Information Technology', '8.88', '10', '0'), (5067, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '141', '301', '4', '98', 'Jaya Engineering College', 'Computer Science and Engineering', '80', '100', '29'), (5068, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '3', '102', 'KIIT', 'Electrical', '8.2', '10', '0'), (5069, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (5070, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '570', '1340', '3', 'None', 'WBUT', 'applied electronics and instrumentation', '8', '10', '0'), (5071, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (5072, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (5073, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '650', '1430', '3.5', '106', 'SSN College of Engineering', 'BIomedical Engineering', '7.98', '10', '0'), (5074, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '4', '110', 'Punjabi University', 'Computer Engineering', '78.37', '100', '0'), (5075, '6', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (5076, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '147', '311', '3', '100', 'NIT Surathkal', 'Computer Science', '8.11', '10', '24'), (5077, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '610', '1400', '5', '263', 'Anna University', 'ECE', '74', '10', '0'), (5078, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '157', '322', '4', '112', 'BVBCET', 'ECE', '81', '100', '0'), (5080, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (5081, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.1', '10', '0'), (5082, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '500', '1280', '3', '106', 'SASTRA', 'Electronics and Communication Engineering', '9.135', '10', '0'), (5083, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '153', '311', '3.5', '106', 'BIT Mesra', 'Computer Science', '7.39', '10', '0'), (5084, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '790', '580', '1370', '4', '111', 'Pondicherry Engineering College', 'Mechanical Engg', '8.1', '10', '0'), (5085, '6', 'Admit', 'MS', 'Management Information System', 'Spring', 'None', '160', '139', '299', '3', 'None', 'Princeton College of Engg & Tech', 'Electronics and communications', '77.17', '100', '0'), (5086, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (5087, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '530', '1300', '3.5', 'None', 'Madras Institute of Technology', 'ECE', '8.72', '10', '0'), (5088, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '480', '1280', '3.5', '98', 'MVSR', 'I.T', '75', '100', '0'), (5089, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '4', '107', 'VTU', 'Computer Science', '72.5', '100', '46'), (5090, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '160', '152', '312', '3.5', '93', 'Shri Govindram Seksaria institute of technolgy and sciences', 'Electricals', '80.38', '100', '0'), (5091, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3.5', '97', 'NIT Calicut', 'Computer Science and Engineering', '8.25', '10', '36'), (5092, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '162', '149', '311', '4', '108', 'Velammal Engineering College', 'Mechanical', '8.5', '10', '0'), (5093, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'NIT Calicut', 'Mechanical Eng', '8.18', '10', '29'), (5094, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (5095, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '107', 'JNTU', 'CSE', '70.34', '100', '0'), (5096, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (5097, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '160', '151', '311', '3.5', '104', 'CEG', 'Materials Science & Engineering', '8.03', '10', '0'), (5098, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '151', '314', '3', '100', 'MITCOE', 'Mechanical', '0', '0', '0'), (5099, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'CEG', 'Electrical and Electronics Engineering', '8.71', '10', '0'), (5100, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '4', '105', 'Amrita School of Engineering', 'Infomation Technology', '7.75', '10', '24'), (5101, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (5102, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (5103, '6', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '163', '151', '314', '3', '100', 'JNTU', 'ece', '8', '10', '0'), (5104, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '610', '1370', '3', '102', 'NIT Calicut', 'Mechanical Engineering', '7.1', '10', '0'), (5105, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (5106, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '156', '326', '4', 'None', 'BITS Pilani', 'Mechanical Engineering', '6.8', '10', '0'), (5107, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '157', '322', '3', '108', 'Jadavpur University', 'Electrical Engineering', '7.45', '10', '12'), (5108, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '158', '324', '4', '111', 'Manipal Institue of Technology', 'CSE', '9.56', '10', '0'), (5109, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '111', 'GGSIPU', 'Computer Science and Engineering', '76.52', '100', '0'), (5110, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '154', '160', '314', '3.5', '108', 'University of Pune', 'Computer Science', '70.26', '100', '25'), (5111, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '157', '322', '4', '111', 'Cochin University of Science and Technology', 'Computer Science', '67', '100', '76'), (5112, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (5113, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'BESU Shibpur', 'Computer Science and Technology', '87', '100', '0'), (5114, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '146', '311', '3.5', '99', 'SRM', 'Mechatronics', '9.2', '10', '0'), (5115, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '510', '1290', '3.5', '105', 'West Bengal University Of Technology', 'Electronics and communication', '8.55', '10', '0'), (5116, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '108', 'NIT Kurukshetra', 'computer engineering', '8.8', '10', '18'), (5117, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '490', '1270', '4', '100', 'SSN College of Engineering', 'Computer Science', '87', '100', '0'), (5118, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'GGSIPU', 'Information Technology', '76.34', '100', '0'), (5119, '6', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2014', '165', '152', '317', '3.5', '104', 'MSRIT', 'Electronics and Communication', '8.45', '10', '0'), (5120, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '158', '147', '305', '3', '85', 'None', 'Biotechnology', '75', '100', '26'), (5121, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '500', '1200', '3.5', '110', 'Dr D Y Patil University', '0', '0', '0', '0'), (5122, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'MU', 'ECE', '73', '100', '0'), (5123, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '158', '152', '310', '3', '102', 'Galgotia College of Engg & Technology (UPTU)', 'Electronics & Instrumentation', '70.9', '100', '0'), (5124, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (5126, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (5128, '6', 'Admit', 'MS', 'Energy Technologies', 'Fall ', '2014', '164', '162', '326', '4.5', 'None', 'R V College of Engineering', 'Mechanical Engineering', '8.83', '10', '0'), (5129, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (5130, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3.5', '100', 'CEG', 'Computer Science', '8.3', '10', '0'), (5131, '6', 'Admit', 'MS', 'Integrated Manufacturing Systems Engineering', 'Fall ', '2013', '166', '152', '318', '3', '104', 'BITS Pilani', 'Mechanical Engineering', '6.87', '10', '0'), (5132, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '3.5', '97', 'Pune University', 'electronics and telecommunication', '3.3', '4', '0'), (5133, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '160', '146', '306', '3', 'None', 'Anna University', 'Computer Science', '0', '0', '0'), (5134, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '144', '309', '3', '104', 'JNTU', 'ECE', '79.7', '100', '0'), (5135, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '162', '147', '309', '3.5', '97', 'Vasavi College of Engineering', 'Computer Science', '91', '100', '0'), (5136, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '151', '319', '3', '108', 'Sri Jayachamarajendra College of Engineering', 'Information Science', '78.4', '100', '0'), (5137, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (5138, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '148', '306', '3.5', '102', 'Thakur College of Engineering and Technology', 'Computer Science', '65.3', '100', '0'), (5139, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '149', '315', '3', 'None', 'CEG', 'Computer Science', '7.88', '10', '0'), (5140, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '152', '313', '3.5', '113', 'KL University', 'ECE', '8.32', '10', '0'), (5141, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '104', 'BITS Pilani', 'Electronics and Communication', '8.4', '10', '0'), (5142, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (5143, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '112', 'Anil Neerukonda Institue of Technology and Sciences', 'EEE', '8.55', '10', '0'), (5144, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3', '94', 'ANITS', 'Computer Science', '78', '100', '0'), (5145, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '158', '151', '309', '3', '7', 'CVRCE', 'ECE', '73.1', '100', '0'), (5146, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (5147, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '152', '315', '3.5', '110', 'Amrita School of Engineering', 'Electronics and Communication', '7.9', '10', '0'), (5148, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '410', '1160', '3.5', '92', 'Madras Institute of Technology', 'IT', '7.8', '10', '0'), (5149, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '560', '1350', '3', '110', 'RNSIT', 'Information Science', '80.1', '100', '0'), (5150, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '520', '1300', '3.5', '103', 'Anna University', 'Electrical Engineering', '77.7', '100', '0'), (5151, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Communication', '81', '100', '0'), (5152, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '102', 'Anna University', 'Electronics and Commuinication', '81', '100', '0'), (5153, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '155', '144', '299', '22', 'None', 'JNTU', 'electrical and electronics engineering', '3.6', '4', '0'), (5154, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (5155, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '144', '307', '2.5', '102', 'GITAM', 'Mechanical Engineering', '8.4', '10', '0'), (5156, '6', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2011', '780', '530', '1310', '3', '98', 'SJCE', 'Electronics and Communication', '80', '100', '0'), (5157, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '13', '168', '156', '324', 'None', '113', 'University of Pune', 'Electronics', '63.8', '100', '0'), (5158, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (5159, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '103', 'Anna University', 'Computer Science', '76', '100', '0'), (5160, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '640', '1340', '3.5', '105', 'VTU', 'Information Science', '75', '100', '0'), (5161, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (5162, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (5163, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (5164, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4', '105', 'VSS Univ of Technology', 'Computer Science', '8.05', '10', '0'), (5165, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '650', '1450', '3.5', '102', 'Amrita School of Engineering', 'ECE', '8.86', '10', '0'), (5166, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '154', '319', '3.5', '96', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5168, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (5169, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '3.5', '93', 'Pune University', 'Computer', '66.5', '100', '0'), (5170, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '145', '302', 'None', '100', 'R V College of Engineering', 'cs', '7.09', '10', '0'), (5172, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '590', '1390', '3', '112', 'None', 'EE', '9.1', '10', '0'), (5173, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (5174, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (5175, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '350', '1110', '4', '95', 'Bangalore Institute of Technology', 'Telecommunication', '80', '100', '0'), (5176, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (5177, '6', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (5178, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '147', '312', '3', 'None', 'CBIT', 'CSE', '84', '100', '0'), (5179, '6', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '163', '161', '324', '4.5', '112', "St Joseph's College of Engineering", 'Information Technology', '8.2', '10', '23'), (5180, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'National Institute of Science and Technology Orissa', 'CSE', '8.25', '10', '0'), (5181, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '157', '320', '4.5', '115', 'NIT-Durgapur', 'Mechanical Engg.', '8.32', '10', '0'), (5182, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '164', '152', '316', '3.5', 'None', 'VSS Univ of Technology', 'Electronics and Telecomm.', '9.26', '10', '0'), (5183, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2016', '155', '148', '303', '3', '95', 'Anna University', 'ECE', '8.71', '10', '31'), (5184, '6', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '161', '155', '316', '3.5', 'None', 'Vidyalankar Institute of Technology', 'Electronics', '62.21', '100', '0'), (5185, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (5186, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (5187, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '155', '322', '3', '102', 'NIT Calicut', 'Computer Science and Engineering', '7.46', '10', '26'), (5188, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (5189, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '4', '105', 'Lakshmi Narain College of Technology', 'Information Technology', '77.8', '100', '0'), (5190, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '480', '1280', '3', '107', 'WBUT', 'IT', '7.85', '10', '0'), (5191, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (5192, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '164', '332', '4', 'None', 'NIE', 'Mechanical Engineering', '8.99', '10', '0'), (5193, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (5194, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '115', 'M.V.S.R Engineering College', 'ECE', '82', '100', '0'), (5195, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '157', '319', '4', 'None', 'Delhi University', 'ECE', '66', '100', '0'), (5196, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '590', '1390', '3.5', '106', 'W.B.U.T.', 'I.T.', '7.85', '10', '0'), (5197, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '510', '1300', '3', '107', 'Sri Jayachamarajendra College of Engineering', 'ec&e;', '9.32', '10', '0'), (5198, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '145', '310', '3.5', '96', 'BITS Hyderabad', 'Electrical Engineering', '9.12', '10', '0'), (5199, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '149', '308', '4.5', '111', 'VTU', 'Mechanical', '72', '100', '0'), (5200, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'DA-IICT', 'ICT (Information and Communication Technology)', '7.09', '10', '0'), (5201, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '3.5', '111', 'VTU', 'E&C;', '7.7', '10', '0'), (5202, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (5203, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '630', '1430', '4.5', '297', 'GITAM', 'Electronics & Communication', '90.23', '100', '0'), (5204, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '157', '151', '308', '3.5', '108', 'VTU', 'Mechanical', '70', '100', '18'), (5205, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (5206, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'None', 'Electronics and Telecommunication', '8.04', '100', '0'), (5207, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3', '100', 'CUSAT', 'Computer Science And Engineering', '74.2', '100', '0'), (5208, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5209, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '640', '1410', '3', '106', 'SJCE', 'EEE', '9.03', '10', '0'), (5210, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (5211, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '102', 'Maamallan', 'ece', '8.66', '10', '0'), (5212, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '108', 'University of Pune', 'Computer', '69', '100', '0'), (5213, '6', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '790', '390', '1180', '3', '102', 'Anna University', 'Instrumentation and Control', '77', '100', '0'), (5214, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '760', '450', '1210', '3', '92', 'BITS Dubai', 'Electronics and Communication Engg', '6.91', '10', '0'), (5215, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '147', '168', '315', '3.5', '103', 'GNDU', 'CSE', '74', '100', '7'), (5216, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (5217, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (5219, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '111', 'Manipal Institue of Technology', 'Mechanical and Manufacturing Engineering', '7.7', '10', '0'), (5220, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '158', '317', '4.5', '109', 'MVSR', 'Electronics and Communication', '75', '100', '0'), (5221, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '600', '1400', '4.5', '280', 'IIIT Hyderabad', 'CSE', '7.2', '10', '0'), (5222, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '630', '1430', '3.5', '94', 'BITS Goa', 'Electronics and Instrumentation', '6.12', '10', '0'), (5223, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '142', '303', '3', '102', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.6', '10', '0'), (5224, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (5225, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2016', '154', '141', '295', '3', '81', 'SASTRA', 'Information Technology', '8', '10', '65'), (5226, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (5227, '6', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '151', '138', '289', '4', '100', 'Pune University', 'Electronics', '6', '100', '0'), (5228, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '112', 'NIT Durgapur', 'CSE', '85', '100', '0'), (5229, '6', 'Admit', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (5230, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '99', 'GITAM', 'Computer Science and Engineering', '8.85', '10', '0'), (5231, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '680', '1460', '4', '112', 'Uttarakhand Technical University', 'Information Technology', '81.1', '100', '0'), (5232, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '470', '1220', '3.5', 'None', 'MU', 'Chemical', '74', '100', '0'), (5233, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '152', '317', '3', '110', 'JNTU', 'ECE', '81.5', '100', '0'), (5234, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (5235, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (5236, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (5237, '6', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '165', '152', '317', '3.5', '108', 'PESIT', 'Computer Science', '8.8', '10', '36'), (5238, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '162', '328', '4', '111', 'Osmania University', 'ECE', '80', '100', '0'), (5239, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '157', '325', '4', '112', 'NIT Tirchy', 'Instrumentation and Control Engineering', '9.1', '10', '0'), (5240, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '380', '1180', '3', '101', 'NIT Durgapur', 'ECE', '8.84', '10', '0'), (5241, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '620', '570', '1190', '4', '57', 'SSN College of Engineering', 'CSE', '83', '100', '0'), (5242, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '760', '480', '1240', '3.5', '102', 'JNTU', 'Computer Science and Engineering', '73.95', '100', '0'), (5244, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (5245, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (5246, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '430', '1160', '3', '92', 'rmdec/anna univ', 'ece', '75', '100', '0'), (5247, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3', 'None', 'University of Delhi', 'Computer Sc', '67', '100', '28'), (5248, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '4', '109', 'None', '0', '0', '0', '0'), (5249, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3', '106', 'Miami University', 'Computer Science', '3.34', '4', '0'), (5250, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (5251, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5252, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (5253, '6', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (5255, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '146', '314', '3', '108', 'Delhi University', 'ICE', '70.83', '100', '54'), (5257, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (5258, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2016', '155', '150', '305', '3', '99', 'Anna University', 'EEE', '7.91', '10', '0'), (5259, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '139', '299', '3', '92', 'VIT University', 'Mechanical Engineering', '7.96', '10', '0'), (5260, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (5261, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (5262, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3', '90', 'Vasavi College of Engineering', 'CSE', '79', '100', '0'), (5263, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '141', '307', '3', '65', 'SNIST', 'Computer Science', '7.5', '10', '0'), (5264, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (5265, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '146', '313', '4', '98', 'MU', 'Mechanical', '65', '100', '0'), (5266, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '3.5', '108', 'Dayananda Sagar College of Engineering', 'Computer science', '74.4', '100', '0'), (5268, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (5269, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (5270, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4.5', '112', 'MU', 'Information Technology', '75', '100', '0'), (5271, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3', '96', 'Gujarat Technological University', 'Mechancial Engineering', '67', '100', '0'), (5272, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (5273, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '165', '155', '320', '4.5', '116', 'Jadavpur University', 'Metallurgical and Material Engineering', '8.85', '10', '0'), (5274, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '160', '324', '4', '108', 'NITK Surathkal', 'civil', '7.1', '10', '0'), (5275, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3.5', '104', 'College Of Engineering Roorkee', 'Computer Science', '73.5', '100', '0'), (5276, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '96', 'CEG', '0', '9.07', '100', '0'), (5277, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (5278, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '4', '108', 'Gujarat Technological University', 'Computer', '8.78', '10', '0'), (5279, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '650', '1420', '4.5', '117', 'NIT Durgapur', 'Electrical Engineering', '8.74', '10', '0'), (5280, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (5281, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', '4', '105', 'WBUT', 'CSE', '8.36', '10', '0'), (5282, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '4', '108', 'VTU', 'Telecommunication Engg', '70', '100', '0'), (5283, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '148', '308', '3', '110', 'SRM', 'CSE', '83', '100', '0'), (5284, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (5285, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '5', '118', 'NITK Surathkal', 'ECE', '8.1', '10', '0'), (5286, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '155', '321', '4', '108', 'CEG', 'Mechanical', '8.11', '10', '0'), (5287, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '164', '150', '314', '3', '98', 'Graphic Era University', 'Computer Science and Engineering', '75.31', '100', '24'), (5288, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (5289, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (5290, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (5292, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4.5', '111', 'Manipal Institue of Technology', 'Information Technology', '7.59', '10', '0'), (5293, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '13', '166', '154', '320', '2.5', '108', 'BITS Goa', 'EEE', '7.66', '10', '0'), (5294, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '460', '1220', 'None', '103', 'VTU', 'Electronics and Communication', '79', '100', '0'), (5295, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '157', '327', '4', 'None', 'NIT Rourkela', 'Electronics and Communication', '8.51', '10', '0'), (5296, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '110', 'Pune University', 'electronics enineering', '58', '100', '0'), (5297, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '650', '1440', '4', '114', 'Pune University', 'Computer Science', '73', '100', '0'), (5298, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '105', 'None', '0', '0', '0', '60'), (5299, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '590', '1320', '4', '273', 'K J Somaiya College of Engiineering', 'CE', '66', '100', '0'), (5300, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'Delhi College Of Engineeing', 'Electrical & Electronics', '81.25', '100', '12'), (5301, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '170', '160', '330', '4', '112', 'Dr MGR College', 'Computer Science', '8.4', '10', '0'), (5302, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (5304, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '8.31', '10', '11'), (5305, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (5306, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '104', 'Dr.BAMU Aurangabad/MIT Aurangabad', 'Computer Science and Engineering', '63.98', '100', '0'), (5307, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '148', '311', 'None', 'None', 'Manipal Institue of Technology', 'Computer Science and Engineering', '7.72', '10', '0'), (5308, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '147', '311', '3', '98', 'DSCE', 'CS', '71.94', '100', '0'), (5309, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (5310, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '360', '1140', '3.5', '102', 'Nagarjuna University', 'Information science and technology', '83', '100', '0'), (5311, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '570', '1350', '3.5', '111', 'VTU', 'Information Science', '73', '100', '0'), (5312, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (5313, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '118', 'VTU', 'CSE', '81', '100', '0'), (5314, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '113', 'PESIT', 'ECE', '80.15', '100', '0'), (5315, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (5316, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '148', '313', '3', '108', 'Amrita School of Engineering', 'Computer Science', '7.4', '10', '0'), (5317, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (5318, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '151', '315', '3.5', '108', 'Anna University', 'B.Tech I.T', '8', '10', '0'), (5319, '6', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2007', '760', '550', '1310', '4', '277', 'PTU', 'Electrical Engineering', '76.46', '100', '0'), (5320, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '107', 'SASTRA', 'Mechanical', '9.3', '10', '0'), (5321, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '148', '316', '4', '101', 'University College of Engineering Jawaharlal Nehru Technological University', 'Computer Science', '79.2', '100', '0'), (5322, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (5324, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (5325, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '95', 'VIIT', 'ENTC', '4', '100', '0'), (5326, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '380', '1130', '2.5', '85', 'SVCE', 'EEE', '76', '100', '0'), (5327, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (5328, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '104', 'JNTU', 'ECE', '84', '100', '0'), (5329, '6', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (5330, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (5331, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '480', '1260', '3', '100', 'BVBCET', 'Information Science', '8.29', '10', '0'), (5332, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (5333, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '164', '330', '4', '108', 'VJTI', 'Computer Engineering', '7.5', '10', '0'), (5334, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3.5', '99', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.4', '10', '0'), (5335, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '530', '1320', '3.5', '117', 'DR.AIT', 'ECE', '76', '100', '0'), (5336, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '770', '650', '1420', '5', '287', 'SASTRA', 'Information Technology', '9.2', '10', '0'), (5337, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '155', '320', '3', '88', 'PICT', 'Information Technology', '3.77', '4', '0'), (5338, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '3.5', '106', 'RGMCET', 'COMPUTER SCIENCE', '69', '100', '0'), (5339, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '151', '311', '3.5', '102', 'NIT Bhopal', 'Computer Science', '7.99', '10', '0'), (5340, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (5341, '6', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2015', '165', '150', '315', '3', '105', 'VIT University', 'ECE', '7.92', '10', '3'), (5342, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '450', '1250', '4', '92', 'Chaitanya Bharathi Institute of Technology', 'ECE', '74', '100', '0'), (5343, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (5344, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '390', '1130', '3.5', '98', "st.thomas' college of engg and technology", 'information technology', '8.52', '10', '0'), (5345, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3', '94', 'Anna University', 'cse', '7.5', '100', '0'), (5346, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '540', '1260', '4', '105', 'VTU', 'EE', '79', '100', '0'), (5347, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '94', 'College Of Engineering Roorkee', 'CS', '72', '100', '0'), (5348, '6', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (5349, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (5350, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', 'None', '750', '3', '100', 'VTU', 'EEE', '84.41', '100', '0'), (5351, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '145', '163', '308', '3', 'None', 'BITS Pilani', 'Mechanical Engieering', '7.39', '10', '0'), (5352, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '154', '324', '3', '103', 'NIT Kurukshetra', 'Civil Engineering', '7.8', '10', '0'), (5353, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '160', '157', '317', '3.5', '115', 'SRM', 'Mechanical Engineering', '8.744', '10', '0'), (5354, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3', '103', 'BITS Pilani', 'EEE', '9.24', '10', '0'), (5355, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (5356, '6', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (5357, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (5358, '6', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (5359, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (5361, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (5362, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '3.5', 'None', 'Velammal Engineering College', 'EEE', '8.62', '10', '0'), (5363, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '139', '305', '2.5', 'None', 'GITAM', 'ECE', '8.52', '10', '0'), (5364, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (5365, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '740', '650', '1390', '3', '106', 'VTU', 'Computer Science', '75.4', '100', '0'), (5366, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '3', '97', 'Sri Sairam Engineering College', 'EEE', '82', '100', '0'), (5367, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '4.5', '110', 'None', '0', '0', '0', '0'), (5368, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (5369, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '350', '1100', '3.5', 'None', 'Panjab University', 'UIET', '75', '100', '0'), (5370, '6', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5371, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (5372, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3', '114', 'SSN College of Engineering', 'Computer Science Engg', '73', '100', '0'), (5373, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '790', '510', '1300', '3.5', '101', 'SRM', 'Mechanical', '9.19', '10', '0'), (5374, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (5375, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '156', '315', '3', '100', 'CEG', 'Industrial Engineering', '7.97', '10', '0'), (5376, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (5377, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '4.5', '106', 'Amrita School of Engineering', 'ECE', '9.27', '10', '0'), (5378, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '159', '154', '313', '3', '109', 'CEG', 'Computer Science and Engineering', '9.18', '10', '0'), (5379, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (5380, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (5381, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (5382, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '530', '1240', '3', '104', 'VTU', 'Computer Science', '72', '100', '0'), (5383, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '144', '306', '4', '108', 'PSG College of Technology', 'EEE', '9.49', '10', '0'), (5384, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '149', '311', '3', '86', 'VIT University', 'Mechanical engg', '7.82', '10', '0'), (5385, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2014', '162', '151', '313', '3.5', '100', 'Anna University', 'Cse', '7.5', '10', '0'), (5387, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '590', '1350', '3', '117', 'RMD Engineering College', 'Electronics and Communication', '8.7', '10', '0'), (5388, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (5389, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '149', '318', '3', '104', 'GGSIPU', 'Computer Science', '73', '100', '57'), (5390, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Anna University', 'Mechanical', '7.5', '10', '0'), (5392, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3.5', '108', 'BMSCE', 'Computer Science', '9.26', '10', '0'), (5393, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5394, '6', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Spring ', '2014', '161', '144', '305', '3', '97', 'NIT RAIPUR', 'METALLURGY', '8.1', '10', '0'), (5395, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (5396, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (5397, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3.5', '100', 'VTU', 'Computer Science', '73.47', '100', '0'), (5398, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '430', '1210', '3', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'ELECTRONICS AND COMMUNICATION', '76', '100', '0'), (5399, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (5400, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '154', '310', '3.5', '92', 'MU', 'Production', '67', '100', '0'), (5401, '6', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (5402, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (5403, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (5404, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '148', '316', '3', '99', 'SASTRA', 'Mechanical', '8.3', '10', '0'), (5405, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'University Vishweriah College of Engineering', 'Computer Science', '80', '100', '0'), (5406, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '165', '149', '314', '3', '101', 'Dharamsinh Desai University', 'Instrumentation and Control', '8.9', '100', '0'), (5407, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', '109', 'Chhatrapati Shahuji Maharaj University Kanpur', 'BTech Computer Science', '10', '10', '44'), (5408, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '147', '316', '3', '97', 'MU', 'Electronics Engg', '61', '100', '0'), (5409, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '156', '320', '3', '103', 'SPCE', 'Electrical engineering', '78', '100', '0'), (5410, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3', '109', 'VNIT Nagpur', 'ece', '73', '100', '0'), (5411, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '143', '306', '3', '88', 'JNTU', 'Mechanical', '68', '100', '0'), (5412, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (5413, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '750', '530', '1280', '3', '95', 'NITK Surathkal', 'civil', '7.61', '10', '0'), (5414, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '113', 'DSI', 'Electrical and Electronics', '80', '100', '0'), (5415, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '156', '317', '4', '109', 'University of Mumbai', 'Mechanical Engineering', '69', '100', '0'), (5416, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '104', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (5417, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '450', '1150', '3', '82', 'CVRCE', 'ECE', '72', '100', '0'), (5418, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '107', 'MU', 'Computer Engg', '67.4', '100', '0'), (5419, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3.5', '108', 'SET JAIN UNIVERSITY', 'ECE', '74.7', '100', '0'), (5421, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '3.5', 'None', 'Nagarjuna University', 'CS', '8.3', '10', '0'), (5422, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '165', '149', '314', '3.5', '105', 'Pondicherry Engineering College', 'Information Technology', '8.51', '10', '48'), (5424, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '430', '1220', '4', '100', 'PESIT', 'Electronics and Communication Department', '85.5', '100', '0'), (5425, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (5426, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '152', '316', '3.5', '107', 'None', '0', '0', '0', '0'), (5427, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '450', '1180', '2', 'None', 'A D Patel Institute Of Technology', 'Electronics & Communication', '8.15', '10', '0'), (5429, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'JNTU', 'CSE', '70', '100', '0'), (5430, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (5431, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '600', '1400', '5', '290', 'Anna University', 'ECE', '85', '100', '0'), (5432, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '148', '313', '3.5', '106', 'Thapar University', 'Civil Engineering', '8.54', '10', '0'), (5434, '6', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '168', '149', '317', '3.5', '111', 'Mahatma Gandhi University Kerala', 'Electronics and Communication', '7.47', '10', '0'), (5435, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '143', '302', '3', '84', 'SKIET Kurukshetra University', 'Information Technology', '74', '100', '0'), (5436, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (5437, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '670', '1430', '4', '115', 'SVCE', 'EEE', '84', '100', '0'), (5438, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Spring ', '2015', '166', '144', '310', '3', 'None', 'Bharati Vidyapeeth', 'Biomedical', '0', '0', '0'), (5439, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (5440, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '150', '315', '4.5', 'None', 'PESIT', 'Mechanical', '9.08', '10', '0'), (5441, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '157', '326', '4', '109', 'GGSIPU', 'ECE', '72', '100', '32'), (5442, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (5443, '6', 'Admit', 'MS', 'microelectronics', 'Fall ', '2015', '158', '163', '321', '3', '107', 'Amrita School of Engineering', 'Electronics and Instrumentation', '8.57', '10', '36'), (5444, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '145', '307', '3', '95', 'Vasavi College of Engineering', 'Computer Science', '82', '100', '12'), (5445, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '96', 'BITS Pilani', 'COMPUTERS', '7.8', '10', '0'), (5446, '6', 'Admit', 'MS', 'software engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '104', 'University of Pune', 'Mechanical', '61', '100', '60'), (5447, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '149', '308', '3.5', '103', 'JNTU', 'IT', '78.56', '100', '0'), (5448, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5450, '6', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '770', '650', '1420', '4', '112', 'University of Kerala', 'ECE', '7.55', '10', '0'), (5451, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '320', '1120', '3.5', '105', 'JNTU', 'CSE', '75', '100', '0'), (5452, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (5453, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (5454, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '147', '310', '3', '102', 'SRM', 'CSE', '9.5', '10', '29'), (5455, '6', 'Admit', 'MS', 'analytics', 'Fall ', '2013', '154', '149', '303', '4', '101', 'JNTU', 'Metallurgy and Materials Engineering', '62.5', '100', '0'), (5456, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (5457, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '560', '1320', '3', '105', 'YCCE', 'Electronics', '78.8', '100', '0'), (5458, '6', 'Admit', 'MS', 'Computational Science', 'Fall ', '2014', '162', '152', '314', '4', '100', 'VIT', 'Information Technology', '8.95', '10', '0'), (5459, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (5460, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (5461, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '152', '315', '3.5', '94', 'COEP', 'Computer', '0', '0', '0'), (5462, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '153', '318', '3.5', '105', 'NIT Surat', 'Electronics', '7.74', '10', '0'), (5463, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (5464, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (5465, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '700', '1430', '3.5', '112', 'Anna University', 'Mechanical Engineering', '76.18', '100', '0'), (5468, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (5469, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '150', '315', 'None', '99', 'Jalpaiguri Government Engineering College', 'Electronics and Communication', '8.11', '10', '0'), (5470, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (5471, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (5472, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (5473, '6', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2015', '164', '157', '321', '4.5', '105', 'NIT Tirchy', 'Production Engineering', '7.86', '10', '24'), (5474, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '152', '316', '3', '104', 'NIT Allahabad', 'CSE', '8.68', '10', '0'), (5475, '6', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (5476, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '680', '1470', 'None', '108', 'SJCE', 'E & C', '68', '100', '0'), (5477, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '147', '311', '3', '98', 'VNIT Nagpur', 'Mechanical', '8', '10', '24'), (5478, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (5479, '6', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (5480, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '4.5', '115', "People's Education Society Institute of Technology (PESIT)", 'ECE', '8.51', '10', '0'), (5481, '6', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (5482, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (5483, '6', 'Admit', 'MS', 'Data Science', 'Spring ', '2016', '162', '159', '321', '3.5', '111', 'NIT Warangal', 'Electrical and Electronics Engineering', '8.4', '10', '24'), (5484, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '530', '1310', '4', 'None', 'Pune University', 'Mechanical', '73', '100', '0'), (5485, '6', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', 'None', 'VTU', 'Mechanical', '75.6', '100', '0'), (5486, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '147', '304', '3.5', '108', 'Sri Sairam Engineering College', 'ECE', '8.3', '10', '0'), (5487, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (5488, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'Amrita School of Engineering', 'CSE', '7.69', '10', '0'), (5489, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '92', 'VTU', 'ECE', '71', '100', '0'), (5490, '6', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (5491, '6', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (5492, '6', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '159', '322', '3.5', '113', 'Osmania University', 'CSE', '8.2', '10', '0'), (5493, '6', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', 'None', 'KIIT', 'Computer Science(IT)', '8.4', '10', '0'), (5494, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '150', '310', '4', '96', 'Sardar Patel College of Engineering', 'Electrical Engineeting', '72', '100', '0'), (5495, '6', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '4', '114', 'NIT Calicut', 'ECE', '9.16', '10', '0'), (5496, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '140', '306', '3', '95', 'VTU', 'Electronics and Communication', '82.8', '100', '0'), (5497, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (5498, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '159', '153', '312', '3', '99', 'MRCET(affiliated to JNTUH)', 'aero', '72', '100', '0'), (5499, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '153', '317', '3', '98', 'CSPIT', 'electronics and communication', '8.51', '10', '0'), (5500, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (5501, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '91', 'Northern India Engineering College UPTU', 'Biomedical engineering', '65', '100', '0'), (5502, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (5503, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '590', '1310', '3', '0', 'UPTU', 'CS', '70.44', '100', '0'), (5504, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (5505, '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '150', '309', '3', '109', 'VTU', 'Computer Science', '70', '100', '17'), (5507, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '155', '316', '3', '102', 'NIT Hamirpur', 'Electronics and Communication Engineering', '8.04', '10', '20'), (5508, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '163', '324', '3.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.3', '10', '0'), (5509, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '153', '317', '3.5', '110', 'VTU', '0', '70', '100', '0'), (5510, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '153', '317', '3', '103', 'Jaypee Institute of Information Technology', 'CSE', '70', '100', '0'), (5511, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (5513, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '148', '311', '3', 'None', 'PESIT', 'Telecommunication', '8.5', '10', '23'), (5515, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (5516, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '3.5', '117', 'RNSIT', 'Instrumentation Technology', '78', '100', '0'), (5517, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '146', '309', '3', '102', 'Manipal Institue of Technology', 'Information Technology', '7', '10', '0'), (5518, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (5519, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '146', '308', '3.5', '97', 'VSS Univ of Technology', 'ELECTRICAL ENGINEERING', '7.77', '10', '0'), (5520, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3', '105', 'CoE Trivandrum', 'ECE', '83.3', '100', '0'), (5521, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '156', '151', '307', '3.5', '106', 'Anna University', 'Information Technology', '71.2', '100', '58'), (5522, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (5523, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '680', '600', '1280', '3.5', '88', 'Dr MGR Educational and Research Institute', 'Computer Science and Engineering', '7.43', '10', '0'), (5524, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '159', '150', '309', '3.5', '106', 'JNTU', 'ece', '71', '100', '0'), (5525, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '154', '318', '4', '111', 'Goa University', 'Electronics and Telecommunication', '65.44', '100', '0'), (5526, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '155', '149', '304', '3', '93', 'Anna University', 'Mechanical Engineering', '7.6', '10', '0'), (5528, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '153', '309', '4', '105', 'YCCE', 'Computer Technology', '64', '100', '28'), (5529, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '156', '321', '3', '110', 'Anna University', 'B.Tech I.T', '7.61', '10', '0'), (5530, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', 'None', '164', '148', '312', '3', '101', 'University of Pune', 'Mechanical', '61', '100', '0'), (5531, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (5532, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (5533, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '147', '309', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'ELECTRONICS AND COMMUNICATION', '7.8', '10', '18'), (5534, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (5535, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '162', '153', '315', '3', '105', 'Reva Institute of Technology', 'cse', '0', '0', '0'), (5536, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (5537, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (5538, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '149', '312', '4', '101', 'Manav Rachna', 'ECE', '8', '10', '0'), (5539, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (5540, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (5541, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '158', '158', '316', '4', '116', 'MU', 'EXTC', '70.47', '100', '12'), (5542, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (5543, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (5544, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (5545, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (5546, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3', '100', 'RGPV', 'computer science', '73', '100', '0'), (5547, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '142', '302', '2.5', 'None', 'Dr.AIT', 'TCE', '9.03', '10', '0'), (5548, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (5549, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (5550, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '4', '112', 'VTU', 'Electronics and Communication', '77', '100', '0'), (5551, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '158', '157', '315', '3.5', '105', 'JNTU', 'ECE', '73', '100', '0'), (5552, '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (5553, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '165', '153', '318', '4', '113', 'Pune University', 'Information technology', '69', '100', '0'), (5554, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '147', '307', '3.5', '95', 'VNR VJIET', 'IT', '75', '100', '0'), (5555, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '152', '310', '3', '102', 'Osmania University', 'EEE', '67', '100', '0'), (5556, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '590', '1350', '3', 'None', 'Velammal Engineering College', 'Electronics and Instrumentation', '75', '100', '0'), (5557, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (5558, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', '91', 'Pune University', 'Computer', '62', '100', '0'), (5559, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '148', '307', '3', '100', 'VTU', 'Computer Science', '70.1', '100', '70'), (5560, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', '4.5', '118', 'VTU', 'Electronics and Communication', '67', '100', '0'), (5561, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (5562, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '150', '312', '3.5', '113', 'Manipal Institue of Technology', 'Mechatronics', '7.5', '10', '0'), (5563, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '310', '1060', '3', '0', 'SVCE', 'Information Technology', '8.44', '10', '0'), (5564, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (5565, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '156', '319', '3.5', '112', 'MNIT', 'Electronics and Communication Engineering', '6.8', '10', '0'), (5566, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (5567, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '158', '319', '4.5', '111', 'Pune University', 'Electronics and Telecom', '65', '100', '0'), (5568, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '150', '309', '4', '107', 'MSRIT', 'Electronics and Communication', '8.42', '10', '13'), (5570, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '155', '150', '305', '5.5', '106', 'University of Pune', 'Computer Science', '72', '100', '0'), (5571, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (5572, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (5573, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (5574, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '167', '155', '322', '4.5', '109', 'University of Pune', 'Electronics and Telecommunication', '64', '100', '0'), (5575, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (5576, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '440', '1180', 'None', 'None', 'PICT', 'Computer Engg', '64', '100', '0'), (5577, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '730', '440', '1170', '3', '102', 'Pune University', 'Computer Engineering', '73', '100', '0'), (5578, '6', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (5579, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (5580, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '148', '313', '3', '97', 'Jaypee Institute of Information Technology', 'ECE', '7.4', '10', '51'), (5581, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '110', 'Sinhgad College of Engineering', 'Computer Engg', '60', '100', '0'), (5582, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (5583, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '650', '570', '1220', '4', '101', 'University of Pune', 'Computer & I.T', '56', '100', '0'), (5584, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3.5', '101', 'Manipal Institue of Technology', 'Information and Communication Technology', '6.94', '10', '0'), (5585, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '580', '1310', '3.5', '107', 'SNDT Univ Mumbai', 'ENC', '7.73', '10', '0'), (5586, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '710', '640', '1350', '3', '113', 'JNTU', 'ECE', '73', '100', '0'), (5587, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '158', '325', '4', '115', 'University of Mumbai', 'Computer Engineering', '0', '0', '0'), (5589, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '158', '320', '4', '112', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5590, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (5591, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '158', '154', '312', '3.5', '114', 'West Bengal University Of Technology', 'ELECTRONICS AND COMMUNICATION', '8.64', '10', '0'), (5592, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '162', '156', '318', '3.5', '112', 'None', '0', '58.1', '100', '0'), (5593, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (5594, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', 'None', 'University of Pune', 'Computer', '65.8', '100', '0'), (5595, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '103', 'West Bengal University Of Technology', 'CSE', '8.04', '10', '34'), (5596, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '163', '164', '327', '4.5', '116', 'VTU', 'Electronics and Communication', '65.35', '100', '20'), (5597, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '147', '315', '3.5', '82', 'CEG', 'Electrical and Electronics Engineering', '9.31', '10', '0'), (5598, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (5599, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '149', '312', '3', '91', 'Maharishi Dayanand University', 'Information Technology', '72', '100', '0'), (5600, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3', '93', 'CVRCE', 'Electronics and Communication Engineering', '82', '100', '0'), (5601, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '4.5', '109', 'BITS Dubai', 'Electronics and Communication', '8.75', '10', '0'), (5602, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (5603, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (5604, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (5605, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '760', '530', '1290', '3.5', '107', 'SGSITS', 'ECE', '69.78', '100', '0'), (5606, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '90', 'MU', 'Information Technology', '63', '100', '11'), (5607, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '3', '105', 'GCET Sardar Patel University', 'Computers', '6.38', '10', '0'), (5608, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '4', '107', 'IP University MAIT', 'ECE', '81', '100', '0'), (5609, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (5610, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (5611, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3', '95', 'University of Pune', 'Computer Engineering', '67', '100', '18'), (5612, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4.5', '114', 'MU', 'Computer Engineering', '63', '100', '0'), (5613, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '580', '1320', '3.5', '97', 'CUSAT', 'Electronics and Communication Engineering', '76.32', '100', '0'), (5614, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '150', '306', '3', '93', 'M G university Kerala', 'CS', '73.3', '100', '12'), (5615, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '153', '313', '4', '105', 'Pune University', 'ENTC', '60', '100', '56'), (5616, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '159', '156', '315', '3.5', '112', 'CITM Faridabad Haryana (affiliated to Maharshi Dayanand University Rohtak)', 'Aeronautical Engineering', '70.5', '100', '0'), (5617, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', '3.5', '107', 'MU', 'Electronics and Telecommunications', '66.93', '100', '24'), (5618, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (5619, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '158', '320', 'None', '108', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.7', '100', '52'), (5620, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '166', '159', '325', '4', '110', 'Medicaps Institute of Science & Technology Indore', 'EC', '73', '100', '0'), (5621, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '149', '309', '4', 'None', 'DSCE', 'ECE', '72', '100', '0'), (5622, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (5623, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '155', '318', '3', '107', 'Jaypee Institute of Information Technology', 'Information Technology', '6.7', '10', '0'), (5624, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '150', '306', '3.5', 'None', 'Anna University', 'Electrical and Electronics Eng.', '8.7', '10', '24'), (5625, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '154', '308', '3', '108', 'Prathyusha Institute of Technology and Management', 'ECE', '72', '100', '45'), (5626, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '101', 'NITK Surathkal', 'Electronics & Comm Engg', '7.34', '10', '0'), (5627, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (5628, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '500', '1240', '3.5', '112', 'Pune University', 'Computer', '63', '100', '0'), (5629, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '145', '304', '3', '90', 'SRM', 'ELECTRICAL AND ELECTRONICS', '9.328', '10', '0'), (5630, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '152', '317', '3', '103', 'Madras Institute of Technology', 'Electronics & Communications Enginnering', '6.5', '10', '24'), (5631, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (5632, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (5633, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '111', 'CoE Trivandrum', 'Computer Science', '7.93', '10', '36'), (5634, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '101', 'JNTU', 'ECE', '76', '100', '0'), (5635, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (5636, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '630', '350', '980', '3', '93', 'EEC', 'ECE', '0', '0', '0'), (5637, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '3.5', '104', 'NIT Durgapur', 'ELECTRICAL ENGINEERING', '7.97', '10', '0'), (5638, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (5639, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3', '98', 'PSG College of Technology', 'mechanical', '7.78', '10', '3'), (5640, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (5641, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '141', '299', '3', 'None', 'SSN College of Engineering', 'EEE', '75', '100', '0'), (5642, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '151', '309', 'None', '103', 'NIE', 'CS', '8.23', '10', '0'), (5643, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (5644, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (5645, '6', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (5646, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '156', '320', '3.5', '113', 'University of Pune', 'Electronics & Telecommunication', '71', '100', '0'), (5647, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (5648, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '154', '319', 'None', '100', 'IIT Roorkee', 'Paper Technology', '7.84', '10', '43'), (5649, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '790', '650', '1440', '4', '110', 'VTU', 'Mechanical', '68', '100', '0'), (5650, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (5651, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '152', '315', '3', '104', 'VIT', 'Electrical and Electronics Engineering', '8.97', '10', '0'), (5652, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '157', '322', '4.5', '115', 'university pf Pune', 'Electronics and telecomm', '64', '100', '15'), (5653, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '153', '316', '4', '108', 'VTU', 'Computer Science', '83.68', '100', '0'), (5654, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (5655, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '160', '149', '309', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '7.35', '10', '0'), (5656, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '360', '1140', '3', '101', 'Siddaganga Institue of Technology', 'Electronics and Communication', '9.27', '10', '0'), (5657, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '3', '102', 'Sardar Patel College of Engineering', 'Information Technology', '67', '100', '0'), (5658, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical & Electronics', '67', '100', '0'), (5659, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '167', '324', '3', '110', 'BITS Pilani', 'Electronics & Instrumentation', '6', '10', '0'), (5660, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '154', '317', '3.5', '101', 'Panimalar Engineering College', 'Electrical and Electronics', '8.2', '10', '0'), (5661, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '147', '314', '3', '88', 'Cochin University of Science and Technology', 'Division of Electorinics', '72', '100', '0'), (5662, '6', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (5663, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '145', '307', '3.5', '102', 'NIT Tirchy', 'Electronics And Communication', '6.61', '10', '0'), (5664, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (5665, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '640', '1420', '5', '270', 'MU', 'Comp Engg', '57.29', '100', '0'), (5666, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '350', '1140', '3', '104', 'Anna University', 'Computer Science', '73', '100', '0'), (5667, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '143', '299', 'None', '97', '0', 'ECE', '79', '100', '0'), (5668, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '148', '311', '4.5', '105', 'University of Mumbai', 'Computer Science', '59.8', '100', '0'), (5669, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '109', 'NIT Hamirpur', 'Electronics and Communication', '8.18', '10', '18'), (5670, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '156', '147', '303', '3', '100', 'Madras Institute of Technology', 'Computer Science Engineering', '6.8', '10', '0'), (5671, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (5672, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (5674, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '146', '311', '3', '97', 'RVR & JC College of Engineering', 'electronics and communication engineering', '84.8', '100', '0'), (5675, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '157', '311', '4', '114', 'Anna University', 'Computer Science', '6.7', '10', '0'), (5676, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '720', '340', '1060', '3', '84', 'pvpsit', 'ece', '76.52', '100', '0'), (5677, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '163', '153', '316', '3', '109', 'NIT Tirchy', 'CSE', '7.03', '10', '0'), (5678, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '161', '149', '310', '3.5', '102', 'MU', 'Electronics & Telecommunication', '69', '100', '0'), (5679, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (5680, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '158', '319', '3.5', '109', 'University of Calicut', 'Computer Science and Engg', '79', '100', '38'), (5681, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3', '105', 'L D College Of Engineering', 'Information Technology', '7.67', '10', '3'), (5682, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', 'None', 'None', 'Madras Institute of Technology', 'Electronics and Communication', '8.5', '10', '0'), (5683, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (5684, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '640', '1400', '2.5', '87', 'VTU', 'ECE', '63', '100', '0'), (5685, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', 'None', 'DA-IICT', 'ICT', '6.83', '10', '19'), (5686, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '149', '315', '3.5', '104', 'R.N.S.I.T / VTU', 'Electronics and communication', '68', '100', '15'), (5687, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (5688, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '155', '312', '4.5', '108', 'VIT University', 'CSE', '8.4', '10', '6'), (5689, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '151', '311', '3.5', '87', 'Sarvajanik College of Engineering & Technology', 'Computer', '7.94', '10', '0'), (5690, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '157', '326', '4', '108', 'NIT Silchar', 'Computer Science and Engineering', '6.94', '10', '0'), (5691, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '102', 'VTU', 'Computer Science', '71.7', '100', '0'), (5692, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '4', '113', 'None', '0', '0', '0', '0'), (5693, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (5694, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (5695, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '150', '319', '4', '112', 'Amrita School of Engineering', 'Electronics and Communication', '7.48', '10', '0'), (5696, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (5697, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '155', '314', '5', '105', 'NMIMS', 'Electronics', '2.85', '4', '0'), (5698, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '166', '150', '316', '3.5', '107', 'University of Mumbai', 'electronics and telecom', '70.03', '100', '31'), (5699, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '157', '319', '3.5', '109', 'SRM', 'ECE', '8.23', '10', '0'), (5700, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '167', '152', '319', '3', '108', 'BIT Mesra', 'Electronics and Communication', '7.2', '10', '0'), (5701, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '110', 'VTU', 'E&C;', '69.4', '100', '0'), (5702, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '640', '1440', '3.5', '105', 'SSN College of Engineering', 'IT', '73', '100', '0'), (5703, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '3.5', '94', 'IIT Indore', 'Electrical Engineering', '6.6', '10', '0'), (5704, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (5705, '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '163', '142', '305', '3', '93', 'BIT VTU', 'Electronics And Communication', '80', '100', '0'), (5706, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '3', 'None', 'Univ of Mumbai', 'Electrical', '64.41', '100', '0'), (5707, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '144', '310', '3.5', '96', 'SRM', 'ECE', '8', '10', '0'), (5709, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (5710, '6', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '158', '161', '319', '3.5', '112', 'Guru Nanak Dev University Amritsar', 'Electronics & Communications', '70.8', '100', '0'), (5711, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '730', '490', '1220', '3.5', '104', 'Manipal Institue of Technology', 'Biomedical Engineering', '7.67', '10', '0'), (5712, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '168', '149', '317', '3', '101', 'None', 'Electronics and Communication Engineering', '7.85', '10', '0'), (5713, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3.5', '84', 'Panjab University', 'CSE', '75.02', '100', '0'), (5714, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (5715, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (5716, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (5717, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (5718, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (5719, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3', '99', 'Pondicherry University', 'CSE', '8.03', '10', '0'), (5720, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '163', '324', '4', '116', 'SDM', 'mechanical', '68.84', '100', '0'), (5721, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (5722, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (5723, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '166', '324', '4', 'None', 'Manipal Institue of Technology', 'electrical & electronics', '7.41', '10', '0'), (5724, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '108', 'PESIT', 'Mechanical Engg.', '60', '100', '0'), (5725, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (5726, '6', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '720', '590', '1310', '3', '101', 'Kurukshetra University', 'Biochemistry', '73', '100', '0'), (5727, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3.5', '100', 'Anna University', 'ECE', '8.7', '10', '0'), (5728, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '770', '490', '1260', '3.5', '102', 'GITAM', 'ECE', '9.15', '10', '0'), (5729, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (5730, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '4', '107', 'Pune University', 'IT', '58', '100', '0'), (5731, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (5732, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (5733, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3.5', '106', 'Pune University', 'Computer Engg.', '57', '100', '0'), (5734, '6', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (5735, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '162', '141', '303', '3.5', '102', 'Vasavi College of Engineering', 'Civil Engineering', '66', '100', '0'), (5736, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '144', '301', '2.5', '98', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.2', '10', '0'), (5737, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '149', '312', '3.5', '105', 'IIIT Hyderabad', 'ECE', '6.72', '10', '0'), (5738, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '2.5', '97', 'None', '0', '8.63', '10', '0'), (5739, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4', '8', 'Pondicherry University', 'Computer Science', '7.1', '10', '20'), (5740, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (5741, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '800', '510', '1310', '3', '96', 'PICT', 'IT', '3.29', '4', '0'), (5742, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Spring ', '2014', '158', '150', '308', '3.5', '92', 'WBUT', 'ECE', '9.77', '10', '0'), (5743, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3', '100', 'NIT Tirchy', 'Computer Science', '7.62', '10', '0'), (5744, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '330', '1050', '3.5', '103', 'Anna Univeristy', 'EEE', '74', '100', '0'), (5745, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', 'None', 'PESIT', 'Telecommunication', '8.1', '10', '0'), (5746, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (5747, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (5749, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', '91', 'COER UPTU', 'Electronics and TeleCommunication', '76', '100', '0'), (5750, '6', 'Reject', 'MS', 'Packaging Science', 'Fall ', '2013', '160', '152', '312', '3.5', '106', 'Anna University', 'Mechanical', '7.36', '10', '0'), (5751, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (5752, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '145', '304', '3', '112', 'Gujarat Technological University', 'Electronics and Telecomm.', '8.44', '10', '0'), (5753, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (5754, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '3.5', '114', 'Nagpur University', 'Electrical Engineering', '61', '100', '0'), (5755, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '520', '1280', '3', '104', 'Shri Ramdeobaba Engineering College', 'electronics and communication', '70', '100', '0'), (5756, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (5757, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (5758, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '4', '94', 'Medicaps Institute of Science & Technology Indore', 'Information Technology', '8.07', '10', '0'), (5759, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '2.5', '95', 'PESIT', 'Electronics and communication', '8.02', '10', '0'), (5760, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '158', '321', '3.5', '107', 'SVNIT', 'Electronics Engineering', '6.56', '10', '0'), (5761, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '530', '1300', '3.5', '112', 'University of Mumbai', 'Electronics Engineering', '69.16', '100', '0'), (5762, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '460', '1250', '3.5', '263', 'JNTU', 'eee', '79', '100', '0'), (5763, '6', 'Reject', 'MS', 'Master of Science in Information Technology', 'Fall ', '2014', '162', '151', '313', '3.5', 'None', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '7.32', '10', '22'), (5764, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (5766, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (5767, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '149', '310', '4', '108', 'R.N.S.I.T (VTU)', 'Computer science', '65', '100', '0'), (5768, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '150', '310', '3', '88', 'MIT Pune', 'Computer science', '60.5', '100', '0'), (5770, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '157', '137', '294', '3.5', '87', 'CMRIT', 'ECE', '61', '100', '0'), (5771, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '660', '540', '1200', '3.5', '95', 'University of Rajasthan', 'ECE', '69', '100', '0'), (5772, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (5773, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (5774, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '151', '311', '4', '102', 'SRM', 'ECE', '8.59', '10', '22'), (5775, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '156', '323', '3', '107', 'NIT Nagpur', 'ECE', '8.22', '10', '28'), (5776, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (5777, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '410', '1150', '4', '104', 'Anna University', 'Electrical and Electronics', '7.9', '10', '0'), (5778, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '147', '307', '4', '101', 'Shivaji University', 'Electronics & Telecommunication', '69.07', '100', '0'), (5779, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (5780, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'RTU Kota / JECRC jaipur', 'Information Technology', '74', '100', '41'), (5781, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3.5', '90', 'Anna University', 'Computer Science and Engineering', '7.8', '10', '0'), (5782, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (5783, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (5784, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '420', '1140', '3.5', '98', 'VTU', 'Computer Science and engineering', '67.53', '100', '0'), (5785, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (5786, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '670', '1450', '4', '113', 'University of Pune', 'Electronics & Telecommunication', '61', '100', '0'), (5787, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '790', '610', '1400', '3.5', '115', 'JNTU', 'Electronics and Instrumentation Engineering', '79', '100', '0'), (5788, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '152', '313', '3', '105', 'Sardar Patel College of Engineering', 'Electrical Engineering', '75.86', '100', '18'), (5789, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '151', '307', '3', '100', 'Coimbatore Insitute of Technology', 'M.Sc Software Engineering', '78', '100', '0'), (5790, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2015', '166', '145', '311', '3', '96', 'SASTRA', 'electronics and communication engineering', '7.93', '10', '27'), (5791, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '144', '308', 'None', 'None', 'Vignan Institute of Technology and Science', 'ECE', '83', '100', '0'), (5792, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '143', '301', '3', '98', 'MVSR', 'Mechanical', '70', '100', '1'), (5793, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '160', '151', '311', '4', '93', 'LDRP-ITR/GTU', 'ECE', '73.5', '100', '0'), (5794, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (5795, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'VTU', 'Computer Science & Engineering', '67', '100', '0'), (5796, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '82', 'MU', 'Electronics and Telecommunication', '73.9', '100', '0'), (5797, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (5798, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '3', '108', 'Pune University', 'Electronics', '57', '100', '0'), (5799, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '510', '1260', '3.5', '104', 'Thadomal Shahani Engineering College', 'Computers', '61', '100', '0'), (5800, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '4', '113', 'RMK Engineering College', 'B.E. Electrical and Electronics Engineering', '8.28', '10', '0'), (5801, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '450', '1250', '3', 'None', 'NIT Warangal', 'Civil engineering', '7.1', '10', '0'), (5802, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '11', '780', '500', '1280', '3.5', '105', 'Crescent Engineering College', 'CS', '69', '100', '0'), (5803, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '430', '1120', '3.5', '89', 'Anna University', 'Electrical and Electronics Engineering', '81', '100', '0'), (5804, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '161', '149', '310', '3.5', '102', 'VIT', 'EEE', '8.18', '10', '0'), (5805, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '710', '550', '1260', '3', '98', 'VTU', 'Telecommunication', '74', '100', '0'), (5806, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3.5', '102', 'Amity University', 'Computer Science And Engineering', '7.6', '10', '0'), (5807, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '148', '313', '3.5', '91', 'University of Pune', 'Comp Engg', '0', '0', '0'), (5808, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '153', '313', '3.5', '112', 'NMAMIT Nitte', 'Computer Science & Engineering', '67', '100', '0'), (5809, '6', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (5810, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '148', '305', '4', '105', 'Goa University', 'Computer Engineering', '78', '100', '32'), (5812, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (5813, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '150', '309', '3', '106', 'Amity University', 'Computer Science and Engineering', '8.36', '10', '39'), (5815, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (5816, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2012', '740', '530', '1270', '3', '99', 'JNTU', 'EEE', '54.66', '100', '0'), (5817, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '156', '314', '4', 'None', 'Anna University', 'Information Technology', '8.01', '10', '0'), (5818, '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '310', '1090', '3', '83', 'Bapatla Engineering College', 'civil engineering', '83', '100', '0'), (5819, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (5820, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '94', 'Guru Gobind Singh Indraprashta University', 'electronics & communication engg', '70.06', '100', '0'), (5821, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '153', '321', 'None', 'None', 'VTU', 'EC', '80', '100', '0'), (5822, '6', 'Reject', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '770', '340', '1110', '3', '97', 'VTU', 'ECE', '70', '100', '0'), (5823, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '144', '303', '3', '101', 'Bangalore Institute of Technology', 'Computer Science and Engineering', '78.11', '100', '0'), (5824, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '144', '305', '3', '97', 'Vishwakarma Institute of Technology', 'Electronics and Telecommunication', '7.9', '10', '0'), (5825, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (5826, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (5827, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '155', '317', '4', '109', 'Sri Sairam Engineering College', 'Instrumentation and Control', '8.2', '10', '0'), (5828, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (5829, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '530', '1330', '3.5', '115', 'Manipal Institue of Technology', 'ECE', '8.6', '10', '0'), (5830, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '690', '1480', '3.5', '106', 'NIT Bhopal', 'CSE', '7.36', '10', '0'), (5831, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '108', 'UPTU', 'Mechanical Engineering', '67', '100', '42'), (5832, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '154', '146', '300', '3.5', '95', 'Gujarat Technological University', 'Mechanical Engineering', '8.1', '10', '0'), (5833, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '149', '310', '3', '104', 'MU', 'computer', '58.95', '100', '0'), (5834, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (5835, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '168', '152', '320', '4', '105', 'VTU', 'Electronics', '64', '100', '0'), (5836, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (5837, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '150', '309', '3.5', '110', 'VTU', 'Electronics & Communication', '76.5', '100', '0'), (5838, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '150', '310', '4', '114', 'University of Pune', 'Electronics Engineering', '69', '100', '0'), (5839, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '156', '149', '305', '3', '100', 'SASTRA', 'Electronics and Communication', '9.11', '10', '52'), (5840, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '157', '317', 'None', '114', 'VTU', 'ECE', '8.59', '10', '0'), (5841, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '146', '308', '3.5', '97', 'Pune University', 'Computer Engineering', '70', '100', '0'), (5842, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '470', '1210', '2.5', '99', 'VTU', 'cs', '65', '100', '0'), (5843, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2008', '800', '580', '1380', '5', '111', 'MU', 'Information Technology', '60', '100', '0'), (5844, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '147', '310', '3.5', '97', 'Punjab Technical University', 'Electronics & Communication', '79.92', '100', '32'), (5845, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '144', '300', '3.5', '91', 'Birla Vishvakarma Mahavidyalaya', 'Electrical Engineering', '8.11', '10', '24'), (5846, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (5847, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '4', '110', 'SJCE', 'EC', '76', '100', '0'), (5848, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', "St Joseph's College of Engineering", 'cse', '8.64', '10', '0'), (5849, '6', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (5850, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (5851, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (5852, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '148', '313', '3.5', '96', 'D J Sanghvi', 'EXTC', '67.6', '100', '0'), (5853, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '660', '1440', '4.5', '283', 'Sri Venkateswara College of Engineering', 'Computer Science', '72', '100', '0'), (5854, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '152', '312', '4', '115', 'MU', 'Computers', '66.45', '100', '24'), (5855, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '148', '308', '3', '98', 'Sree Vidyanikethan Engineering College', 'Electronics and Communication Engineering', '79', '100', '0'), (5856, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '112', 'VIT Pune', 'Instrumentation & Control', '8.8', '10', '0'), (5857, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '160', '318', '3.5', '114', 'MU', '0', '61', '100', '0'), (5858, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '161', '156', '317', '3.5', '116', 'VTU', 'EEE', '85', '100', '0'), (5859, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '163', '155', '318', '3', '90', 'West Bengal University Of Technology', 'Electronics and Instrumentation Engineering', '8.54', '10', '33'), (5860, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '166', '155', '321', '3.5', '101', 'Uttarakhand Technical University', 'Computer Science', '72.6', '100', '56'), (5861, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '149', '310', '3.5', '101', 'JNTU', 'Computer Science', '65.44', '100', '0'), (5862, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', 'None', 'JNTU', 'ECE', '75', '100', '0'), (5863, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '146', '307', '4', '97', 'Amrita School of Engineering', 'Electronics and Communication', '9.01', '10', '48'), (5864, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '157', '315', '4', '116', 'Goa University', 'Civil Engineering', '68', '100', '0'), (5865, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '159', '143', '302', '3', '94', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7', '10', '0'), (5866, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '157', '316', 'None', '111', 'VTU', 'CSE', '75', '100', '0'), (5867, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '2.5', '90', 'Pondicherry Engineering College', 'ECE', '8.25', '10', '0'), (5868, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (5869, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '2.5', '92', 'University of Pune', 'Electronics and Telecommunication', '8.57', '10', '0'), (5870, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '151', '316', '3', '95', 'Uni. Of Pune VIIT', 'E&TC;', '67', '100', '0'), (5871, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '144', '303', '3', '101', 'Anna University', 'Mechanical Engineering', '8.2', '10', '0'), (5872, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '154', '317', '4', '110', 'Priyadarshini College of Engineering', 'Computer Technology', '63.15', '100', '0'), (5873, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (5874, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3', '93', 'University of Mumbai', 'Computer Science', '62.3', '100', '36'), (5875, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3.5', '99', 'BIT Mesra', 'Mechanical Engineering', '71', '100', '0'), (5876, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '153', '313', '3.5', '100', 'NMU', '0', '61', '100', '0'), (5877, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3', '103', 'Velammal Engineering College', 'Electronics and Communication', '88', '100', '0'), (5878, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '740', '490', '1230', '4', '105', 'Manipal Institue of Technology', 'Electronics & Coomunication', '8.59', '10', '0'), (5879, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (5880, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (5881, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '430', '1230', '3.5', '104', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '9.18', '10', '0'), (5882, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3', '100', 'NIT Calicut', 'Electrical Engg', '7.6', '10', '0'), (5883, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (5884, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '157', '146', '303', '2.5', 'None', 'Madras Institute of Technology', 'ECE', '6.5', '10', '0'), (5885, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '151', '312', '3', '112', 'VTU', 'eee', '70', '100', '0'), (5886, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (5887, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (5888, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (5889, '6', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall ', '2014', '156', '145', '301', '3', '83', 'DBIT', 'Mechanical', '58.72', '100', '34'), (5890, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '141', '300', '3', '91', 'BVBCET', 'Computer and Information Science', '8.55', '10', '0'), (5891, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3.5', '100', 'RGPV', 'Computer', '65', '100', '0'), (5892, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '149', '309', '3.5', '109', 'Pune University', 'Electronics &Telecommunication;', '74', '100', '0'), (5893, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '158', '326', '4', '110', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (5894, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (5895, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '91', 'Panjab University', 'ECE', '82.2', '100', '0'), (5896, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '144', '304', '3.5', '98', 'RNSIT', 'Computer Science', '75', '100', '0'), (5897, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '165', '145', '310', '3', '95', 'Sardar Patel University', 'Electronics', '3.5', '4', '0'), (5898, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '157', '147', '304', '3', '102', 'VIT', 'IT', '7.93', '10', '0'), (5899, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2013', '164', '154', '318', '3', '93', 'NIT Calicut', 'CHEMICAL ENGINEERING', '7.42', '10', '0'), (5900, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '149', '310', '2.5', 'None', 'Coimbatore Insitute of Technology', 'Electronics and Communitaion', '6.76', '10', '0'), (5901, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '420', '1160', '3', '105', 'None', 'ECE', '82.7', '100', '0'), (5902, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (5903, '6', 'Reject', 'MS', 'Wireless communications', 'Fall ', '2014', '163', '154', '317', '3.5', '104', 'JNTU', 'Electronics and Communication', '83.64', '100', '42'), (5904, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (5905, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '142', '300', '3', '83', 'Pune University', 'computer engineering', '64.15', '100', '0'), (5906, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (5907, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '155', '320', '3.5', '104', 'MU', 'Electrical Engineering', '71', '100', '30'), (5909, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '96', 'VIT', 'ELECTRONICS AND COMMUNICATION', '8.35', '10', '0'), (5910, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '156', '151', '307', '3.5', '103', 'md university rohtak', 'ece', '75.2', '100', '0'), (5911, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '490', '730', '1220', '3', '104', 'University of Pune', 'electronics and telecommunication', '62.49', '100', '0'), (5912, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '143', '301', '3', '90', 'RGTU', 'Electronics and communication', '8.39', '10', '0'), (5913, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '154', '147', '301', '3.5', '99', 'KSIT Visvesvaraya Technological University', 'Electronics & Communication', '72', '100', '0'), (5914, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (5915, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '159', '147', '306', '3', '96', 'K J Somaiya College of Engiineering', 'ETRX', '67.5', '100', '0'), (5916, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (5917, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '163', '155', '318', '3.5', '99', 'Madras Institute of Technology', 'ECE', '8.74', '10', '0'), (5918, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '154', '313', '4', '110', 'VIT', 'ECE', '8.34', '10', '0'), (5919, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (5920, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '142', '302', '3', '86', 'Cochin University of Science and Technology', 'Computer Science', '78', '100', '0'), (5921, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', 'None', '95', 'Amrita School of Engineering', 'ECE', '7.9', '10', '0'), (5922, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (5923, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '770', '430', '1200', '3.5', '97', 'Amrita School of Engineering', 'Computer Science', '7.5', '10', '0'), (5924, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '450', '1170', '3', '84', 'Anna University', 'electronics and instrumentation', '66', '100', '0'), (5925, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (5926, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '4', '103', 'SASTRA', 'Computer Science', '7.04', '10', '0'), (5927, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Global Academy of Technology', 'Electrical & Electronics Engineering', '77.6', '100', '0'), (5928, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '149', '317', '3', '102', 'BVM Engineering College', 'Electronics and Telecommunication', '7.7', '10', '0'), (5929, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '630', '450', '1080', '3.5', '95', 'HKBKCE', 'Computer Science', '7.5', '100', '0'), (5930, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '4', '106', 'Amrita School of Engineering', 'Computer Science Engineering', '7.36', '10', '0'), (5931, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '157', '146', '303', '3.5', '91', 'Kurukshetra University', 'CSE', '67.6', '100', '0'), (5932, '6', 'Reject', 'MS', 'Management of Technology', 'Fall ', '2013', '158', '147', '305', '3', '92', 'VTU', 'ECE', '8.13', '10', '0'), (5933, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', 'None', 'None', '0', '3.5', '106', 'None', 'CSE', '7.55', '100', '36'), (5934, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (5935, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '160', '140', '300', '3', '81', 'Andhra University', 'ECE', '8.2', '10', '0'), (5936, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '150', '306', '3.5', '99', 'VTU', 'EC', '75', '100', '0'), (5937, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '164', '149', '313', '3.5', '99', 'Govt. Engineering College Trichur[University of Calicut]', 'Electrical & Electronics Engineering', '70', '100', '0'), (5938, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '158', '152', '310', '3', '107', 'N I E Mysore', 'Computer Science and Engineering', '9.24', '10', '41'), (5939, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (5940, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '150', '314', '3', '103', 'Indus Inst. of Tech. and Eng.', 'E.C.', '8.77', '10', '0'), (5941, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '730', '380', '1110', '3', '93', 'MU', '0', '63', '100', '0'), (5942, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2007', '730', '440', '1170', '3.5', '240', 'PSG College of Technology', 'Automotive Engg', '8.11', '10', '0'), (5943, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '4', '107', 'VTU', 'ECE', '78', '100', '0'), (5944, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3', '108', 'Amrita School of Engineering', 'Information Technology', '7.1', '10', '0'), (5945, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '158', '152', '310', '3', 'None', 'SSN College of Engineering', 'EEE', '81', '100', '0'), (5946, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '430', '1180', '4', '109', 'BIT Mesra', 'Electronics and Communication', '7.92', '10', '0'), (5947, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (5948, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '152', '317', '3.5', '104', 'University of Mumbai', 'Electronics Engineering', '66.67', '100', '0'), (5949, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (5950, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (5951, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (5952, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '670', '1470', '4', '116', 'VTU', 'Electrical Engineering', '72', '100', '0'), (5953, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (5954, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '158', '142', '300', '3', '95', 'Rajasthan Technical University', 'ECE', '62', '100', '0'), (5955, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '140', '301', '3.5', '100', 'Sir MVIT', 'Electronics & Communication', '81.5', '100', '0'), (5956, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '700', '480', '1180', '3.5', '99', 'SSN College of Engineering', 'Computer science and engineering', '72', '100', '0'), (5957, '6', 'Reject', 'MS', 'Computational Science', 'Fall ', '2014', '154', '149', '303', '3.5', '94', 'RKDF IST', 'IT', '74', '100', '0'), (5958, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '410', '1200', '3.5', '109', 'Anna University', 'Computer Science and Engineering', '7.1', '10', '0'), (5959, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '730', '530', '1260', '3', '93', 'Uni of Mumbai', 'Production', '58.9', '100', '0'), (5960, '6', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (5961, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '650', '1450', '4', '277', 'MU', 'Electronics', '62', '100', '0'), (5962, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '154', '313', '4', '105', 'Bangalore Institute of Technology', 'Electronics and Communcication Engineering', '68.2', '100', '0'), (5963, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '153', '156', '309', '4', '111', 'None', 'Computer Science', '7', '10', '30'), (5964, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '154', '142', '296', '3', '80', 'UPTU', 'CSE', '61', '100', '0'), (5965, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '4', '110', 'None', 'Information Technology', '8.1', '10', '0'), (5966, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '790', '560', '1350', '4', '273', 'SVCE', 'Comp Science', '73.3', '100', '0'), (5967, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '148', '310', '2.5', '92', 'University of Pune', 'IT', '60', '100', '25'), (5968, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '150', '313', '3', '99', 'NIT SILCHAR ASSAM INDIA', 'ELECTRICAL ENGINEERING', '6.93', '10', '0'), (5969, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (5970, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '4', '7', 'Osmania University', 'ECE', '81.2', '100', '0'), (5971, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '152', '145', '297', '3', '98', 'None', '0', '8.7', '10', '0'), (5972, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '560', '1350', '3.5', '114', 'BITS Pilani', 'CSIS', '0', '0', '0'), (5973, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '146', '304', '3', '95', 'UVCE', 'Electronics and Communications', '77.16', '100', '0'), (5974, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '690', '590', '1280', '3', '104', 'SASTRA', 'IT', '8.12', '100', '0'), (5975, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (5976, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '157', '324', '4.5', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '8', '10', '36'), (5977, '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '156', '145', '301', '3.5', 'None', 'SCSVMV University', 'ECE', '8.88', '10', '0'), (5978, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (5979, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '700', '430', '1130', '3.5', 'None', 'S.V.C.E', 'EEE', '73', '100', '0'), (5980, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '145', '309', '3.5', '98', 'Pune University', 'Information technology', '63', '100', '0'), (5981, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (5982, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '157', '149', '306', '3', '103', 'Thakur College of Engineering and Technology', 'IT', '58', '100', '12'), (5983, '6', 'Reject', 'MS', 'MIS', 'Spring ', '2016', '158', '149', '307', '4', '101', 'University of Mumbai', 'Computers', '65', '100', '25'), (5984, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '640', '1400', '4', '112', 'MU', 'EXTC', '59', '100', '0'), (5985, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'SVCE', 'CSE', '72', '100', '0'), (5986, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '147', '307', '3', '86', 'MDU', 'MCA', '74', '100', '45'), (5987, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '144', '301', '3', '80', 'Dr.Ambedkar Institute of Technology', 'Electronics and Communication', '8.92', '10', '0'), (5988, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '144', '304', '3', '91', 'VTU', 'Electronics and Communication', '8.12', '10', '0'), (5990, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VTU', 'Electronics & Communication', '70.5', '100', '77'), (5991, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '780', '540', '1320', '3', '104', 'CoE Trivandrum', 'ECE', '7.85', '10', '0'), (5992, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '150', '316', '3.5', '110', 'Pune University', 'Electronics and Telecommunication', '70', '100', '0'), (5994, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (5995, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '530', '1330', '4.5', '114', 'RTM Nagpur University', 'Electronics and Communication Engg.', '62.4', '100', '0'), (5996, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '480', '1270', '4', '109', 'VTU', 'ECE', '70.1', '100', '0'), (5997, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '149', '307', '3', '94', "St Joseph's College of Engineering", 'Electronics And Communication', '75.45', '100', '0'), (5998, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3', '91', 'MU', 'I.T', '74.78', '100', '0'), (5999, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6000, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '153', '311', '4', '100', 'Nit Allahabad', 'Mechanical Engineering', '6.02', '10', '43'), (6001, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (6002, '6', 'Reject', 'MS', 'Computer Graphics and Game Technology', 'Fall ', '2013', '161', '155', '316', '3', '107', 'VTU', 'Electronics & Communication', '78', '100', '0'), (6003, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '162', '325', '4', '111', 'University of Kerala', 'Computer Science', '8.1', '10', '36'), (6004, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '103', 'BMSCE', 'Electronics and Communications', '68.1', '100', '0'), (6005, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '157', '152', '309', '3', '104', 'MU', 'EXTC', '70.48', '100', '12'), (6006, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '101', 'Rajasthan Technical University', 'Electronics & Communication Engg', '70.1', '100', '0'), (6007, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '157', '152', '309', '3', '103', 'Nagpur University', 'Computer Technology', '71.2', '100', '0'), (6008, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6009, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (6010, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (6011, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (6013, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (6014, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (6015, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '145', '301', '3', '92', 'Dr Ambedkar Institute of Technology', 'Telecommunications', '82.57', '100', '0'), (6016, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (6017, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6018, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '144', '304', '3', '98', 'KLE College of Engineering and Technology Belgaum', 'Electronics and Communication', '66.26', '100', '0'), (6019, '6', 'Reject', 'MS', 'Communication Engineering', 'Fall ', '2014', '159', '150', '309', '3', '93', 'UPTU', 'Electronics & Communication', '70', '100', '0'), (6020, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (6021, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '164', '152', '316', 'None', '112', 'FRCRCE', 'Electronics', '70', '100', '0'), (6022, '6', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (6023, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '115', 'Manipal Institue of Technology', 'Electronics and Communication', '8.62', '10', '26'), (6024, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6025, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '105', 'University of Mumbai', 'Electronics & Telecommunication', '61', '100', '0'), (6026, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '154', '152', '306', '3', '109', 'MU', 'ELECTRICAL', '70', '100', '0'), (6028, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '165', '147', '312', '3.5', '99', 'PSG College of Technology', 'Electronics and Communication', '8.55', '10', '34'), (6029, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '157', '156', '313', '4', '114', 'National University of Sciences and Technology', 'Mechatronics Engineering', '2.67', '4', '0'), (6030, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '720', '420', '1140', '4', '106', 'Pune University', 'E&TC;', '0', '0', '0'), (6031, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '610', '1410', '3', '108', 'MU', 'Electronics and Telecom', '66', '100', '0'), (6032, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3', '105', 'Dharamsinh Desai University', 'Information Technology', '8.17', '10', '9'), (6033, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4', '119', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.79', '10', '0'), (6034, '6', 'Reject', 'MS', 'Mathematics', 'Fall ', '2011', '780', '530', '1310', '3.5', '100', 'ISM Dhanbad', 'Applied Mathematics', '8.43', '10', '0'), (6035, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '157', '313', '4', '112', 'Siksha O Anusandhan University', 'Electronics & Communication Engineering', '7.69', '10', '0'), (6036, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '1310', '550', '1860', '3.5', '103', 'CUSAT', 'Civil', '79', '100', '0'), (6037, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (6038, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2015', '160', '150', '310', '3.5', '88', 'KL University', 'Mechanical', '7.3', '10', '9'), (6039, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (6040, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VIT', 'Electronics and Communication', '8.93', '100', '24'), (6041, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '151', '313', '3.5', '101', 'University of Pune', 'IT', '64', '100', '0'), (6042, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (6043, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '147', '308', '3.5', '109', 'VIT University', 'ECE', '8.45', '10', '0'), (6044, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6045, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '800', '650', '1450', '3.5', '114', 'Manipal Institue of Technology', 'Electronics and Communications', '3.61', '4', '8'), (6046, '6', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (6047, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6048, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (6049, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '155', '152', '307', '3', '105', 'Reva Institute of Technology', 'Computer Science', '73.4', '100', '0'), (6050, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '102', 'SSN College of Engineering', 'EEE', '8.218', '10', '0'), (6051, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (6052, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '155', '316', '3', '103', 'RGTU', 'IT', '73', '100', '0'), (6053, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6054, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '600', '1370', '3.5', '104', 'MU', 'CE', '70', '100', '0'), (6055, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '147', '305', '3.5', '100', 'Pune University', 'Computer Science', '62', '100', '0'), (6056, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '105', 'Anna University', 'ECE', '7.567', '10', '0'), (6057, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (6058, '6', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2016', '157', '143', '300', '3', '84', 'Anna University', 'civil engineering', '6.3', '10', '0'), (6059, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '103', 'NITK Surathkal', 'ECE', '8.82', '10', '30'), (6060, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electrical & Electronics', '8.3', '10', '24'), (6061, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (6062, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '154', '319', '3.5', '107', 'R V College of Engineering', 'Telecom', '62.9', '100', '60'), (6063, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '4', '112', 'SSIT VTU', 'IT', '69', '100', '0'), (6064, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6065, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '3', '104', 'BITS Pilani', 'Computer Science', '7.2', '10', '0'), (6066, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (6067, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2008', '780', '560', '1340', '4', '108', 'Aeronautical Society of India', 'Aerospace', '58.27', '100', '0'), (6068, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '91', 'K J Somaiya College of Engiineering', 'Electronics & Telecom', '61', '100', '0'), (6069, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '150', '318', '2.5', '95', 'SRM', 'EEE', '9.15', '10', '0'), (6070, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (6071, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '154', '322', '3', '96', 'L D College Of Engineering', 'COMPUTER', '7.24', '10', '12'), (6072, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '163', '148', '311', '3', '100', 'Sardar Vallabhbhai National Institute of Technology', 'Electrical Engineering', '7.84', '10', '0'), (6073, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (6074, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '149', '313', '4', '104', 'VTU', 'Instrumentation Tech.', '78', '100', '24'), (6075, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '450', '1200', '3', '104', 'nrec', 'ece', '83', '100', '0'), (6076, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '146', '307', '3.5', '100', 'Jain University', 'Electronics & Communication', '71.14', '100', '0'), (6077, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '141', '300', '2.5', 'None', 'JNTU', 'CSE', '78', '100', '0'), (6078, '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2013', '159', '150', '309', '3', '92', 'RTU', 'IT', '62', '100', '0'), (6079, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (6080, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '150', '308', '4', '101', 'VTU', 'Electronics & Communication', '69.5', '100', '0'), (6081, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '610', '1400', '3', '98', 'NIT Warangal', 'Electronics and Communication Engineering', '7.64', '10', '0'), (6082, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '99', 'MU', 'EE', '72', '100', '0'), (6083, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (6084, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '152', '152', '304', '3', '83', 'VTU', 'Mechanical', '70', '100', '0'), (6085, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (6086, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '165', '149', '314', '3', 'None', 'KLEF UNIVERSITY', 'EEE', '7.01', '10', '0'), (6087, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (6088, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '159', '146', '305', '3', '95', 'D j Sanghvi', 'Biomedical engineering', '3.5', '4', '0'), (6089, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3.5', 'None', 'Manipal Institue of Technology', 'ECE', '8.53', '10', '0'), (6090, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '540', '1270', '4', '98', 'MU', 'Computer', '63.2', '100', '0'), (6092, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '140', '301', '2.5', '99', 'VTU', 'ECE', '9.53', '10', '12'), (6093, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (6094, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '147', '309', '4', '104', 'Anna University', 'EIE', '8.03', '10', '0'), (6095, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '105', 'SASTRA', 'B.tech Mechatronics', '8', '10', '18'), (6096, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '3.5', '93', "Siksha 'O' Anusandhan University", 'Electrical and Electronics Engineering', '8.32', '10', '30'), (6097, '6', 'Reject', 'MS', 'CS', 'Fall ', '2015', '157', '162', '319', '4', '105', 'Nirma Institute of Technology', 'Computer Engineering', '8.06', '10', '24'), (6098, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '150', '306', '3', '104', 'Pune University', 'Electrical Engineering', '59.39', '100', '0'), (6099, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '141', '300', '3', 'None', 'RMK Engineering College', 'Electronics and Communication', '76', '100', '0'), (6100, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '157', '323', '4', '113', 'DDU', 'EC', '65.2', '100', '0'), (6101, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (6102, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '152', '309', '3', '105', 'PICT', 'Information Technology', '73.53', '100', '0'), (6103, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'VTU', 'ECE', '76.2', '100', '0'), (6104, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '162', '152', '314', '2.5', '100', 'ANU', 'ECE', '74.7', '100', '0'), (6105, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '160', '159', '319', '4.5', '110', 'Anna University', 'ECE', '86', '100', '0'), (6106, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (6107, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3.5', '102', 'Mepco Schlenk Engineering College', 'Computer Science', '8.21', '10', '0'), (6109, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '65', '100', '0'), (6110, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '157', '318', '3', '101', 'VNR VJIET', 'Computer Science', '68.21', '100', '0'), (6112, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '136', '300', '2.5', '85', 'GITAM', 'CSE', '7.87', '10', '0'), (6113, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '146', '314', '3', '103', 'Keio', 'electrical engineering', '3.6', '4', '96'), (6114, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '161', '144', '305', 'None', '96', 'Vasavi College of Engineering', 'it', '75', '100', '0'), (6115, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6116, '6', 'Reject', 'MS', 'microelectronics', 'Spring ', '2012', '750', '380', '1130', '3.5', '80', 'MBM Jodhpur India', 'ECE', '71', '100', '0'), (6118, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '169', '148', '317', '3', '104', 'NIT Tirchy', 'Electronics and Communication', '7.77', '10', '36'), (6119, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'BNMIT', 'Electronics and communication', '71.5', '100', '0'), (6120, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (6121, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '155', '312', '3.5', '108', 'Thiagarajar College of engineering', 'ECE', '8.4', '10', '0'), (6122, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '161', '154', '315', '3', '96', 'VTU', 'EC', '67', '100', '0'), (6123, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (6124, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '100', 'RNSIT', 'Electronics', '76', '100', '17'), (6125, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3.5', '104', 'S.J.B. Institute of Technology', 'Information Science and Engineering', '74.5', '100', '24'), (6126, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '148', '309', '3', '90', 'BITS Dubai', 'ECE', '7.7', '10', '0'), (6127, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '163', '149', '312', '3', '109', 'CBIT', 'Ece', '75', '100', '0'), (6128, '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '150', '309', '4', '110', 'VIT University', 'School of Mechanical and Building Sciences', '7.64', '10', '13'), (6129, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (6131, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (6132, '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '158', '153', '311', '3.5', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science Engg', '72', '100', '0'), (6133, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '144', '305', '3', '93', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.75', '10', '0'), (6134, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '430', '1140', '3', '95', "St Joseph's College of Engineering", 'cse', '70', '100', '0'), (6135, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (6136, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (6138, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '148', '313', '3', '94', 'BITS Pilani', 'Electronics and Instrumentation', '5.81', '10', '0'), (6139, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '147', '303', '3', '85', 'UPTU', 'Computer Science', '71.44', '100', '0'), (6140, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '158', '321', '3.5', '111', 'VTU', 'Electronics and Communication', '8.2', '10', '32'), (6141, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '163', '149', '312', '3', '91', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Tele-communication', '7.93', '10', '0'), (6142, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '97', 'SJCE', 'Electronics and Communication', '63', '100', '0'), (6143, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (6144, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6145, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '147', '311', '3', '94', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics & Communication', '8.91', '10', '20'), (6146, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6147, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '600', '1300', '4', '106', 'Amrita School of Engineering', 'Electronics & Communication', '7.56', '10', '0'), (6148, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (6149, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '151', '313', '3.5', '112', 'VTU', 'ECE', '74.16', '100', '58'), (6150, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '163', '152', '315', '3', '104', 'Anna University', 'Electronics and Communication Engineering', '9.28', '10', '36'), (6151, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (6152, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '155', '319', '3.5', '110', 'MGIT JNTU', 'ECE', '75.2', '100', '0'), (6153, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '800', '490', '1290', '3', 'None', 'NIT Warangal', 'eee', '7.92', '10', '0'), (6154, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '158', '147', '305', '3', '101', 'UVCE', 'ECE', '81.57', '100', '0'), (6155, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '149', '305', '3.5', '97', 'RNSIT', 'Computer Science & Engineering', '81', '100', '0'), (6156, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '152', '317', '3', '107', 'DA-IICT', 'Information and Communication Technology', '7.15', '10', '12'), (6157, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '3', '104', 'University of Madras', 'EEE', '81', '100', '0'), (6158, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3', '103', 'Punjab Technical University', 'CSE', '75', '100', '0'), (6159, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '154', '316', '3.5', '110', 'Jamia Millia Islamia', 'Electronics and Communication', '9.37', '10', '0'), (6160, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (6161, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '156', '147', '303', '4', '90', 'Velammal Engineering College', 'Department of Electronics and Instrumentation', '3.96', '5', '0'), (6162, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (6163, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3', '104', 'Jamia Millia Islamia', 'Computer Engineering', '7.23', '10', '0'), (6164, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '620', '530', '1150', '4', '103', 'Pune University', 'Information technology', '63', '100', '0'), (6165, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '153', '319', '4', '105', 'GLA Institute of Technology and Management', 'Electronics and Communication Engineering', '73', '100', '0'), (6166, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '150', '304', '3', '91', 'VTU', 'Electronics and Communication', '73', '100', '0'), (6167, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '159', '327', '4', '110', 'UPTU', 'ECE', '73.68', '100', '0'), (6169, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2016', '161', '147', '308', '4', '105', 'JNTU', 'ECE', '81.6', '100', '0'), (6170, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (6171, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '700', '530', '1230', '3.5', '104', 'None', 'Information Technology', '0', '100', '0'), (6172, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (6173, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (6174, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '145', '308', '3', '92', 'VTU', 'Electronics and Communication', '73.38', '100', '0'), (6175, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (6176, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '3.5', '103', 'Manipal Institue of Technology', 'Computer Science', '8.54', '10', '16'), (6177, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', 'None', '99', 'Global Academy Of Technology', 'Electronics and Communication', '72.83', '100', '0'), (6178, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '154', '318', '4', '108', 'UPTU', 'Electronics and Communication Engineering', '74.2', '100', '39'), (6179, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (6180, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (6181, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3.5', '107', 'BIT Mesra', 'Computer Science Engineering', '7.42', '10', '0'), (6182, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (6183, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '167', '159', '326', '4.5', '117', 'BVDU', 'Electronics & Telecommunication', '63', '100', '0'), (6185, '6', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '3', '102', 'GITAM', 'E C E', '7.4', '10', '0'), (6186, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '470', '1210', '3', '110', 'Bharati Vidyapeeth', 'ECE', '67', '100', '0'), (6187, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '2.5', '89', 'PESIT', 'Telecommunication', '65', '100', '0'), (6188, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', 'None', 'None', 'PSG College of Technology', 'Computer Science', '7.97', '10', '0'), (6189, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (6190, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '156', '317', '3', '94', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'computer science', '8.32', '10', '0'), (6191, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '158', '145', '303', '3.5', '95', 'VTU', 'E&C;', '84.55', '100', '0'), (6192, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '149', '313', '3.5', '100', 'SRM', 'eee', '8.637', '10', '0'), (6193, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '148', '306', '3', '100', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (6194, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '157', '145', '302', '3.5', '99', 'None', '0', '82', '100', '0'), (6195, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '153', '313', '4', '108', 'VTU', 'Electrical and electronics', '70', '100', '0'), (6196, '6', 'Reject', 'MS', 'Project Management', 'Fall ', '2014', '158', '148', '306', '3', '93', 'I.T.S. Engineering College- Gautam Buddha Tech University', 'Mechanical Engineering', '66.6', '100', '0'), (6197, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '154', '144', '298', 'None', '89', 'VTU', 'ECE', '78', '100', '0'), (6198, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '550', '1270', '3', '90', 'Madras Institute of Technology', 'ECE', '8.9', '10', '0'), (6199, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '146', '307', '3', '94', 'BITS Pilani', 'Msc Tech. Information Systems', '6.12', '10', '0'), (6200, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '550', '1290', '3.5', '95', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '65.64', '100', '0'), (6201, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (6202, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (6203, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '3.5', '110', 'St. Peters University', 'computer science', '8.5', '10', '17'), (6204, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (6205, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '156', '322', '3.5', '109', 'Anna University', 'Electrical & Electronics Engineering', '7.79', '10', '0'), (6206, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '160', '146', '306', '3.5', '102', 'None', 'Computer Science', '76.6', '100', '27'), (6207, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (6208, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '161', '145', '306', '3', '89', 'Rajasthan University', 'Electronics and Communication Engineering', '72', '100', '55'), (6209, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '530', '1230', '3', '95', 'SSN College of Engineering', 'EEE', '80', '100', '0'), (6210, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '148', '314', '3', '100', 'Pune University', 'Electronics & Telecom', '70', '100', '0'), (6211, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '145', '305', '3', '95', 'CBIT', 'CSE', '78.4', '100', '12'), (6212, '6', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (6213, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '157', '318', '3.5', 'None', 'IIT Kanpur', 'Industrial (M.tech)', '9.5', '10', '0'), (6214, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '450', '1250', '4', '109', 'Coimbatore Insitute of Technology', 'EEE', '8.22', '10', '0'), (6215, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (6216, '6', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6217, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '4', '100', 'CMRIT', 'Telecommunication', '77', '100', '0'), (6218, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '166', '328', '5', '119', 'SRM', 'EEE', '8.2', '10', '0'), (6219, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '151', '321', '4', '105', 'BITS Pilani', 'BE(Hons). Mechanical', '6.55', '10', '0'), (6220, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '490', '1290', '3', '102', 'MU', 'Mechanical', '55', '100', '0'), (6221, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (6222, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '161', '148', '309', '3.5', 'None', 'MU', 'Computer', '68', '100', '0'), (6223, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (6224, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '142', '307', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'computer Science and Engineering', '78', '100', '0'), (6225, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '148', '308', '3', '100', 'Nagpur University', 'ELECTRONICS', '65', '100', '0'), (6226, '6', 'Reject', 'MS', 'Computer Science and Engineering', 'Fall ', '2015', '162', '157', '319', '3', '114', 'JSS Noida', 'ECE', '61.1', '100', '24'), (6227, '6', 'Reject', 'MS', 'MIS', 'Spring ', '2015', '159', '157', '316', '4', '116', 'UPTU', 'CSE', '70.24', '100', '24'), (6228, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '141', '298', '3', '92', 'MDU', 'ECE', '70', '100', '0'), (6229, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6230, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '153', '316', '3', 'None', 'Jaypee Institute of Information Technology', 'IT', '75', '100', '17'), (6231, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (6232, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '106', 'MU', 'Computer Engineering', '62', '100', '0'), (6233, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '155', '316', '4', '104', 'NIT Calicut', 'Electronics and Communication Engineering', '6.8', '10', '0'), (6234, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '560', '1350', '3', 'None', 'VIT University', 'ECE', '8', '10', '0'), (6235, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '740', '600', '1340', '3.5', '103', 'JNTU', 'Computer science', '69', '100', '0'), (6236, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '159', '143', '302', '3', 'None', 'JNTU', 'Electronics and Communication', '75.2', '100', '27'), (6237, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (6238, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '106', 'Pune University', 'Computer Engg.', '60.23', '100', '0'), (6239, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '151', '321', '4', '103', 'NITK Surathkal', 'EEE', '6.72', '10', '0'), (6240, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '147', '315', '3', '91', 'Gujarat Technological University', 'Computer Engineering', '7.96', '10', '29'), (6241, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '168', '145', '313', '3', '93', 'NIT', 'ECE', '7.45', '10', '28'), (6242, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '520', '1260', '3', '99', 'MSRIT', 'E&C;', '74', '100', '0'), (6243, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (6244, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '143', '303', '2.5', '87', 'Sardar Vallabhbhai National Institute of Technology', 'Computer Engineering', '7.86', '10', '0'), (6245, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '111', 'Pune University', 'Electronics and Telecommunication', '68', '100', '0'), (6246, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (6247, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '147', '309', '3.5', '99', 'VTU', 'Electroncis and communication', '72', '100', '0'), (6248, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6249, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '4', 'None', 'National Institute of Engineerint VTU', 'Information Science', '0', '0', '0'), (6250, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '93', 'MAIT GGSIPU', 'Electrical and Electronics Engineering', '71.07', '100', '0'), (6251, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', '106', 'MU', 'IT', '58', '100', '0'), (6252, '6', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (6253, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '148', '308', '2.5', '103', 'Anna University', 'Instrumentation and Control', '8.7', '10', '0'), (6254, '6', 'Reject', 'MS', 'Construction Management', 'Fall ', '2014', '168', '149', '317', '4', 'None', 'IIT Roorkee', 'Architecture and Planning', '6.22', '10', '61'), (6255, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '154', '314', '4.5', '104', 'NIT Warangal', 'Electronics & Communication Engineering', '7.3', '10', '0'), (6256, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (6257, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '600', '1360', '3.5', 'None', 'Shri Vaishnav Institute of Science and Technology Indore', 'Electronics and communication', '66.34', '100', '0'), (6258, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '153', '315', '3', '99', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communications', '8.52', '10', '0'), (6259, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (6260, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '148', '307', '3', 'None', 'Vignan Institute of Technology and Science', 'School of Electronics', '86', '100', '0'), (6261, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '153', '316', '3.5', '110', 'Anna University', 'Electronics and Communication', '81.5', '100', '0'), (6262, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '141', '304', '3', '87', 'JNTU', 'Information Technology', '81', '100', '20'), (6263, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '3.5', '102', 'Anna University', 'ece', '71', '100', '0'), (6264, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '13', '163', '153', '316', '4', '109', 'University of Pune', 'E&C;', '69.5', '100', '0'), (6265, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (6266, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (6267, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '4', '100', 'Rajasthan Technical University', 'Electronics Instrumentation & Control Engg', '67', '100', '0'), (6268, '6', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (6269, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '164', '147', '311', '3', '95', 'GVP Vishakapatnam', 'Information Technology', '71', '100', '0'), (6270, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2016', '162', '156', '318', '3.5', '105', 'Maharishi Dayanand University', 'Electronics And Communication', '69', '100', '0'), (6271, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '115', 'VJTI', 'ELECTRICAL', '7.3', '10', '0'), (6272, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (6273, '6', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2010', '780', '610', '1390', '4', '106', 'Crescent Engineering College', 'Electrical and Electronics', '67', '100', '0'), (6274, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '530', '1290', '3.5', '100', 'VIT', 'electronics and communication', '8.07', '10', '0'), (6275, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '770', '370', '1140', '3.5', '99', 'Anna University', 'EIE', '74', '100', '0'), (6276, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '147', '306', '3.5', '96', 'University of Mumbai', 'Electronics and Telecommunication', '58', '100', '0'), (6277, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '150', '313', '3', '103', 'NIT Surathkal', 'Computer Science', '7.1', '10', '0'), (6278, '6', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6279, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '610', '1410', '4.5', '270', 'MSRIT', 'CSE', '75', '100', '0'), (6281, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', 'None', 'Thapar University', 'ECE', '8.8', '10', '0'), (6282, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '4', '108', 'MU', 'Computer Engnineering', '61', '100', '0'), (6283, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '153', '313', '4.5', '110', 'School of Engineering and Technology - Jain University Bangalore', 'Electronics and Communications', '76.14', '100', '6'), (6284, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '145', '301', '3', '94', 'Mahrishi Dayanand University', 'Electrical', '68', '100', '0'), (6285, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '3.5', '99', 'Coimbatore Insitute of Technology', 'CSE', '7.5', '10', '0'), (6286, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '141', '301', '3.5', '95', 'SSN College of Engineering', 'ECE', '8.16', '10', '0'), (6287, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '150', '309', '3', '105', 'Madras Institute of Technology', 'Information Technology', '7.3', '100', '0'), (6288, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6289, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '152', '321', '2', '101', 'BITS Pilani', 'ELECTRONICS & COMMUNICATIONS', '8.58', '10', '0'), (6290, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3', '100', 'Institute of Technical Education and Research', 'Computer Science', '7.35', '10', '0'), (6291, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '560', '1360', '3', '90', 'IIIT Hyderabad', 'Computer Science', '6.46', '10', '0'), (6292, '6', 'Reject', 'MS', 'Subsea Engineering', 'Fall ', '2014', '168', '147', '315', '2.5', '97', 'Panjab University', 'Mechanical', '76', '100', '20'), (6293, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (6294, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (6295, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '155', '314', '3.5', '106', 'West Bengal University Of Technology', 'Computer Science and Engineering', '7.84', '10', '20'), (6296, '6', 'Reject', 'MS', 'Biomedical Engineering', 'Spring ', '2013', '760', '470', '1230', '3', '102', 'SRM', 'Biomedical Engineering', '7.912', '10', '0'), (6297, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (6298, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6299, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '890', '450', '1340', '3', '103', 'SVCE', 'IT', '70', '100', '0'), (6300, '6', 'Reject', 'MS', 'software engineering', 'Spring ', '2013', '720', '350', '1070', 'None', '104', 'MU', 'Masters of Engg I.T.', '71', '100', '0'), (6301, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (6302, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '101', 'BPUT', 'EEE', '8.57', '10', '0'), (6303, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '158', '317', '3.5', '115', 'COEP', 'E&TC;', '6.37', '10', '14'), (6304, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '106', 'Maharishi Dayanand University', 'ECE', '70', '100', '0'), (6305, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '162', '149', '311', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communications Engg.', '7.54', '10', '0'), (6306, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '146', '309', '3.5', '102', 'Pune University', 'Mechanical Engineering', '70', '100', '0'), (6307, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '150', '312', '3.5', '96', 'Manipal Institue of Technology', 'ECE', '8.85', '10', '0'), (6308, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '460', '1240', '3.5', '104', 'Sinhgad College of Engineering', 'Computer Science', '65', '100', '0'), (6309, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '95', 'Fr. Conceicao Rodrigues College of Engineering', 'Information Technology', '65.32', '100', '0'), (6311, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '158', '156', '314', '4', '113', 'MU', 'Chemical Engineering', '56.45', '100', '25'), (6312, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (6313, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '156', '316', '3', '98', 'MU', 'Elecronics and Telecommunication', '64', '100', '0'), (6315, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '160', '150', '310', '3', '105', 'M N M jain Engineering College', 'Electronics and Communication', '70', '100', '0'), (6316, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '145', '300', '3.5', '98', 'CMRIT', 'Electronics and Communication', '79.3', '100', '0'), (6317, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '3', '100', 'NMAM Institute of Technology Nitte', 'Electronics and Communication', '9.09', '10', '40'), (6318, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '156', '157', '313', '3', '108', 'Walchand College Of Engineering', 'Electronics and Telecommunications', '69.4', '100', '9'), (6319, '6', 'Reject', 'MS', 'MEMS & NANOTECHNOLOGY', 'Fall ', '2012', '730', '560', '1290', '4', '112', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Communication', '8.94', '10', '0'), (6320, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3.5', '105', 'PEC University of Technology', 'Electrical Engineering', '7.6', '10', '0'), (6322, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '162', '317', '4', '112', 'BITS Dubai', 'Electronics and Communication Engineering (ECE)', '8.81', '10', '0'), (6323, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '87', 'VIT Pune', 'Mech Engg', '65', '100', '0'), (6324, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '152', '312', '3', 'None', 'Sri Sairam Engineering College', 'Electronics and Communication Engineering', '7.4', '10', '0'), (6325, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '3', '100', 'Pune University', 'Computer Science', '64', '100', '0'), (6326, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', '3', '102', 'Govind Ballabh Pant Engg College', 'Electronics and Communication', '72', '100', '29'), (6327, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '100', 'BITS Pilani', 'Electrical and Electronics', '7.88', '10', '0'), (6329, '6', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6330, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '149', '305', '3', '8', 'SASTRA', 'EEE', '8.13', '10', '0'), (6331, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '550', '1330', '3', '98', 'RGTU', 'EC', '73', '100', '0'), (6332, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (6333, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '670', '390', '1060', '3', '108', 'VTU', 'Computer Science', '74.5', '100', '0'), (6334, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (6335, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (6336, '6', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2013', '166', '159', '325', '4', '115', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information and Communication Technology', '6.56', '10', '0'), (6337, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '440', '1180', '3.5', '94', 'Amrita Vishwa Vidhyapeetham', 'Electronics & Communication', '7.3', '10', '0'), (6338, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '152', '312', '3', '102', 'nit raipur', 'electrical', '7.12', '10', '0'), (6339, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '400', '1200', '2.5', '100', 'VIT University', 'ECE', '8.51', '10', '0'), (6340, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '720', '450', '1170', '4', '108', 'Anna University', 'Computer Science and Engg.', '7.04', '10', '0'), (6341, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '166', '158', '324', '3', '95', 'Vignan Institute of Technology and Science', 'electronics and communications', '70.6', '100', '0'), (6342, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '4', '112', 'Sri Jayachamarajendra College of Engineering', 'Electronics and comm', '77', '100', '0'), (6343, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '153', '315', '3', 'None', 'RGPV', 'Mechanical', '68', '100', '0'), (6345, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '152', '316', '3.5', '101', 'Ambedkar Institute of technology', 'ECE', '77.77', '100', '0'), (6346, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '3', '97', 'Jaypee Institute of Information Technology', 'Computer Science', '78', '100', '30'), (6347, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (6348, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '148', '311', '3', '99', 'SVITS', 'CSE', '65', '100', '30'), (6349, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '155', '321', '2.5', '109', 'NIT ALLAHABAD', 'ece', '7.86', '10', '66'), (6350, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '153', '311', '3', '103', 'Amity University', 'CSE', '7.2', '10', '0'), (6351, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', '97', 'PESIT', 'IS', '66.48', '100', '0'), (6352, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (6353, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (6354, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall', 'None', '159', '145', '304', '4.5', '100', 'VTU', 'mechanical', '72', '100', '0'), (6355, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '145', '308', '3', '89', 'CET Odisha', 'CSE', '8', '10', '0'), (6356, '6', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '149', '316', '3.5', '101', 'Biju Patnaik University of Technology', 'Electrical and Electronics engineering', '7.86', '10', '0'), (6357, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', '4', '119', 'University of Pune', 'InformationTechnology', '62', '100', '0'), (6358, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '770', '580', '1350', '4', '270', 'University of Mumbai', 'Computer Engineering', '59.5', '100', '0'), (6359, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (6360, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (6361, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '149', '310', '3', '95', 'Pune University', 'Computer Engg.', '65.15', '100', '0'), (6362, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '156', '145', '301', '3.5', '105', 'JNTU', 'CSE', '73.2', '100', '0'), (6363, '6', 'Reject', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (6364, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (6365, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6367, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '152', '319', '3', '111', 'Sardar Patel College of Engineering', 'Mechanical', '68', '100', '14'), (6368, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (6369, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '520', '1320', '4.5', '273', 'SPCE', 'Electrical', '65', '100', '0'), (6370, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '630', '1410', '3', '100', 'Sathyabama University', 'ECE', '75', '100', '0'), (6371, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '160', '155', '315', '3.5', '106', 'M.V.S.R Engineering College', 'Electronics and Communication', '78.5', '100', '0'), (6372, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '94', 'JNTU', 'CSE', '68', '100', '0'), (6373, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (6374, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '620', '1340', '3.5', '96', 'SRM', 'Computer Science', '9.35', '10', '0'), (6375, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '159', '152', '311', '3.5', 'None', 'Anna University', 'ECE', '74', '100', '0'), (6376, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (6377, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (6378, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '152', '308', '3', '101', 'Anna University', 'Electronics and Communication Engineering', '7.6', '10', '0'), (6379, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '150', '153', '303', '3.5', '99', 'JNTU', 'electronics and instrumentation', '75', '100', '0'), (6380, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '153', '147', '300', '4', 'None', 'Amrita School of Engineering', 'ECE', '6.33', '10', '0'), (6381, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '550', '1270', '3', '81', 'Anna University', 'Computer Science and Engineering', '80', '100', '0'), (6382, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (6383, '6', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '159', '148', '307', '4', '103', 'SRM', 'ECE', '8.06', '10', '0'), (6384, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '154', '315', '3', '105', 'VTU', 'Telecommunication', '7.82', '10', '0'), (6385, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '4', '114', 'VTU', 'Information Science', '60', '100', '0'), (6386, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '160', '326', '4', '110', 'IIITDM-Jabalpur', 'Mechanical', '6.9', '10', '4'), (6387, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '147', '313', '3', '86', 'Pune University', 'e&tc;', '8.66', '10', '0'), (6388, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '146', '306', '3', '104', 'University of Pune', 'Electronics and Telecommunicatio', '71', '100', '0'), (6389, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '149', '304', '3.5', '110', 'VTU', 'Computer Science', '78', '100', '0'), (6390, '6', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2014', '164', '159', '323', '4', '115', 'CUSAT', 'ECE', '65.23', '100', '6'), (6391, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '144', '302', '3', 'None', 'MREC(JNTUH)', 'ECE', '79', '100', '0'), (6392, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6393, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (6394, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '151', '317', '4', '107', 'PESIT', 'Electronics and Communication Engineering', '7.7', '10', '28'), (6395, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (6396, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (6397, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '161', '318', '3', '95', 'Pune University', 'ECE', '7.35', '10', '0'), (6398, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (6399, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '3.5', '89', 'GITAM', 'ELECTRONICS AND COMMUNICATION', '8.36', '10', '0'), (6400, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '460', '1250', '3', '93', 'Coimbatore Insitute of Technology', 'CSE', '7.87', '10', '0'), (6402, '6', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2011', '800', '580', '1380', '4', '114', 'NITK Surathkal', 'Electrical & electronics', '6.99', '10', '0'), (6403, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '440', '1200', '3', '90', 'NITK Surathkal', 'Computer Engineering', '71', '100', '0'), (6404, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (6405, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '750', '520', '1270', '5', '114', 'PESIT', 'CS', '76', '100', '0'), (6406, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (6407, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6408, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '600', '1360', '4', '104', 'JNTU', 'cs', '72', '100', '0'), (6409, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '106', 'SASTRA', 'ECE', '7.4', '10', '0'), (6411, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '720', '560', '1280', '4', '110', 'Imperial college of Engineering and research Pune', 'E&TC;', '67', '100', '0'), (6412, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '152', '310', '5', '109', 'Sathyabama University', 'EEE', '8.07', '10', '0'), (6413, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '147', '308', '3', '97', 'Dayananda Sagar College of Engineering', 'Telecommunication', '75', '100', '0'), (6414, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (6415, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '138', '300', '3', '87', 'Gujarat Technological University', 'Electronics and Communication', '8.05', '10', '0'), (6416, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6417, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '710', '370', '1080', '3.5', '100', 'Pune University', 'Electronics Engineering', '58.13', '100', '0'), (6418, '6', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2013', '163', '153', '316', '3', '104', 'BNMIT', 'ECE', '80', '100', '0'), (6419, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '570', '1300', '3.5', '103', 'MU', 'EXTC', '3.4', '4', '0'), (6420, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '2.5', '101', 'Kakatiya University', 'ece', '70.1', '100', '0'), (6421, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '780', '520', '1300', '3', '277', 'K J Somaiya College of Engiineering', 'Computer Engineering', '53', '100', '0'), (6422, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4', '102', 'MU', 'Computer Science', '63', '100', '0'), (6423, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (6424, '6', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (6425, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '610', '1410', '3', '107', 'University of Mumbai', 'Computer Engineering', '61.4', '100', '24'), (6426, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '162', '157', '319', '3', '104', 'MU', 'Information Technology', '58', '100', '15'), (6427, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '162', '329', '4.5', '115', 'Datta Meghe College of Engineering', 'Electronics', '59.4', '100', '0'), (6428, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6429, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '164', '158', '322', '4', '108', 'Gujarat Technological University', 'Computer Engineering', '7.71', '10', '0'), (6430, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (6431, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '149', '313', '3', '109', 'MU', 'Instrumentation', '63.2', '100', '0'), (6433, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (6434, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '155', '149', '304', '3', '89', 'PSG College of Technology', 'Mechanical Engineering', '7.96', '10', '0'), (6435, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '157', '151', '308', 'None', '95', 'VTU', 'EEE', '67', '100', '22'), (6436, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '800', '500', '1300', '4', '283', 'University of Kerala', 'Electronics & Communication', '77', '100', '0'), (6437, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '152', '154', '306', '3', '108', 'Sri Krishna College Of Engineering And Technology', 'ECE', '7.6', '10', '0'), (6438, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '490', '1220', '3', '102', 'VTU', 'Electronics and Communication', '66', '100', '0'), (6439, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (6440, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '151', '319', '3', '99', 'Nirma Institute of Technology', 'Eletronics and Communication', '7.52', '10', '0'), (6441, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (6442, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '106', 'RGPV', 'I.T', '67', '100', '0'), (6443, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (6444, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '151', '311', '3', '101', 'GITAM', 'ECE', '8.63', '10', '0'), (6445, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '100', 'CVRCE', 'Electronics and Instrumentation', '70.01', '100', '0'), (6446, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '2.5', '106', 'Jaypee Institute of Information Technology', 'Computer Science & Engineer', '6.8', '10', '0'), (6447, '6', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '165', '154', '319', '4', '110', 'Pune University', 'Computer', '53', '100', '0'), (6448, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (6449, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '158', '319', '3.5', '102', 'Amrita School of Engineering', 'EEE', '7.55', '10', '41'), (6450, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '153', '319', '4', '106', 'VTU', 'Electronics & Communication', '84', '100', '24'), (6451, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '156', '319', '3', '107', 'VTU', 'Electronics & Communication', '81.5', '100', '24'), (6452, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '3', 'None', 'JNTU', 'ELECTRONICS & COMMUNICATION ENGINEERING', '73', '100', '0'), (6453, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (6454, '6', 'Reject', 'MS', 'energy', 'Fall ', '2012', '159', '144', '303', '3', '86', 'G.B.P.U.A.T Pantnagar', 'Electrical', '7.87', '10', '0'), (6455, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '103', 'JNTU', 'CSE', '70', '100', '0'), (6456, '6', 'Reject', 'MS', 'Computer Networks', 'Fall ', '2013', '162', '154', '316', '4.5', '112', 'VTU', 'Telecommunication', '81.059', '100', '0'), (6457, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '166', '158', '324', '4', '115', 'VTU', 'Electronics & Communication', '74.06', '100', '25'), (6458, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '790', '580', '1370', '2.5', '102', 'SRM', 'Computer Science', '8', '10', '0'), (6459, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '146', '308', '3.5', '96', 'MU', 'Electronics', '67.15', '100', '0'), (6460, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (6461, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Information Science', '64', '100', '0'), (6462, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (6463, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '157', '325', '3.5', '105', 'Shri Vaishnav Institute Of Technology and Science', 'Electronics and Communication', '70', '100', '0'), (6464, '6', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2013', '164', '156', '320', '3', '109', 'Amrita School of Engineering', 'EIE(elec & instrumentation)', '7.36', '10', '0'), (6465, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '4', 'None', 'Don Bosco Institute of Technology', 'Infortmation Technology', '65', '100', '0'), (6466, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '145', '305', '3', '98', 'Anna University', 'ECE', '8.29', '10', '3'), (6467, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '164', '153', '317', '3', '102', 'JNTU', 'ECE', '74', '100', '0'), (6468, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '149', '312', '3', 'None', 'Amrita School of Engineering', 'EEE', '7.43', '10', '27'), (6469, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6470, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6471, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '149', '316', '3', '104', 'Jaypee Institute of Information Technology', 'CSE', '7.4', '10', '0'), (6472, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '160', '144', '304', '3.5', 'None', 'Reva Institute of Technology', 'Electronics and communication', '72', '100', '12'), (6473, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '93', 'Amrita School of Engineering', 'Electronic and Instrumentation', '8.01', '10', '0'), (6474, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '145', '308', '3', '94', 'LJIET', 'Mechanical', '6.69', '10', '0'), (6475, '6', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2012', '690', '630', '1320', '2.5', '89', 'MIT Pune', 'Mechanical Sandwich', '61.53', '100', '0'), (6476, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '115', 'NIT Karnataka', 'EEE', '6.76', '10', '0'), (6477, '6', 'Reject', 'MS', 'Information Assurance', 'Fall ', '2015', '151', '154', '305', '4', '96', 'Anna University', 'ECE', '7.18', '10', '29'), (6478, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '490', '1230', '3.5', '97', 'Vidyalankar Institute of Technology', 'ETRX', '62', '100', '0'), (6479, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '159', '147', '306', '3', '99', 'BVBCET', 'Electronics and Communication', '8.52', '10', '0'), (6480, '6', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6481, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '152', '314', '4', '107', 'MU', 'Electrical', '64', '100', '18'), (6482, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'SPCE', 'Electrical', '62', '100', '0'), (6483, '6', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Fall ', '2015', '160', '154', '314', '4', '112', 'MU', 'Instrumentation Engineeering', '65.55', '100', '0'), (6484, '6', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '146', '310', '3', '110', 'P.T.U.', 'ECE', '75', '100', '0'), (6485, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '680', '560', '1240', '3', '86', 'Coimbatore Insitute of Technology', 'EEE', '8.41', '10', '0'), (6486, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '161', '146', '307', '3.5', '105', 'Sri Venkateswara College of Engineering', 'ECE', '7.26', '10', '0'), (6487, '6', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (6488, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '740', '450', '1190', '3', 'None', 'MU', 'Electronics and Telecommunications', '70', '100', '27'), (6491, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '163', '158', '321', 'None', 'None', 'LNMIIT', 'ECE', '8.1', '10', '0'), (6492, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '141', '302', '3', 'None', 'U.P.T.U.', 'Electrical Engineering', '74.32', '100', '30'), (6493, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'VTU', 'Electronics and Communication', '72.75', '100', '0'), (6494, '6', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2006', '800', '650', '1450', '5', '287', 'Nirma Institute of Technology', 'ec', '73', '100', '0'), (6495, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '330', '1130', '3', '84', 'Velammal Engineering College', 'Information technology', '71', '100', '0'), (6496, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '147', '303', '3', '93', 'VTU', 'Electronics and Communication', '0', '0', '0'), (6497, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '3.5', '107', 'MU', 'Computer Engineering', '58', '100', '34'), (6498, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '3', '86', 'MU', 'Electronics And Telecommunication', '71', '100', '0'), (6499, '6', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2016', '156', '153', '309', '3.5', '107', 'VTU', 'Electronics and Communication', '67', '100', '57'), (6501, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (6502, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '97', 'Sri Sairam Engineering College', 'Instrumentation and Control Engineering', '7.82', '10', '0'), (6503, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (6504, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3.5', '109', 'MIT', 'Electronics', '6.5', '100', '0'), (6505, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '167', '152', '319', '3', '101', 'Jaypee Institute of Information Technology', 'ECE', '71', '100', '0'), (6506, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3.5', '104', 'D j Sanghvi', 'IT', '62', '100', '0'), (6507, '6', 'Reject', 'MS', 'physics', 'Fall ', '2013', '163', '156', '319', '3.5', '100', 'Guru Gobind Singh Indraprashta University', 'ECE', '72', '100', '0'), (6508, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '142', '305', '3', '89', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '7.01', '10', '0'), (6509, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '158', '158', '316', '4', '100', 'PICT', 'Information Technology', '3.56', '4', '33'), (6510, '6', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2008', '690', '320', '1010', '3.5', '250', 'Atharva College', 'Electronics and telecommunication', '67', '100', '0'), (6511, '6', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (6512, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '114', 'MU', 'Electronics and Telecommunication', '70', '100', '0'), (6513, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '143', '309', '3', '98', 'MSU', 'Computer Science', '3.64', '4', '24'), (6514, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '151', '317', '3.5', '101', 'CEG', 'Information Technology', '7.1', '10', '30'), (6515, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '147', '307', '3', '101', 'Anna University', 'EEE', '8', '10', '0'), (6516, '6', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '740', '580', '1320', '4', '104', 'MSRIT', 'Chemical Engineering', '7.67', '100', '0'), (6517, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '149', '319', '3.5', '111', 'Amrita School of Engineering', 'EIE', '7.7', '10', '0'), (6518, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '93', 'SASTRA', 'EEE', '8.36', '10', '0'), (6519, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '150', '309', '3', '96', 'VTU', 'ECE', '76', '100', '0'), (6520, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (6521, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '151', '311', '3', '88', 'JNTU', 'EE', '78', '100', '0'), (6522, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '141', '305', '3', '81', 'Vardhaman', 'ece', '69', '100', '0'), (6523, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '144', '300', '3.5', '94', 'B.S.A.Crescent Engineering College', 'Electrical and Electronics Engineering', '69', '100', '0'), (6525, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3', '89', 'Govt College of Engineering', 'Computer Science & Engineering', '71.125', '100', '0'), (6526, '6', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (6527, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '790', '690', '1480', '5', '300', 'Vidylankar Institute of Technology', 'Computer Engineering', '57', '100', '0'), (6528, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '155', '316', '3.5', '104', 'Sardar Patel University', 'Electronics', '7.47', '10', '53'), (6529, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '142', '300', '3', '94', 'MSRIT', 'TC', '8.1', '10', '0'), (6530, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (6531, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '147', '305', '3', '90', 'WBUT', 'Electrical Engineering', '8.71', '10', '0'), (6532, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (6533, '6', 'Reject', 'MS', 'Computer Engineering', 'Summer ', '2016', '163', '153', '316', '3.5', '102', 'IIIT Hyderabad', 'ECE', '8.4', '10', '0'), (6534, '6', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '780', '590', '1370', '3', '98', 'BITS Pilani', 'Electrical and Electronics', '7.1', '10', '0'), (6535, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '780', '540', '1320', '3.5', '105', 'MDU', 'Computer science', '66', '100', '0'), (6536, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '156', '317', '3', '97', 'Sir MVIT', 'Telecommunication', '68.3', '100', '0'), (6537, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '144', '307', '3', '95', 'JNTU', 'Electronics & Communications Engineering', '74.83', '100', '0'), (6538, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '153', '316', '3.5', '104', 'SVCE', 'Computer Science', '6.89', '10', '0'), (6539, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '148', '306', '3.5', '103', 'None', 'ECE', '8.18', '10', '0'), (6540, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '2.5', '91', 'Andhra University', 'E E E', '71', '100', '0'), (6541, '6', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '145', '303', '2.5', '105', 'None', 'IT', '7.57', '10', '0'), (6542, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '157', '319', '3', '116', 'MU', 'Mechanical', '63', '100', '0'), (6543, '6', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '159', '150', '309', '2.5', '87', 'JNTU', 'Mechanical engg', '65', '100', '0'), (6544, '6', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '142', '301', '3', 'None', 'SVNIT', 'Electrical Engineering', '6.92', '10', '0'), (6545, '6', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '152', '151', '303', '3', '98', 'University of Mumbai', 'Production Engineering', '71', '100', '24'), (6546, '6', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '550', '1350', '4.5', '115', 'BITS Hyderabad', 'Electronics and Communication Engineering', '6.5', '10', '0'), (6547, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '146', '309', '3.5', 'None', 'NMIMS', 'Electronics and Telecommunication', '3.55', '4', '0'), (6548, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '470', '1230', '3.5', '99', 'Panjab University', 'University Institute of Engineering and Technology', '70.5', '100', '0'), (6549, '6', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '460', '1200', '4', '104', 'Univ. of Mumbai', 'Electronics', '61', '100', '0'), (6550, '6', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2013', '166', '159', '325', '4', '113', 'Amrita Coimbatore', 'ECE', '7.73', '10', '0'), (6551, '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2018', '-1', '-1', '-1', '-1', '100', 'Jaypee University of Engineering and Technology', 'Computer Science', '77', '100', '24'), (6552, '6', 'Admit', 'MS', 'Software Engineering', 'Fall', '2017', '163', '145', '308', '4.5', '103', 'Anna University', 'Information Technology', '8.07', '10', '0'), (6553, '6', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', '2018', '150', '163', '313', '4', '98', 'SRM University', 'Mechanical Engineering', '9', '10', '0'), (6554, '7', 'Reject', 'MS', 'Computer Science', 'Fall', '2018', '150', '133', '283', '-1', '-1', 'VR Siddhartha engineering college', 'Computer Science', '7.88', '10', '0'), (6555, '7', 'Admit', 'MS', 'Engineering Management', 'Spring', '2017', '154', '135', '289', '2', '87', 'Kiit', 'Mechanical Engineering', '7', '10', '38'), (6556, '8', 'Admit', 'MS', 'Engineering Management', 'Fall', '2019', '156', '138', '294', '3.5', '-1', 'KL University', 'Chemical Engineering', '6.53', '10', '13'), (6557, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (6558, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '770', '460', '1230', '3', '105', 'fr.c.r.c.e.(bandra)', 'production engineering', '75.36', '100', '0'), (6559, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '162', '329', '4', '110', 'University of Pune', 'E&TC;', '63.75', '100', '0'), (6560, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (6561, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (6562, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '680', '1460', '4.5', '110', 'MIT University of Pune', 'Electronics and Telecommunication', '65', '100', '0'), (6564, '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2013', '163', '145', '308', 'None', '96', 'RNSIT', 'ECE', '75', '100', '0'), (6565, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'Assam Engineering College', 'Civil Engineering', '79.6', '100', '0'), (6566, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (6567, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '152', '320', '3', 'None', 'Osmania University', 'Mechanical', '71.2', '100', '22'), (6568, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '112', 'NIT Calicut', 'Mechanical Engineering', '7.9', '10', '48'), (6569, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '165', '145', '310', '3.5', '108', 'SVNIT', 'Electronics', '8.7', '10', '0'), (6570, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '153', '150', '303', '3.5', '106', 'None', '0', '0', '0', '0'), (6571, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '148', '314', '4', '102', 'Maharishi Dayanand University', 'ECE', '77.74', '100', '0'), (6572, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '420', '1210', '3', '93', 'K J Somaiya College of Engiineering', 'Mechanical', '66', '100', '0'), (6573, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '151', '315', '3.5', '112', 'Pune University', 'Mechanical Engineering', '56.9', '100', '12'), (6574, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '154', '317', '3.5', '114', 'PESIT', 'Information Science', '8.32', '10', '0'), (6575, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '160', '152', '312', '3.5', '110', 'VIT University', 'Mechanical Engineering', '8.25', '10', '0'), (6577, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'MU', 'Electronics', '57.8', '100', '37'), (6578, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '4', '116', 'Vishwakarma Institute of Technology', 'Mechanical Engineering', '9.47', '10', '22'), (6579, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '640', '1320', '4.5', '114', 'University of Pune', 'Computer Engineering', '65.44', '100', '0'), (6580, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '150', '306', '4', 'None', 'Anna University', 'Computer Science', '73', '100', '0'), (6581, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '150', '312', '3', '108', 'University of Petroleum and Energy Studies', 'Civil Engineering', '3.13', '4', '0'), (6582, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '158', '321', '4', '109', 'MU', 'Computer Engineering', '67', '100', '0'), (6583, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '640', '1340', '3', '109', 'Pune University', 'Computer Engineering', '2.9', '4', '0'), (6584, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '92', 'West Bengal University Of Technology', 'Automobile', '7.55', '10', '0'), (6585, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3.5', '105', 'VTU', 'Computer Science', '71', '100', '0'), (6586, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3', '102', 'MSRIT', 'Mechanical', '9.51', '10', '0'), (6587, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (6588, '9', 'Admit', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '164', '157', '321', '4.5', '114', 'MU', 'Electronics', '64.44', '100', '0'), (6589, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '520', '1310', '3.5', '273', 'Cochin University of Science and Technology', 'Computer Science', '74.5', '100', '0'), (6591, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '150', '320', '3', '105', 'BITS Pilani', 'Mechanical', '8.62', '10', '24'), (6592, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '152', '318', '3.5', '108', 'PESIT', 'Mechanical', '9.13', '10', '12'), (6593, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '164', '145', '309', '3', '95', 'Andhra University', 'Mechanical Engineering', '7.56', '10', '0'), (6594, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '149', '314', '3.5', '91', 'University of Pune', 'Mechanical Engineering', '59.3', '100', '0'), (6595, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '3', '96', 'Walchand College Of Engineering', 'IT', '7.66', '10', '29'), (6596, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '570', '1360', '3', 'None', 'YCCE', 'mechanical', '64', '100', '0'), (6597, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '370', '1170', '3', '102', 'PICT', 'IT', '65', '100', '0'), (6598, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3.5', '110', 'Sri Venkateswara College of Engineering', 'Mechanical', '7.2', '10', '0'), (6599, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'CEG', 'Mechanical engineering', '7', '10', '0'), (6600, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '163', '330', 'None', 'None', 'R V College of Engineering', '0', '8.63', '10', '0'), (6601, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (6602, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '147', '308', '3.5', '98', 'MU', 'Mechanical Engineering', '57', '100', '0'), (6603, '9', 'Admit', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2012', '161', '152', '313', '3.5', '97', 'NIT Nagpur', 'Mechanical', '6.9', '10', '0'), (6604, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '3.5', '109', 'COEP', 'Instrumentation and Control', '8.16', '10', '0'), (6605, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (6606, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '4', '114', 'GITAM', 'CS', '7.6', '10', '0'), (6607, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '780', '1570', '4.5', '107', 'University of Pune', 'Information technology', '58.5', '100', '0'), (6608, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '560', '1350', '3', '100', 'Panjab University', 'Mechanical Engineering', '65.63', '100', '0'), (6609, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (6610, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '155', '159', '314', '4', '114', 'SRM', 'Mechanical Engineering', '7.484', '10', '30'), (6611, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '159', '151', '310', '3.5', '98', 'SRKNEC', 'Electronics', '61', '100', '0'), (6612, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '160', '152', '312', '4', '101', 'MU', 'Mechanical Engg.', '68', '100', '0'), (6613, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '149', '314', '3', '95', 'RGPV', 'Mechanical Engineering', '7', '10', '0'), (6614, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '560', '1310', '3.5', '111', 'Anna University', 'EEE', '8.02', '10', '0'), (6615, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (6616, '9', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', '162', '149', '311', '3.5', '105', 'Anna University', 'Electronics and Instrumentation', '7.6', '10', '18'), (6617, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '4', '105', 'Pune University', 'E-tc', '57', '100', '0'), (6618, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '780', '520', '1300', '3', '98', 'SRM', 'ECE', '7', '10', '0'), (6619, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '166', '151', '317', '3.5', '103', 'Anna University', 'Mechanical', '86', '100', '0'), (6620, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '590', '1320', '3.5', '105', 'SRM', 'Mechanical Engineering', '9.2', '10', '0'), (6621, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '108', 'Anna University', 'Mathematics and Computer Applications', '8.79', '10', '0'), (6622, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '160', '155', '315', '4', '94', 'DTU', 'ECE', '63', '100', '0'), (6623, '9', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '700', '360', '1060', 'None', '105', 'Softvision College', 'Bioinformatics', '78', '100', '0'), (6624, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'Anna University', 'EEE', '6.45', '10', '0'), (6625, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '156', '142', '298', '3', '92', 'Pune University', 'Production Engineering', '0', '0', '0'), (6626, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '2.5', '97', 'VIT', 'IT', '8.79', '10', '0'), (6627, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '109', 'NIT Tirchy', 'Mechanical Engineering', '7.04', '10', '11'), (6628, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '650', '1400', '3.5', '104', 'SBMJCE', 'ECE', '65', '100', '0'), (6629, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '3.5', '111', 'Amrita Vishwa Vidhyapeetham', 'Electrical and Electronics Engineering', '7.21', '10', '0'), (6630, '9', 'Admit', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2014', '155', '158', '313', '3.5', '114', 'RMK Engineering College', 'ELECTRONICS AND INSTRUMENTATION', '8.4', '10', '0'), (6631, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '156', '322', '4', '108', 'Amrita School of Engineering', 'ECE', '7.86', '10', '18'), (6632, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '154', '321', '4', '103', 'LNMIIT', 'cs', '6.33', '10', '0'), (6633, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '740', '400', '1140', '4', '83', 'VIT', 'Mechanical', '7.44', '10', '0'), (6634, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '3', '104', 'UPTU', 'Computer Science', '67', '100', '0'), (6635, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '152', '316', '4', '100', 'GGSIPU', 'Mechanical and Automation Engineering', '77.7', '100', '0'), (6636, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '154', '312', '3', '109', 'GGSIPU', 'Computer Science', '78', '100', '0'), (6637, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', '3', '93', 'Pune University', 'IT', '64', '100', '0'), (6638, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (6639, '9', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '470', '1200', '3', '100', 'University of Pune', 'Chemical Engineering', '60', '100', '0'), (6640, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '500', '1250', '3.5', '112', 'VTU', 'Mechanical', '76.66', '100', '0'), (6641, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '590', '1390', '4.5', '108', 'Amrita School of Engineering', 'EIE', '7.45', '10', '0'), (6642, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '161', '156', '317', '4', 'None', 'BMSCE', 'Industrial Engineering', '71', '100', '0'), (6643, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '147', '310', '3', 'None', 'Osmania University', 'mechanical engineering', '87', '100', '1'), (6644, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '157', '312', '3.5', '110', 'R V College of Engineering', 'Instrumentation Technology', '9.42', '100', '0'), (6645, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '3', '101', 'NIT Alld', 'CSE', '7.7', '10', '48'), (6646, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '165', '149', '314', '3.5', '103', 'Rajasthan Technical University', 'Computer Science and Engineering', '73', '100', '0'), (6647, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '490', '1280', '3.5', '96', 'Rajiv Gandhi Prodyogiki Vishwavidyalaya', 'Information Technology', '81', '100', '0'), (6648, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'Rajiv Gandhi Institute Of Technology', 'MECHANICAL ENGINEERING', '63', '100', '0'), (6649, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2006', '800', '520', '1320', '4', '290', 'Crescent Engineering College', 'Mechanical Engineering', '76', '100', '0'), (6650, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '530', '1320', '4', '110', 'NIT Hamirpur', 'Electronics and communication', '7.56', '10', '0'), (6651, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', 'None', '93', 'ESPOL - ECU', 'Elect & Comput Science', '7.52', '10', '0'), (6652, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '149', '319', '3', '96', 'NIT Bhopal', 'CIVIL', '6.98', '10', '31'), (6653, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (6654, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (6655, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '440', '1220', '3', '104', 'JNTU', 'Computer Science', '66.27', '100', '0'), (6656, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '380', '1170', '3', '104', 'SVCE', 'CS', '77', '100', '0'), (6657, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '158', '327', '4', '109', 'Nanjing University', 'Software Institute', '82.9', '100', '0'), (6658, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '760', '490', '1250', '3.5', '97', 'JNTU', 'Computer Engg', '68', '100', '0'), (6659, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '151', '154', '305', '4', '115', 'Gurukula Kangri Vishwavidyalaya', 'Computer Science Engineering', '82.1', '100', '0'), (6660, '9', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '162', '156', '318', '4', '114', 'Techno India College of Technology Rajarhat (West Bengal University of Technology)', 'Electronics and Communication', '8.29', '10', '0'), (6661, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (6662, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '111', 'ITM University M.D.U. Rohtak', 'Mechanical', '8.28', '10', '0'), (6663, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '160', '156', '316', '4', 'None', 'None', 'ECE', '8.87', '10', '0'), (6664, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '530', '1320', '3', '114', 'Anna University', 'Mechanical Engineering', '8.1', '10', '0'), (6665, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '114', 'MU', 'IT', '72.4', '100', '0'), (6666, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '153', '312', '3.5', '107', 'Pune University', 'IT', '62', '100', '0'), (6667, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (6668, '9', 'Admit', 'MS', 'Architectural Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'JNAFAU HYDERABAD', '0', '0', '0', '0'), (6669, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '155', '323', '4', '110', 'MU', 'Mechanical engg.', '55', '100', '0'), (6670, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '150', '312', '4.5', '101', 'None', 'Mechanical Engineering', '8.2', '10', '0'), (6671, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '161', '322', '4', '112', 'SVNIT Surat', 'Mechanical', '8.3', '10', '0'), (6672, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '700', '540', '1240', '3', '99', 'Sri Venkateswara College of Engineering', 'Information Technology', '72', '100', '0'), (6673, '9', 'Admit', 'MS', 'Architecture', 'Fall ', '2015', '162', '157', '319', 'None', '115', 'MU', "Rachana Sansad\\'s Academy of Architecture Mumbai", '67.5', '100', '12'), (6674, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '154', '315', '3.5', '107', 'Goa University', 'Electronics & Telecommunications', '72', '100', '48'), (6675, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '3.5', '112', 'MU', 'Computer Engineering', '56', '100', '0'), (6676, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '580', '1380', '3.5', '107', 'NIT Durgapur', 'Electronics and Communication Engineering', '7.78', '10', '0'), (6677, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (6678, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '153', '310', '4', '108', 'VTU', 'Computer Science', '66', '100', '0'), (6679, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (6680, '9', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '164', '153', '317', '3', '91', 'Mepco Schlenk Engineering College', 'EEE', '8.51', '10', '0'), (6681, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '650', '1430', '3.5', '113', 'Fr.C.R.I.T. Vashi', 'Electronics and Tele Comm', '0', '0', '0'), (6682, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (6683, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '500', '1300', '3', '100', 'NIT Jaipur', 'Mechanical Engineering', '7.56', '10', '0'), (6684, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '155', '152', '307', '3.5', '91', 'VIT University', 'CSE', '8.34', '10', '0'), (6685, '9', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '142', '306', '3', '93', 'GMRIT', 'Mechanical', '78', '100', '0'), (6686, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2015', '163', '151', '314', '3', 'None', 'SRM', 'Civil Engineering', '8.82', '10', '0'), (6687, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '550', '1300', '3.5', '109', 'Coimbatore Insitute of Technology', 'CSE', '7', '10', '0'), (6688, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '157', '136', '293', '3.5', '87', 'RTM Nagpur University', 'Electrical Engg', '65.03', '100', '0'), (6689, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6690, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (6691, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4.5', '113', 'JNTU', 'ECE', '79', '100', '0'), (6692, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '154', '149', '303', '3', '7', 'MVGR College of Engg (JNTU-K)', 'Civil Engineering', '68.11', '100', '0'), (6693, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '168', '153', '321', '3', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.4', '10', '0'), (6694, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '690', '520', '1210', '3.5', '96', 'Koneru Lakshmaiah College of Engineering', 'Industrial & Production Engineering', '74', '100', '0'), (6695, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (6696, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '155', '315', '4.5', 'None', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (6697, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '370', '720', '1090', '3.5', '93', 'Osmania University', 'Mechanical', '0', '0', '0'), (6698, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '540', '1260', '3.5', '107', 'B N M Institute of Technology', 'ISE', '71.72', '100', '0'), (6699, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '158', '153', '311', '3.5', '103', 'VTU', 'Computer Science Engg', '70', '100', '0'), (6700, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '740', '470', '1210', '3', '87', 'Vishwakarma Institute of Technology', 'Industrial Engineering', '9.45', '10', '0'), (6701, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '510', '1250', '3', '102', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '64.59', '100', '0'), (6702, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '113', 'Govt Rajiv Gandhi Institute of Technology', 'ME', '78', '100', '0'), (6703, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (6704, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '155', '314', '4', '106', 'University of Mumbai', 'Computer Engineering', '55.74', '100', '0'), (6705, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '540', '1250', '3', '81', 'Thiagarajar College of engineering', 'Computer Science', '9.31', '10', '0'), (6706, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '153', '316', '3.5', '107', 'Sardar Patel University', 'mechanical engineering', '8.43', '10', '0'), (6707, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '144', '303', '3', '91', 'GITAM', 'Mechanical Engineering', '9.11', '10', '0'), (6708, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3', '103', 'Pune University', 'Information Technology', '68.92', '100', '0'), (6709, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '360', '1130', '3.5', '111', 'Anna University', 'Computer Science & Engg', '79', '100', '0'), (6710, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '380', '1170', '3.5', '101', 'RGPV', 'Information Technology', '76.16', '100', '0'), (6711, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '440', '1160', '4', '107', 'Pune University', 'Mechanical Engineering', '68.72', '100', '0'), (6712, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '4', '110', 'Government Engineering College Thrissur Kerala', 'Mechanical Engineering', '72.5', '100', '0'), (6713, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6714, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '530', '1250', '3.5', '101', 'Anna University', 'Mechanical Engineering', '80.5', '100', '0'), (6716, '9', 'Admit', 'MS', 'biosystems engineering', 'Fall ', '2011', '710', '650', '1360', '4', '104', 'SASTRA', 'biotechnology', '9.5', '10', '0'), (6717, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '570', '1250', '3.5', '106', 'MU', 'Information Technology', '65', '100', '0'), (6718, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '155', '147', '302', '3.5', '110', 'None', 'ECE', '81', '100', '0'), (6719, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'NIT Durgapur', 'CSE', '8.68', '10', '0'), (6720, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '96', 'COEP', 'IT', '7.05', '10', '0'), (6721, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '159', '145', '304', '3', '93', 'Ajalakshmi Engineering College', 'Automobile Engineering', '8.1', '10', '0'), (6722, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '160', '320', '4', '109', 'B M S College of Engineering', 'Computer Science and Engineering', '77.4', '100', '0'), (6723, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (6724, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'SSN College of Engineering', 'Mechanical Engineering', '8.99', '10', '0'), (6725, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', 'None', 'Anna University', 'Mechanical Engineering', '81', '100', '0'), (6726, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (6727, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '160', '146', '306', '3', 'None', 'Coimbatore Insitute of Technology', 'Mechanical', '9.15', '10', '0'), (6728, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '690', '500', '1190', '2.5', '89', 'AISSMS College of Engineering Pune', 'Civil', '64', '100', '0'), (6729, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '510', '1260', '3.5', '86', 'Anna University', 'Computer Science', '80.4', '100', '0'), (6730, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (6731, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '670', '430', '1100', '2.5', '100', 'SASTRA', 'Information and Communication Tech.', '6.6', '10', '0'), (6732, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (6733, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '168', '153', '321', '3', '102', 'NIT Surat', 'Production Engineering', '8.24', '10', '0'), (6734, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '156', '150', '306', '3', '100', 'Manipal Institue of Technology', 'MECHANICAL', '7', '10', '0'), (6735, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', 'None', '120', 'VTU', 'ECE', '73.71', '100', '0'), (6736, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (6737, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '151', '317', '3.5', '111', 'Amrita School of Engineering', 'Electrical Engineering', '8.2', '10', '0'), (6738, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '157', '146', '303', '3', '96', 'Anna University', 'Mechanical Engineering', '7', '10', '0'), (6739, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '800', '570', '1370', '3.5', '109', 'MSRIT', 'Electrical and Electronics', '8.74', '10', '24'), (6740, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '490', '1280', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (6741, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '113', 'None', 'Electronics and Comm', '75.6', '100', '0'), (6743, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '530', '1310', '4', '103', 'Anna University', 'ECE', '84', '100', '0'), (6744, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '149', '308', '3', '99', 'Thiagarajar College of engineering', 'mechanical', '8.87', '10', '0'), (6745, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '600', '1390', '4', '108', 'Asansol Engineering College', 'Elctrical Engineering', '8.27', '10', '0'), (6746, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (6747, '9', 'Admit', 'MS', 'Applied Mathematics', 'Fall ', '2013', '750', '530', '1280', '2.5', '102', 'University of Dhaka', 'Mathematics', '72.4', '100', '0'), (6748, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '540', '1300', '3.5', '113', 'University of Pune', 'Electrical', '78.13', '100', '0'), (6749, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3', '104', 'Pune University', 'Computer Engineering', '65.2', '100', '0'), (6750, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '157', '323', '3', '103', 'Goa University', 'Mechanical Dept.', '74.3', '100', '0'), (6751, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '151', '314', '3', '106', 'Anna University', 'Information technology', '80', '100', '0'), (6752, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '111', 'Delhi College Of Engineeing', 'Mechanical Engineering', '67', '100', '0'), (6753, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '4', '96', 'MU', 'Mechanical', '65', '100', '0'), (6754, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '460', '1230', '4', '110', 'Pune University', 'Mechanical', '71.1', '100', '0'), (6755, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '152', '315', 'None', '105', 'MU', 'Mechanical', '70.12', '100', '0'), (6756, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '720', '500', '1220', '3.5', '108', 'University of Mumbai', 'Mechanical Engineering', '61', '100', '0'), (6757, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '150', '315', '4', '106', 'None', 'Mechanical Engineering', '9.1', '10', '0'), (6758, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '149', '312', '4.5', '106', 'MU', '0', '58', '100', '0'), (6759, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '780', '440', '1220', '3', '97', 'MU', 'Instrumentation Engineering', '65', '100', '0'), (6760, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3.5', '94', 'NIT Paatna', 'ELECTRICAL ENGINEERING', '8.57', '10', '0'), (6761, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '720', '440', '1160', '3', '105', 'JNTU', 'Mechanical', '62', '100', '0'), (6762, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '168', '152', '320', '3.5', '103', 'Sardar Patel University', 'Mechanical', '9.18', '10', '0'), (6763, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '152', '316', '3', '97', 'University of Mumbai', 'Production Engineering', '70.3', '100', '0'), (6764, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '540', '1340', '2.5', '104', 'NIT DGP', 'CE', '3.64', '4', '0'), (6765, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '600', '1370', '3.5', '104', 'Pune University', 'Electronics and Telecom', '72.86', '100', '0'), (6766, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (6767, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '98', 'JNTU', 'ECE', '74', '100', '0'), (6768, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '151', '320', '3.5', '108', 'NIT Jaipur', 'Mechanical', '6.2', '10', '0'), (6769, '9', 'Admit', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (6770, '9', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2015', '164', '149', '313', '4', '113', 'Pondicherry University', 'Civil Engg', '7.7', '10', '0'), (6771, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '520', '1320', '3.5', '94', 'Pune University', 'Mechanical', '77.4', '100', '0'), (6772, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '4', '107', 'R V College of Engineering', 'computer science', '79', '100', '0'), (6773, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '153', '313', '4', '102', 'Sri Venkateswara College of Engineering', 'EEE', '7.5', '10', '0'), (6774, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (6775, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '520', '1300', '4', '112', 'VTU', 'Mechanical', '77', '100', '0'), (6776, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2016', '159', '154', '313', '3.5', '113', 'VTU', 'Electrical and Electronics', '80.08', '100', '17'), (6777, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (6778, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '158', '325', '3', '110', 'VIT University', 'Mechanical', '8.73', '10', '0'), (6779, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'CSE', '8', '10', '0'), (6780, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '380', '1100', '3.5', '88', 'Anna University', 'Computer Science', '8', '10', '0'), (6781, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '520', '1290', '3', '118', 'SSN College of Engineering', 'Information Technology', '72', '100', '0'), (6782, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (6783, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '750', '500', '1250', '3.5', '100', 'University of Pune', 'Mechanical', '67', '100', '0'), (6784, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '430', '1230', '4', '104', 'JNTU', 'mechanical engineering', '74', '100', '0'), (6785, '9', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '630', '1400', '3', '104', 'Technological Edu. Institute of Piraeus', 'Electrical Engineering', '6.49', '10', '0'), (6786, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (6787, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '169', '161', '330', '4', '109', 'NIT Rourkela', 'Electronics and Instrumentation Engg', '9.41', '10', '0'), (6789, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (6790, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (6791, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '590', '1330', '4', '104', 'NIT Silchar', 'Electrical Engineering', '6.67', '10', '0'), (6792, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (6793, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (6794, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '3.5', '108', 'IIT Indore', 'Mechanical Engineering', '7.16', '10', '24'), (6795, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'VIT University', 'Mechanical', '7.82', '10', '0'), (6797, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (6798, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '770', '500', '1270', '3.5', '111', 'Ansal Institute of Technology', 'Computer Science', '73', '100', '0'), (6799, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '610', '1410', '3.5', '108', 'DA-IICT', 'ECE', '6.79', '10', '0'), (6800, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '752', '491', '1243', '3', '235', 'BITS Pilani', 'ENGGINEERING', '7', '10', '0'), (6801, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '730', '580', '1310', 'None', '113', 'NMAMIT Karkala Karnataka', 'Mech Engineering', '8.6', '10', '0'), (6802, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '490', '1250', '3', '89', 'Pune University', 'Mechanical', '63', '100', '0'), (6803, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '146', '309', '3.5', '106', 'Pune University', 'Mechanical Engineering', '63', '100', '0'), (6804, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '730', '1500', '4', '114', 'VIT University', 'Mechanical with spl. in Energy', '8.63', '10', '0'), (6805, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '154', '315', '3.5', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engg', '65', '100', '0'), (6806, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '154', '319', '3.5', '107', 'Pune University', 'E&TC;', '65', '100', '0'), (6807, '9', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2011', '760', '540', '1300', '3', '101', 'JNTU', 'Computer Science', '0', '0', '0'), (6808, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '152', '315', '4', '111', 'COEP', 'Production Engineering (Sandwich)', '8.94', '10', '16'), (6809, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '780', '520', '1300', '4.5', '280', 'JNTU', 'Computer Science and Engineering', '67', '100', '0'), (6810, '9', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '162', '157', '319', '3', '112', 'PCCOE Pune University', 'Electronics and Telecommunication Engineering', '0', '0', '28'), (6811, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '720', '640', '1360', '4', 'None', 'BNMIT', 'ECE', '73', '100', '0'), (6812, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '152', '312', '3', '102', 'VTU', 'Mechanical engineering', '73.5', '100', '0'), (6813, '9', 'Admit', 'MS', 'Computer Science', 'Spring', 'None', '167', '149', '316', '2.5', '90', 'NIT Warangal', 'ECE', '7.36', '10', '26'), (6814, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '800', '620', '1420', '4', '102', 'Thiagarajar College of engineering', 'Mechanical engineering', '8.77', '10', '0'), (6815, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '152', '306', '3.5', '102', 'PESIT', 'Mechanical Engineering', '6.3', '10', '0'), (6816, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', 'None', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6817, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '161', '149', '310', '310', '96', 'K J Somaiya College of Engiineering', 'mechanical engineering', '64', '100', '0'), (6818, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '165', '149', '314', '3.5', '109', 'Univ Of Pune', 'Mechanical', '58', '100', '0'), (6819, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', '160', '156', '316', '4.5', '111', 'NIT Calicut', 'Mechanical', '6.23', '10', '0'), (6820, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '790', '320', '1110', '3', '102', 'MU', 'Civil', '78', '100', '0'), (6821, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '151', '309', '3', '93', 'Mody University', 'MCA', '9.2', '10', '0'), (6822, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'Pune University', 'Mechanical Engineering', '69.8', '100', '0'), (6823, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '150', '308', '2.5', 'None', 'Panimalar Engineering College', 'Computer science', '74', '100', '0'), (6824, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', 'None', '112', 'Sri Venkateswara College of Engineering', 'EEE', '7.94', '10', '0'), (6825, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '3.5', '103', 'Andhra University', 'CSE', '8.14', '10', '47'), (6826, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '156', '317', '4', '111', 'Osmania University', 'ECE', '82.3', '100', '0'), (6827, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '148', '308', '3', '100', 'MU', 'Computer Engineer', '56', '100', '0'), (6828, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '155', '317', '3.5', '106', 'Anna University / Sri Ramakrishna Engineering College', 'Mechanical Engineering', '8.45', '10', '33'), (6829, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '152', '313', '4', '102', 'SRM', 'Mechanical Engg', '8.6', '10', '0'), (6830, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '720', '400', '1120', '4', '104', 'ICFAI', 'CSE', '7.95', '10', '0'), (6831, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '160', '325', '4', '109', 'Calicut University', 'Mechanical Engineering', '7.96', '10', '0'), (6832, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (6833, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6834, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '159', '320', '3.5', 'None', 'Aurora College of Engineering', 'Mechanical Engg', '69.7', '100', '0'), (6835, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '107', 'PESIT', 'Electronics and communication', '77.27', '100', '0'), (6836, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '139', '298', '2', 'None', 'None', 'Computer Science', '8.37', '10', '0'), (6837, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '154', '312', '3', 'None', 'MVSR', 'I.T', '82', '100', '0'), (6838, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'None', '0', '0', '0', '0'), (6839, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '300', '1020', '3.5', '101', 'R N S Institute of Technology', 'Computer Science', '74', '100', '0'), (6840, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '780', '450', '1230', 'None', '98', 'Anna University', 'Mechanical', '7.36', '10', '0'), (6841, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '166', '152', '318', '4', '105', 'BITS Pilani', 'Mechanical Eng', '8.98', '10', '0'), (6842, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (6843, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '156', '325', '3.5', '102', 'VTU', 'ECE', '70', '100', '0'), (6844, '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '740', '610', '1350', 'None', '112', 'University of Pune', 'ENTC', '60.2', '100', '0'), (6845, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '157', '323', '3', '102', 'VNR VJIET', 'Computer Science', '75.3', '100', '0'), (6846, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '660', '1420', '4', '108', 'The Technological institute of Textile and Sciences Bhiwani', 'Electronics & Communication Engineering', '68.3', '100', '0'), (6847, '9', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '163', '158', '321', '5.5', 'None', 'University of Calicut', 'Electronics and Communication Engineering', '65', '100', '54'), (6848, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '157', '325', '3.5', '104', 'VCET', 'MEchanical', '64', '100', '12'), (6849, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '650', '440', '1090', '3', '91', 'Government College Of Engineering Aurangabad', 'Information Technology', '69', '100', '0'), (6850, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '101', 'CBIT', 'IT', '73.75', '100', '0'), (6851, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '155', '319', '3.5', '109', 'Pune University', 'Mechanical Engineering', '8.83', '10', '0'), (6852, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '109', 'Shivaji University', 'mechanical', '7.7', '10', '0'), (6853, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '154', '313', '3', 'None', 'Guru Gobind Singh Indraprashta University', 'Electrical and electronics', '75', '100', '0'), (6854, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '164', '329', '4.5', '119', 'Dayananda Sagar College of Engineering', 'ece', '78', '100', '0'), (6855, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '156', '316', '4', '103', 'Delhi College Of Engineeing', 'Electrical Engineering', '66', '100', '22'), (6856, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '3', '110', 'COEP', 'Computer Science', '67.9', '100', '0'), (6857, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3', '86', 'Chilkur Balaji Institute of Tecnology (JNTUH)', 'C.S.E', '78', '100', '0'), (6858, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (6859, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', 'None', '167', '148', '315', '4.5', '108', 'Osmania University', 'Electronics and Communication Engineering', '86.7', '100', '0'), (6860, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '3', '109', 'MGIT (JNTU)', 'CSE', '74', '100', '0'), (6861, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '148', '312', '3', 'None', 'VIT University', 'Mechanical( ABET Accredited)', '9.1', '100', '0'), (6862, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6863, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '154', '312', '4', '113', 'Pune University', 'Electronics & Telecommunication', '60', '100', '8'), (6864, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (6865, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3', '98', 'JSSATE / VTU', 'CS', '74', '100', '0'), (6866, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (6867, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', '159', '150', '309', '3.5', '96', 'Amrita School of Engineering', 'Civil', '8.19', '100', '0'), (6868, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6869, '9', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '750', '620', '1370', '3.5', '103', 'COEP', 'Electronics and Telecommunication', '7.8', '10', '0'), (6870, '9', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (6871, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '143', '301', '3.5', 'None', 'SNIST', 'Electronics and Computer Engineering', '82.98', '100', '15'), (6872, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '147', '305', '3.5', '104', 'VTU', 'Industrial engineering', '73', '100', '0'), (6873, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '730', '670', '1400', '4', '115', 'None', 'Mechanical Engineering', '76', '100', '0'), (6874, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '160', '159', '319', '3.5', '111', 'MU', 'Automobile Engineering', '62', '100', '0'), (6875, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '430', '1230', '4', '110', 'Pune University', 'Computer', '69', '100', '0'), (6876, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '480', '1180', '3', '89', 'Anna University', 'Computer Science', '72', '100', '0'), (6877, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '155', '325', '3.5', '111', 'ASE Blr', 'ECE', '8.22', '10', '0'), (6878, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '150', '306', '3', '105', 'BVBCET', 'mechanical', '8.98', '10', '0'), (6879, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '150', '310', '3', 'None', 'MU', 'CS', '61', '100', '0'), (6880, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '350', '1150', '3.5', '104', 'Madras Institute of Technology', 'Computer Science', '8', '10', '0'), (6882, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2013', '800', '630', '1430', '4.5', '113', 'University of Mumbai', 'Information Technology', '66', '100', '34'), (6883, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2016', '162', '155', '317', '3', 'None', 'Medicaps Institute of Science & Technology Indore', 'automobile', '6.67', '10', '0'), (6884, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '158', '146', '304', '3', '96', 'Don Bosco Institute of Technology', 'IT', '67', '100', '24'), (6885, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '630', '1430', '4', '283', 'Osmania University', 'Electronics and Communication', '82.92', '100', '0'), (6886, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '160', '152', '312', '3.5', '95', 'University of Pune', 'E&TC;', '65.8', '100', '8'), (6887, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '149', '310', '3', '107', 'Sir MVIT', 'Civil engineering', '0', '0', '0'), (6888, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '470', '1220', '4', '109', 'The National Institute of Engineering', 'Mechanical Engineering', '65', '100', '0'), (6889, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '151', '319', '4', '117', 'BITS Hyderabad', 'ECE', '9.22', '10', '0'), (6890, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '450', '1240', '3', '97', 'VITU', 'Mechanical', '8.5', '10', '0'), (6891, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '155', '315', '3.5', '105', 'BITS Pilani', 'Mechanical', '7.39', '10', '0'), (6892, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '158', '146', '304', '3.5', '7', 'Anna University', 'Mechanical engg', '7.98', '100', '0'), (6893, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '149', '309', '3.5', '104', 'Chaitanya Bharathi Institute of Technology', 'Mechanical Production', '76', '100', '0'), (6894, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '420', '1170', '3', '100', 'GGSIPU', 'mechanical n automation', '73', '100', '0'), (6895, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '170', '158', '328', '4', '107', 'Sri Venkateswara College of Engineering', 'EEE', '84', '100', '46'), (6896, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '110', 'GITAM', 'EEE', '6.6', '10', '0'), (6897, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '161', '152', '313', '4', '109', 'JNTU', 'CS', '71', '100', '0'), (6898, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '590', '1390', '3', '105', 'Anna University', 'Computer Science', '82', '100', '0'), (6899, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '111', 'Velammal Engineering College', 'EEE', '8.5', '10', '0'), (6900, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2010', '740', '620', '1360', '4', '114', 'Mar Athanasius College of Engineering Kerala', 'Mechanical Engineering', '70', '100', '0'), (6901, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'Vasavi College of Engineering', 'mech', '70.7', '100', '0'), (6902, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '790', '550', '1340', '4', '100', 'PESIT', 'ECE', '69.45', '100', '0'), (6903, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '156', '320', '3', '107', 'COEP', 'Production engineering', '8.11', '10', '0'), (6904, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '154', '320', '3', '107', 'Delhi College Of Engineeing', 'Electrical and Electronics', '74.19', '100', '24'), (6905, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '143', '306', '3.5', '107', 'K J Somaiya College of Engiineering', 'Mechanical Engg', '65', '100', '0'), (6906, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '720', '530', '1250', '3', '91', 'University of Pune', 'information technology', '65', '100', '0'), (6907, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '161', '325', '4', '114', 'SPCE', 'Mech', '74.14', '100', '0'), (6908, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6909, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '158', '314', '4.5', '105', 'Amrita School of Engineering', 'Mechanical engineering', '6.42', '10', '0'), (6910, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '161', '141', '302', '3', '107', 'SRKNEC', 'Industrial Engineering', '70.89', '100', '0'), (6911, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2009', '780', '440', '1220', '4.5', '103', 'Anna University', 'Computer Science and Engineering', '77', '100', '0'), (6912, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '154', '311', '4', '111', 'Swami Vivekananda Institute of Science and Technology', 'Mechanical Enginnering', '7.8', '10', '0'), (6913, '9', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '570', '1320', '4', '99', 'GITAM', 'ECE', '8.98', '10', '0'), (6914, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '150', '317', '4', '104', 'NIT Raipur', 'Mechanical Engineering', '8.89', '10', '0'), (6915, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '520', '1300', '3.5', '114', 'None', 'Computer Science', '76', '100', '0'), (6916, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (6917, '9', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '530', '1330', '3', '96', 'Pune University', 'Information technology', '65', '100', '0'), (6918, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '113', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '8.28', '10', '0'), (6919, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '440', '1240', '3.5', '98', 'NIT Bhopal', 'Computer Science & Engg.', '7', '10', '0'), (6920, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '690', '1430', '3.5', '111', 'PSG College of Technology', 'EEE (SW)', '8.3', '10', '0'), (6921, '9', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2014', '150', '147', '297', '3.5', 'None', 'MSRIT', 'civil', '7.9', '10', '0'), (6924, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '470', '1250', '3', '96', 'MITS', 'MECHANICAL', '78', '100', '0'), (6925, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (6927, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '520', '1250', '3', '100', 'Pune University', 'Mechanical', '62', '100', '0'), (6928, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring', 'None', '159', '150', '309', '3', '98', 'None', '0', '73', '100', '0'), (6929, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '750', '620', '1370', '4', 'None', 'PSG College of Technology', 'Biotechnology', '8.48', '10', '0'), (6930, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '106', 'K J Somaiya College of Engiineering', 'IT', '0', '0', '0'), (6931, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '157', '321', '4', '100', 'MU', 'mechanical', '76', '100', '0'), (6932, '9', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6933, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '154', '316', '3.5', 'None', 'JNTU', 'Information Technology', '74.11', '100', '0'), (6934, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '380', '1160', '3', '98', 'Vignan Institute of Technology and Science', 'Mechanical Engineering', '78.1', '100', '0'), (6935, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '152', '321', '4', '103', 'IIT Indore', 'Mechanical', '8.43', '10', '12'), (6936, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '163', '160', '323', '3.5', '105', 'Telangana', 'Mechanical', '80', '100', '12'), (6937, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '156', '137', '293', '2.5', '92', 'SRM', 'Mechanical Engineering', '8.391', '10', '0'), (6938, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '148', '304', '4', '109', 'JNTU', 'Mechatronics', '70.58', '100', '0'), (6939, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6940, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '160', '160', '320', '3.5', '113', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics Engineering', '67.83', '100', '0'), (6941, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '360', '1090', '3', '92', 'Thiagarajar College of engineering', 'Computer Science Engineering', '7.56', '10', '0'), (6942, '9', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (6943, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '740', '600', '1340', '4', '114', 'Modern College of Engineering', 'Mechanical Engineering', '76', '100', '0'), (6944, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '750', '350', '1100', '3', '90', 'NIT Rourkela', 'Mechanical', '8.36', '10', '0'), (6945, '9', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '154', '316', '4.5', '108', 'University of Pune', 'Electronics & Telecommunications', '58', '100', '0'), (6946, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '115', 'NITK Surathkal', 'Mechanical Engg', '7.6', '10', '18'), (6947, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '550', '1340', '4', '101', 'COEP', 'Electrical', '7.48', '10', '0'), (6948, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '167', '334', '5', '116', 'NITK Surathkal', 'Mechanical', '8.2', '10', '21'), (6949, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '151', '313', 'None', 'None', 'Malaviya NIT Jaipur', 'Civil Engineering', '7.03', '10', '0'), (6950, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (6951, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '170', '144', '314', '3', '99', 'Andhra University', 'Civil Engineering', '8.24', '10', '0'), (6952, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '570', '1300', '4', 'None', 'Manipal Institue of Technology', 'Mechanical Engineering', '8.46', '10', '0'), (6953, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '160', '165', '325', '3.5', '110', 'NIT Bhopal', 'Mechanical Engg.', '7.53', '10', '0'), (6954, '9', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '160', '153', '313', '3', '112', 'Amrita School of Engineering', 'Electronics and communication', '8.19', '10', '24'), (6955, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '785', '360', '1145', '4', '91', 'Anna University', 'Mechanical', '8.3', '10', '0'), (6956, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (6957, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '680', '560', '1240', '3.5', '108', 'Anna University', 'Electrical & Electronics', '80', '100', '0'), (6958, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2015', '167', '155', '322', '3.5', '111', 'Anna University', 'Mechanical Engineering', '7.9', '10', '32'), (6959, '9', 'Admit', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (6960, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '105', 'Anna University', 'Mechanical Engineering', '6.7', '10', '0'), (6961, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '660', '550', '1210', '3', '92', 'RTM Nagpur University', 'Mechanical Engineering', '66', '100', '0'), (6962, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (6963, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '710', '330', '1040', '3', '83', 'JNTU', 'Mechnaical Engineering', '75', '100', '0'), (6964, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '790', '550', '1340', '3', '102', 'COEP', 'Civil', '7.16', '10', '0'), (6965, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '143', '309', 'None', '91', 'Sri Venkateswara College of Engineering', 'CSE', '80', '100', '0'), (6966, '9', 'Admit', 'MS', 'mba', 'Spring ', '2015', '46', '25', '71', '4.5', 'None', 'Anna University', 'Mechanical', '8.87', '10', '0'), (6967, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (6968, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '103', 'YCCE', 'Mechanical Engineering', '72.2', '100', '0'), (6969, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2007', '800', '620', '1420', '4', '283', 'NIT Calicut', 'Mechanical Engineering', '8.46', '10', '0'), (6970, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '400', '1160', '3.5', '96', 'Anna University', 'CSE', '8.48', '10', '0'), (6971, '9', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '500', '1300', '5', '104', 'VTU', 'Electronics', '70', '100', '0'), (6972, '9', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '710', '570', '1280', '3.5', '114', 'Goa University', 'E&TC;', '60.01', '100', '0'), (6973, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3.5', '103', 'VTU', 'mechanical engineering', '77', '100', '0'), (6974, '9', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '570', '1370', '4', '114', 'None', 'E.C.E', '70', '100', '0'), (6975, '9', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CoE Trivandrum', 'Electronics', '7.25', '10', '0'), (6976, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '740', '1480', '4.5', '116', 'SSN College of Engineering', 'IT', '7.96', '10', '0'), (6977, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '157', '153', '310', '4.5', '100', 'CEG', 'Manufacturing Engineering', '8.4', '10', '0'), (6978, '9', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '158', '145', '303', '3.5', '93', 'BVM Engineering College', 'Civil', '8.34', '10', '0'), (6979, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '154', '314', '4', '112', 'R V College of Engineering', 'Industrial Engineering', '8.75', '10', '0'), (6980, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '102', 'UPTU', 'Mechanical Engineering', '65.48', '100', '0'), (6981, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '148', '314', '3', 'None', 'GITAM', 'Mechanical', '7.62', '10', '0'), (6982, '9', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '91', 'Jaypee Institute of Information Technology', 'Information Technology', '6.5', '10', '58'), (6983, '9', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', '164', '150', '314', '3', '104', 'BITS Goa', 'Mechanical Engineering', '7.17', '10', '0'), (6984, '9', 'Admit', 'MS', 'Automotive Engineering', 'Fall ', '2011', '740', '620', '1360', '4', '105', 'Amrita School of Engineering', 'Mechanical', '7.21', '10', '0'), (6985, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '154', '317', '3.5', '108', 'PSG College of Technology', 'Mechanical Engineering', '8.28', '10', '48'), (6986, '9', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '3.5', '108', 'Amrita School of Engineering', 'Mech', '7.6', '10', '0'), (6987, '9', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '154', '154', '308', 'None', '114', 'SRKNEC Nagpur University', 'Industrial', '66', '100', '0'), (6988, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '165', '157', '322', '3.5', '112', 'JNTU', 'Mechanical(Mechatronics)', '73', '100', '0'), (6989, '9', 'Reject', 'MS', 'Electronics Instrumentation and Control', 'Fall ', '2013', '160', '144', '304', '4', '100', 'Anna University', 'Electronics and instrumentation', '8.6', '10', '0'), (6990, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '155', '317', '4', 'None', 'RNSIT', 'CS', '72', '100', '0'), (6991, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '165', '151', '316', '4', '107', 'NIT Hamirpur', 'Mechanical Engineering', '7.42', '10', '6'), (6993, '9', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '161', '145', '306', '3', 'None', 'COEP', 'Production engineerimg', '7.26', '10', '0'), (6994, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '600', '1400', '3', '106', 'Delhi College Of Engineeing', 'Mechanical', '56.3', '100', '0'), (6995, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (6996, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '153', '312', '4', '109', 'Amrita School of Engineering', 'Computer Science', '7.69', '10', '0'), (6997, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '148', '314', '4', '106', 'PESIT', 'Telecommunication', '8.07', '10', '0'), (6998, '9', 'Reject', 'MS', 'CS', 'Fall ', '2015', '159', '146', '305', '3', '91', 'Pune University', 'Computer Engineering', '61.1', '100', '0'), (6999, '9', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '720', '590', '1310', '3', '96', 'MU', 'Electronics', '65', '100', '0'), (7000, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '152', '313', '3', '97', 'Pune University', 'electrical engineering', '57.06', '100', '0'), (7001, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '650', '1370', '4', '104', 'Prince Shri Venkateshwara Padmavathy Engineering College', 'EEE', '6.6', '10', '0'), (7002, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '151', '150', '301', '3', '99', 'Anna University', 'Mechanical Engineering', '7.62', '10', '0'), (7003, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '101', 'VTU', 'Mechanical', '9.2', '10', '0'), (7004, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '151', '312', '3', '84', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation engg.', '56', '100', '0'), (7005, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7006, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '153', '310', '3.5', '110', 'VTU', 'Mechanical', '62', '100', '0'), (7007, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '142', '299', '3', '86', 'V J T I', 'EE', '7', '10', '0'), (7008, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '155', '148', '303', '3', '86', 'Shivaji University', 'civil engineering', '64', '100', '0'), (7009, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '142', '305', '3', '87', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '69', '100', '0'), (7010, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '158', '154', '312', '4', '104', 'Bannari Amman Institute Of Technology', 'Electrical and Electronics Engineering', '8.67', '10', '0'), (7011, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '162', '154', '316', '3.5', '106', 'RNSIT', 'Electronics & Communication', '71', '100', '0'), (7012, '9', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2013', '161', '149', '310', '3', '103', 'University of Pune', 'Electronics and Telecommunication', '67', '100', '0'), (7013, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7014, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '148', '307', '3.5', '98', 'Fr. Conceicao Rodrigues College of Engineering', 'Electronics', '71.22', '100', '0'), (7015, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '152', '314', '3', '100', 'West Bengal University Of Technology', 'Electronics and Communicatiion Engineering', '7.62', '10', '0'), (7016, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '147', '158', '305', '3.5', '109', 'Anna University', 'Electrical and Electronics', '7.3', '10', '0'), (7017, '9', 'Reject', 'MS', 'energy', 'Fall ', '2012', '760', '450', '1210', '3', '104', 'VIT Pune', 'Instrumentation & Control', '8.61', '10', '0'), (7018, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7019, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '165', '162', '327', '3', '114', 'VIT University', 'Mechanical', '8.57', '10', '17'), (7020, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '101', 'PSG College of Technology', 'MECHANICAL ENGINEERING', '8', '10', '0'), (7021, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '3.5', '90', 'COEP', 'Mechanical engineering', '7.45', '10', '30'), (7022, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '710', '560', '1270', '4', '112', 'University of Pune', 'Mechanical Engineering', '59', '100', '0'), (7023, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '97', 'Ramdeobaba Kamla Nehru Engg College', 'Electronics', '64.21', '100', '0'), (7024, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (7025, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '147', '145', '292', '2.5', '90', 'Bharati Vidyapeeth', 'Mechanical', '67.65', '100', '0'), (7026, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '163', '326', '4', '114', 'Anna University', 'Mechanical Engineering', '72', '100', '0'), (7027, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '164', '152', '316', '3', '97', 'BITS Pilani', 'Mechanical', '7.35', '10', '0'), (7028, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (7029, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '141', '302', '2.5', 'None', 'Anna University', 'Electronics and Communication engineering', '8.3', '10', '0'), (7030, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '670', '1420', '4', '110', 'Rajiv Gandhi Institute Of Technology', 'Mechanical Engineering', '61.53', '100', '0'), (7031, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '101', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.84', '10', '0'), (7032, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '144', '308', '3', 'None', 'GTU', 'mechanical', '8.76', '10', '0'), (7033, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '101', 'Anna University', 'Electrical & Electronics Engineering', '77', '100', '0'), (7034, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7035, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '450', '1230', '3', '107', 'MU', 'Computer Engineering', '58', '100', '0'), (7036, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '150', '319', '3', '99', 'Jadavpur University', 'Electrical Engineering', '7.33', '10', '0'), (7037, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '164', '151', '315', '3', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '9.01', '10', '25'), (7038, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '144', '313', '3', '98', 'Amrita School of Engineering', 'ECE', '8.01', '10', '0'), (7039, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '106', 'MU', 'Mechanical', '59', '100', '0'), (7040, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '162', '328', '3', '103', 'None', 'computer science', '7.68', '10', '0'), (7041, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '149', '310', 'None', '93', 'MVSR', 'ECE', '77', '100', '0'), (7042, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '166', '144', '310', '3', '90', 'Manipal Institue of Technology', 'CIVIL', '6.6', '10', '6'), (7043, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '163', '156', '319', '3', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7045, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '143', '308', '3', '96', 'MVSR', 'ECE', '89', '100', '0'), (7046, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '155', '315', '3', '105', 'VTU', 'Mechanical', '7.27', '10', '36'), (7047, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (7048, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '150', '311', '3', '106', 'SSN College of Engineering', 'EEE', '7.98', '10', '0'), (7049, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '300', '1040', '2.5', '84', 'Sathyabama University', 'electronics and instrumentation', '81', '100', '0'), (7050, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '161', '144', '305', '3', 'None', 'Osmania University', 'production engineering', '75', '100', '0'), (7051, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '162', '147', '309', '3', '95', 'University of Pune', 'Electronics and Telecommunication', '62', '100', '12'), (7052, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '158', '153', '311', '4', '114', "St Joseph's College of Engineering", 'ECE', '8.61', '10', '24'), (7053, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2013', '155', '150', '305', '3', '7', 'Pune University', 'Mechanical', '62', '100', '17'), (7054, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '166', '147', '313', '3', '99', 'SRM', 'ECE', '8.79', '10', '0'), (7055, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '4', '99', 'JNTU', 'CSE', '71.59', '100', '0'), (7056, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '143', '305', '3', '95', 'NIT-Raipur', 'Mechanical', '7.77', '10', '0'), (7057, '9', 'Reject', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (7058, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (7059, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (7060, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '149', '312', '3.5', '99', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '7.28', '10', '0'), (7061, '9', 'Reject', 'MS', 'Information Technology', 'Fall ', '2012', '157', '145', '302', '3', '103', 'PTU', 'cse', '80', '100', '0'), (7062, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '147', '305', '3', 'None', "St Joseph's College of Engineering", 'Mechanical engineering', '6.74', '10', '12'), (7063, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '790', '500', '1290', '3.5', '113', 'University of Mumbai', 'Electronics Engineering', '66', '100', '0'), (7064, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '147', '304', '3', '92', 'Rajasthan Technical University', 'Computer Science', '68.8', '100', '0'), (7065, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '152', '305', '3', '100', 'None', 'cse', '65', '100', '0'), (7066, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '148', '310', '3', 'None', 'VTU', 'Telecommunication', '71', '100', '0'), (7067, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3', '103', 'GITAM', 'ECE', '7.3', '10', '0'), (7068, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '420', '1220', '3', '106', 'BNMIT', 'Electronics and Communication', '72', '100', '0'), (7069, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '142', '302', '3', '95', 'VITS', 'mechanical', '71', '100', '0'), (7070, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '147', '309', '3.5', '98', 'VIT University', 'EEE', '8.75', '10', '0'), (7071, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '154', '154', '308', '3.5', '8', 'Anna University', 'Electronics and communication engineering', '68', '100', '0'), (7072, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '144', '306', '3', '96', 'Velammal Engineering College', 'production engineering', '8.35', '10', '0'), (7073, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '147', '308', '3', '98', 'Dr. Ambedkar Institute of technology', 'Information Science', '77.67', '100', '0'), (7074, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '153', '319', '3', '103', 'ISM Dhanbad', 'Mechanical engineering', '7.01', '10', '51'), (7075, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '163', '324', '3', '109', 'R V College of Engineering', 'Mechanical Engineering', '67', '100', '0'), (7076, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (7077, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '146', '305', '3.5', '98', 'Rajiv Gandhi Technical University', 'Electronics and Communication Engineering', '69.41', '100', '0'), (7078, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '153', '149', '302', '2.5', '94', 'RGPV', 'Mechanical', '6.29', '10', '0'), (7079, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (7080, '9', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '160', '148', '308', '3.5', '105', 'VTU', 'Telecommunication', '61', '100', '0'), (7081, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '550', '1340', '3.5', '106', 'MIT Pune Univ', 'Electronics & TeleCommunication Engg', '58', '100', '0'), (7082, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2007', '770', '570', '1340', '4.5', '107', 'None', 'Electronics and Telecommunication', '61', '100', '0'), (7083, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '156', '150', '306', '3.5', '113', 'VTU', 'Computer Science and Engineering', '74.21', '100', '0'), (7084, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (7085, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '162', '324', '4.5', '117', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '7.04', '10', '0'), (7086, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (7087, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '360', '1140', '3', '99', 'MU', 'Electronics', '70', '100', '0'), (7088, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '300', '1050', '3', '82', 'KLESCET', 'Electronics and Communication', '68.82', '100', '0'), (7089, '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7090, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '720', '550', '1270', '2.5', '95', 'Sri Sairam Engineering College', 'Computer Science and Engineering', '69', '100', '0'), (7091, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '730', '390', '1120', '3', '101', 'Anna University', 'mechanical', '7.87', '10', '0'), (7092, '9', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '780', '520', '1300', '3', '100', 'DA-IICT', 'ICT - Information and Communication Technology', '6.4', '10', '0'), (7093, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '159', '150', '309', '3', '101', 'Sinhgad College of Engineering', 'Computer Engg', '63.93', '100', '0'), (7094, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '143', '310', '3', '80', 'SRM', 'Aerospace', '9.3', '10', '0'), (7096, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '146', '304', 'None', '103', 'Pune University', 'Mechanical', '73.33', '100', '0'), (7097, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2', '780', '460', '1240', '3.5', 'None', 'Sri Venkateswara College of Engineering', 'CSE', '7.88', '10', '0'), (7098, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '149', '307', '3.5', '7', 'JNTU', 'mechanical', '64', '100', '0'), (7099, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1510', 'None', '1510', 'None', '116', 'SRM', 'TCE', '8.2', '10', '0'), (7100, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '3', '98', 'SASTRA', 'ECE', '8.37', '10', '0'), (7101, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3.5', '106', 'CUSAT', 'ECE', '3.14', '4', '0'), (7102, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '163', '145', '308', '3', '96', 'UPTU', 'Mechanical', '67.22', '100', '48'), (7103, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '139', '301', '3.5', '88', 'VTU', 'Info Science', '66.8', '100', '0'), (7104, '9', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '730', '610', '1340', '3.5', '93', 'VTU', 'Electronics and Communication', '77.2', '100', '0'), (7105, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', '3.5', '108', 'MU', 'Mechanical Engineering', '66', '100', '8'), (7106, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (7107, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '580', '1380', '3.5', '106', 'MU', 'electronics and telecommunications', '56', '100', '0'), (7108, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (7109, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '720', '450', '1170', '3', '97', 'MU', 'Mechanical', '56', '100', '0'), (7110, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '700', '480', '1180', '4.5', '103', 'VTU', 'Telecommunciation', '63', '100', '0'), (7111, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '161', '145', '306', '3', '104', 'University institute of engineering and technology panjab university chandigarh', 'electrical and electronics engineering', '62', '100', '0'), (7112, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (7113, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '143', '305', '4', '106', 'GITAM', 'ECE', '7.57', '10', '0'), (7114, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '155', '149', '304', '3', '85', 'MU', 'Electrical Engineering', '57', '100', '0'), (7115, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '156', '146', '302', '3.5', '87', "The People\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'s University of Bangladesh", 'Electronics and Telecommunication engineering', '3.47', '4', '0'), (7116, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '158', '145', '303', '2.5', 'None', 'RITS', 'CIVIL', '77.8', '100', '12'), (7117, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2015', '162', '155', '317', '4', '113', 'M.G. University', 'ECE', '7.52', '10', '0'), (7118, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (7119, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '149', '311', '4', '101', 'MU', 'Instrumentation', '62.5', '100', '0'), (7120, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '720', '370', '1090', '3', 'None', 'SVCE', 'Electrical Engineering', '8.1', '10', '0'), (7121, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '620', '1350', '4', '111', 'Bangalore Institute of Technology', 'Electronics and Communication', '58.5', '100', '0'), (7122, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '97', 'MU', 'Electronics & Telecommunications', '60.7', '100', '0'), (7123, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4', '105', 'University of Pune', 'Electronics & Telecommunication', '68.8', '100', '0'), (7124, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '160', '141', '301', '3', '90', 'Anna University', 'ECE', '80', '100', '0'), (7125, '9', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '154', '154', '308', '3', '97', 'Guru Nanak Dev University Amritsar', 'Civil Engineering', '77.4', '100', '0'), (7126, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '710', '640', '1350', '4', '111', 'VIT Pune', 'Electronics', '6.62', '10', '0'), (7127, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '152', '311', '4', '115', 'MU', 'Mechanical', '55', '100', '0'), (7128, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '149', '311', '3', '102', 'CBIT', 'CSE', '80', '100', '0'), (7129, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (7130, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2009', '780', '480', '1260', '4', '106', 'MIT Pune', 'Mechanical Engineering', '55', '100', '0'), (7131, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '710', '460', '1170', '3', '105', 'VTU', 'E & C', '60', '100', '0'), (7132, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '149', '308', '3.5', '99', 'SSN College of Engineering', 'ECE', '77', '100', '0'), (7133, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (7134, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '102', 'JNTU', 'EEE', '73', '100', '0'), (7135, '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '800', '420', '1220', '3', '99', 'JNTU', 'ECE', '71', '100', '0'), (7136, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '309', '151', '460', '158', '108', 'MU', 'Mechanical', '74', '100', '0'), (7137, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '500', '1230', '3', '91', 'B.V.Bhoomraddi College', 'Electrical & Electronics', '8.26', '10', '0'), (7138, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '440', '1220', '3', '96', 'Sreenidhi Institute of Science & Technology', 'Electronics & Communications', '79.6', '100', '0'), (7139, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '151', '312', '4', '109', 'PESIT', 'Telecommunication', '8.46', '10', '0'), (7140, '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '158', '154', '312', '2.5', '107', 'NIT Rourkela', 'Ceramic Engineering', '6.8', '10', '33'), (7141, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '155', '145', '300', '3', '90', 'JNTU', 'mechanical', '72', '100', '0'), (7142, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '340', '1100', '3.5', 'None', 'BMSCE', 'Instrumentation Technology', '61.5', '100', '0'), (7143, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (7144, '9', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2013', '161', '144', '305', '3', '7', 'Pune University', 'Mech', '54', '100', '0'), (7145, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '160', '151', '311', '2.5', '0', 'VR Siddhartha Engineering College Vijayawada', 'Electronics & Instrumentation', '85.3', '100', '0'), (7147, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '340', '1130', '3', '94', 'R V College of Engineering', 'Mechanical Engineering', '8.59', '10', '0'), (7148, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '153', '312', '4', 'None', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '65'), (7149, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '148', '307', '3', '89', 'University of Pune', 'Mechanical Engineering', '57', '100', '0'), (7150, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '154', '313', '4', '103', 'Pune University', 'Information technology', '57.58', '100', '44'), (7151, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '106', 'JNTU', 'Electronics & Communication Engineering', '76', '100', '0'), (7152, '9', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2013', '153', '144', '297', '2.5', '83', 'Walchand College Of Engineering', 'civil engineering', '67', '100', '0'), (7153, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '800', '450', '1250', '3', '108', 'Sardar Vallabhbhai National Institute of Technology', 'Electronics and communication', '8.27', '10', '0'), (7154, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '111', 'Thapar University', 'Mechanical Department', '8', '10', '0'), (7155, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '147', '310', '3.5', '92', 'RUET', 'EEE', '3.87', '4', '0'), (7156, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (7157, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '157', '149', '306', '3.5', '94', 'Velammal Engineering College', 'Production Engineering', '7.9', '10', '2'), (7159, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '590', '1340', '3', '112', 'YCCE', 'Electronics', '67', '100', '0'), (7160, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '150', '311', '3', '104', 'University of Pune', 'electronics and telecommunication', '64', '100', '0'), (7161, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '156', '145', '301', '2.5', '86', 'None', 'electronics and communication', '76', '100', '0'), (7162, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '168', '152', '320', '3.5', 'None', 'mharana pratap college of technology gwalior', 'Electrical', '74.8', '100', '0'), (7163, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '610', '1410', '4.5', '108', 'MU', 'Mechanical', '60', '100', '0'), (7165, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '160', '149', '309', '3.5', '106', 'University of Pune', 'Mechanical Engineering (Sandwich Pattern) - involving 2 semesters industrial internship as part of the curriculum', '60.45', '100', '18'), (7166, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '147', '308', '3', '80', 'JNTU', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '61.74', '100', '0'), (7167, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '162', '318', '3.5', '113', 'VJTI', 'Mechanical', '7.4', '10', '0'), (7168, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (7169, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '164', '148', '312', '3', '109', 'GITAM', 'ECE', '8.3', '10', '0'), (7170, '9', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '162', '151', '313', '3', '101', 'Amrita Vishwa Vidhyapeetham', 'Electronics and Instrumentation Engineering', '7.48', '10', '43'), (7171, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (7172, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7173, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '89', 'Sreenidhi Institute of Science & Technology', 'ECE', '82', '100', '0'), (7174, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '2.5', '106', 'Amrita School of Engineering', 'ECE', '6.68', '10', '0'), (7175, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '4', '108', 'Govt. Engineering College Thrissur Calicut University', 'Electronics and Communication', '77.1', '100', '0'), (7177, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '150', '309', '3', '91', 'JNTU', 'computer science', '75', '100', '0'), (7178, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3', '96', 'Symbiosis Institute of Technology', 'Mechanical', '2.984', '4', '0'), (7180, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '110', 'NIT Karnataka', 'information Technology', '7.82', '10', '0'), (7182, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '155', '137', '292', '2.5', 'None', 'Khulna University of Engineering and Technology', 'Electrical & Electronic Engineering', '3', '4', '0'), (7183, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '151', '310', '3', '109', 'MU', 'Electronics and telecom', '64.5', '100', '0'), (7184, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3', '99', 'COEP', 'Instrumentation & Control', '7.57', '10', '20'), (7185, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '156', '149', '305', '3', 'None', 'Vasavi College of Engineering', 'Mechanical', '75.73', '100', '0'), (7186, '9', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '740', '480', '1220', '3', '92', 'Rajarambapu Institute of Technolog)y ( shivaji University', 'Electronics and Telecommunication', '70', '100', '0'), (7187, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (7188, '9', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7189, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '450', '1180', '3', '105', 'Sri Sairam Engineering College', 'Electronics and communication', '84', '100', '0'), (7190, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '520', '1280', '4', '104', 'Amrita School of Engineering', 'ece', '8.02', '10', '0'), (7191, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (7192, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '159', '157', '316', '4.5', '110', 'Pune University', 'Mechanical Engineering', '57', '100', '0'), (7193, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '155', '317', '4', 'None', 'JNTU', 'Mech Engg', '78', '100', '0'), (7195, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '156', '153', '309', '3', '104', 'Babu Banarasi Das NIT and Management Lucknow. UPTU', 'Mechanical Engineering', '73.22', '100', '0'), (7196, '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '158', '151', '309', '3', '93', 'Pune University', 'E& TC', '67', '100', '24'), (7197, '9', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '530', '1290', '3', '95', 'Sri Venkateswara College of Engineering', 'chemical engineering', '7.8', '10', '0'), (7198, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '144', '308', '3.5', '99', 'VTU', 'Electronics and communication', '82.5', '100', '0'), (7199, '9', 'Reject', 'MS', 'Applied Mathematics', 'Fall ', '2013', '163', '146', '309', '3', '98', 'Burdwan University', 'Mathematics', '61', '100', '0'), (7200, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '710', '490', '1200', '4', '111', 'Osmania University', '0', '73', '100', '0'), (7201, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '156', '152', '308', '3', '105', 'DSCE', 'Automobile', '66', '100', '0'), (7202, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '790', '530', '1320', '3', '105', 'Pune University', 'Mech', '61.54', '100', '0'), (7203, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (7204, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '93', 'Gayatri College of Engineering', 'Computer Science Engineering', '74.73', '100', '0'), (7205, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '4', '103', 'MU', 'Computer Engg Dept', '64', '100', '0'), (7206, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '149', '317', '3.5', '95', 'Nagpur University', 'Electronics Telecommunication', '72', '100', '0'), (7207, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '85', 'MU', 'Information Technology', '58', '100', '0'), (7208, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '147', '312', '4', '105', 'GITAM', 'Electrical & Electronics', '7.7', '10', '0'), (7209, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '450', '1250', '4.5', '277', 'J. B. Insititute of Engg & Tech./ aff. to JNTU', 'ECE', '70', '100', '0'), (7210, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '151', '151', '302', '3.5', '93', 'VIT University', 'Civil Engineering', '7.64', '10', '0'), (7211, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3', '102', 'Gujarat Technological University', 'Mechatronics', '7.86', '10', '0'), (7212, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '146', '309', '3', '7', 'SASTRA', 'Mechanical', '8.95', '10', '0'), (7213, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '167', '156', '323', '3', '107', 'NIT Allahabad', 'Electrical', '7.04', '10', '50'), (7214, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '161', '151', '312', '3', '7', 'NIT Hamirpur', 'Mechanical', '8.26', '10', '24'), (7215, '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '158', '160', '318', '4.5', '110', 'Anna University', 'ECE', '83', '100', '0'), (7216, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '97', 'Valliammai Engineering College', 'Computer Science and Engineering', '81.4', '100', '0'), (7217, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '143', '299', '3.5', '93', 'Yeshwantrao Chavan College of Engineering', 'Mechanical Engineering', '64.8', '100', '0'), (7218, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '158', '157', '315', '3', '107', 'RTM Nagpur University', 'MECHANICAL ENGG', '62', '100', '0'), (7219, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '750', '510', '1260', '3', '104', 'SNIST', 'electronics and computers', '71', '100', '0'), (7220, '9', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (7221, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '152', '319', '3', '98', 'NIT Warangal', 'Mechanical Engineering', '8.16', '10', '18'), (7222, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '142', '304', '3', 'None', 'Pune University', 'Mechanical', '62', '100', '0'), (7224, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '3', '104', 'MU', 'Computer', '71.2', '100', '0'), (7225, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (7226, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '460', '1230', '3', 'None', 'WBUT', 'electrical', '8.25', '10', '0'), (7227, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '690', '1490', '3', '111', 'MU', 'Mechanical Engineering', '52', '100', '0'), (7229, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '1350', '560', '1910', '790', '105', 'MGMCET Mumbai University', 'Computer Engineering', '58', '100', '0'), (7230, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '13', '165', '144', '309', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Mechanical', '71', '100', '0'), (7231, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '110', 'K J Somaiya College of Engiineering', 'ELECTRONICS', '75', '100', '0'), (7232, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '156', '141', '297', '2.5', '89', 'VTU', 'Mechanical Engineering', '63.5', '100', '0'), (7233, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '144', '310', '3.5', '95', 'Kurukshetra University', 'Mechanical Engineering', '71.18', '100', '0'), (7234, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '159', '318', '3.5', '106', 'Goa University', 'Information Technology', '64', '100', '36'), (7235, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '160', '154', '314', '3.5', '107', 'MU', 'mechanical engineering', '57', '100', '0'), (7236, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '145', '312', '3.5', '100', 'Bhilai Institute of Technology', 'Information Technology', '8.41', '10', '0'), (7237, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '153', '149', '302', '3.5', 'None', 'VTU', 'Mechanical Engineering', '8.9', '10', '0'), (7238, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '140', '291', '3', '87', 'RAIT', 'IT', '57', '100', '0'), (7239, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2014', '161', '148', '309', '3', '101', 'VTU', 'Mechanical', '75.3', '100', '16'), (7240, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '650', '450', '1100', '3.5', '92', 'University of Calicut', 'ECE', '66', '100', '0'), (7241, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '690', '450', '1140', '3', '102', 'Anna University', 'ece', '7.9', '10', '0'), (7242, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (7243, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '790', '360', '1150', '3.5', '106', 'NIT Tirchy', 'Mechanical Engineering', '7.49', '10', '0'), (7244, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '147', '305', '3', '96', 'MU', 'computer engg', '61', '100', '0'), (7245, '9', 'Reject', 'MS', 'Instrumentation and Control', 'Spring ', '2016', '157', '149', '306', '3', '88', "St Joseph's College of Engineering", 'Electronics and instrumentation engineering', '7.5', '10', '0'), (7246, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '149', '308', '3', '97', 'BITS Goa', 'Mechanical', '7', '10', '0'), (7247, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', '3', '84', 'None', 'Electronics and Communication', '70', '100', '0'), (7248, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '350', '1090', '3', '103', 'Sir MVIT', 'E&C;', '78', '100', '0'), (7249, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '159', '143', '302', '3.5', '100', 'Dr. Pauls Engineering College (Anna University)', 'Mechanical Engineering', '7.2', '10', '0'), (7250, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '163', '149', '312', '4.5', '105', 'Kurukshetra University', 'Mechanical Engineering', '71.2', '100', '0'), (7251, '9', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '480', '1260', '3.5', '103', 'MU', 'EXTC', '55', '100', '0'), (7252, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (7253, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3', '98', 'None', '0', '0', '0', '0'), (7254, '9', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2015', '163', '153', '316', '3.5', 'None', 'PSG College of Technology', 'Automobile Engineering', '8.51', '10', '51'), (7255, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '148', '309', '4', '106', 'University Vishweriah College of Engineering', 'Electronics and Communication', '68.08', '100', '0'), (7256, '9', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '160', '150', '310', '3', '96', 'SJBIT', 'ECE', '71', '100', '0'), (7258, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '780', '480', '1260', '3.5', '105', 'MU', 'Mechanical', '60.8', '100', '0'), (7259, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (7260, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '420', '1200', '3.5', '94', 'Pune University', 'mechanical engineering', '61', '100', '0'), (7261, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '167', '147', '314', '2', '95', 'GITAM', 'Computer Science', '8.15', '10', '0'), (7262, '9', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '164', '155', '319', '4', '107', 'BITS Goa', 'Biological Sciences Electronics & Instrumentation', '7.14', '10', '0'), (7263, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '156', '157', '313', '3.5', '104', "St Joseph's College of Engineering", 'ECE', '8.5', '10', '0'), (7264, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '163', '145', '308', '3', '99', 'Anna University', 'Mechanical Engineering', '9.25', '10', '0'), (7265, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '146', '161', '307', '3', '86', 'JNTU', 'ECE', '81.5', '100', '0'), (7266, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '146', '307', '3.5', '102', 'Dr D Y Patil School of Engineering', 'Mechanical Engineering', '60.4', '100', '0'), (7267, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '530', '1310', '4.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical', '56', '100', '0'), (7268, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '150', '308', '3', 'None', 'JNTU', 'ece', '80.5', '100', '0'), (7269, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '156', '323', '3.5', '104', 'SGSITS', 'IT', '6.58', '10', '0'), (7270, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '300', '1080', '3', '90', 'Sir MVIT', 'Electronics and communication', '72', '100', '0'), (7271, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '152', '144', '296', '3', '90', 'Institute of Engineering & Technology DAVV', 'Electronics & Instrumentation', '70.56', '100', '0'), (7272, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '580', '1330', '3.5', '106', 'VTU', 'Instrumentation Tech', '61', '100', '0'), (7273, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '151', '307', '4', '100', 'Pondicherry University', 'Electronics and Instrumentation', '8.2', '10', '0'), (7274, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2009', '770', '330', '1100', '3', '96', 'S.P.University V.V.Nagar Gujarat', 'Mechanical', '6.7', '10', '0'), (7275, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '159', '144', '303', '3.5', '104', 'Osmania University', 'Mechanical', '83', '100', '0'), (7276, '9', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '157', '142', '299', '3', '92', 'PSG College of Technology', 'Metallurgical Engineering', '7', '10', '0'), (7277, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (7278, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '640', '1420', '3', '107', 'Pune University', 'Electronics & Telecomm', '79.4', '100', '0'), (7279, '9', 'Reject', 'MS', 'MIS', 'Spring ', '2014', '159', '147', '306', '3', '92', 'None', 'Information Technology', '73', '100', '0'), (7280, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (7281, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '540', '1270', '3', '100', 'MVGR', 'ECE', '73', '100', '0'), (7282, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '710', '430', '1140', '2.5', '89', 'Anna University', 'MECHANICAL', '7.84', '10', '0'), (7283, '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '166', '145', '311', '3', 'None', 'VIT University', 'ECE', '8.27', '10', '0'), (7284, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '630', '330', '960', '3', '89', 'Sri Krishna College Of Engineering And Technology', 'Mechatronics', '8.3', '10', '0'), (7285, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '144', '303', '3.5', '90', 'Coimbatore Insitute of Technology', 'Information Technology', '8.29', '10', '0'), (7286, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '149', '311', '3', '102', 'VJTI', 'Production Engineering', '7.6', '10', '0'), (7287, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (7288, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '144', '308', '3', '88', 'GITAM', 'Electronics(ECE)', '8.01', '10', '0'), (7289, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '760', '520', '1280', '3.5', '113', 'JNTU', 'Computer Science', '67', '100', '0'), (7290, '9', 'Reject', 'MS', 'Chemical Engineering', 'Spring ', '2012', '780', '550', '1330', '3', '98', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.24', '10', '0'), (7291, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '154', '319', '3', '101', 'NIT Calicut', 'Electronics and communication engineering', '7.07', '10', '0'), (7292, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical', '72', '100', '0'), (7293, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '680', '510', '1190', '3', '83', 'Sri Sairam Engineering College', 'Mechanical Engineering', '72', '100', '0'), (7294, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2006', '780', '550', '1330', '3.5', '273', 'Sathyabama University', 'Electronics & Communication', '85', '100', '0'), (7295, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '159', '145', '304', '3', '82', 'MU', 'Instrumentation Engineering', '53', '100', '0'), (7296, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '740', '410', '1150', '3.5', '94', 'MU', 'MECHANICAL', '56', '100', '0'), (7297, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'None', 'EEE', '8.3', '10', '0'), (7298, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '314', '152', '466', '3', '88', 'VIT Pune', 'Mech', '8.23', '10', '0'), (7299, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2012', '770', '510', '1280', '3.5', '98', 'PVG COET Pune', 'Mechanical Engineering', '58.35', '100', '0'), (7300, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (7301, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '300', '1060', '3', '92', 'RNSIT', 'Electronics and Communication', '68', '100', '0'), (7302, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (7303, '9', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '156', '150', '306', '3.5', '100', 'COEP', 'M.Tech Mechatronics', '7.71', '10', '0'), (7304, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (7305, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '158', '156', '314', '3', 'None', 'Govt. Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '74.8', '100', '0'), (7306, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (7307, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '157', '150', '307', '4', '109', 'K J Somaiya College of Engiineering', 'Electronics', '55.4', '100', '30'), (7308, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '144', '305', '3', '89', 'MU', 'Mechanical', '65.66', '100', '24'), (7309, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (7310, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '148', '315', '3', '99', 'COEP', 'Instrumentation and Control', '8.2', '10', '0'), (7311, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '152', '319', 'None', '99', 'IIIT Allahabad', 'Information Technology', '7.08', '10', '0'), (7312, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '149', '311', '3.5', '104', 'MU', 'Electronics and Telecommunication', '65', '100', '0'), (7313, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2016', '162', '142', '304', '3', '91', 'Pune University', 'Mechanical', '68.7', '100', '32'), (7314, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '540', '1340', '3', '87', 'RAIT', 'Electronics and Telecom', '69.3', '100', '0'), (7315, '9', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (7316, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '155', '146', '301', '3.5', 'None', 'VTU', 'Information Science', '70.5', '100', '0'), (7318, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2013', '170', '153', '323', '3', '104', 'BITS Goa', 'Mechanical', '6', '10', '0'), (7319, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '720', '400', '1120', '3', '97', 'Anna University', 'BE CSE', '80', '100', '0'), (7320, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '152', '310', '3', '114', 'MG University', 'mechanical engineering', '69', '100', '0'), (7321, '9', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '400', '1150', '3', '92', 'Coimbatore Insitute of Technology', 'Electronics and communication Engg', '8.7', '10', '0'), (7322, '9', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '300', '1030', '3', '87', 'MVSR', 'Computer Science', '79', '100', '0'), (7323, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (7324, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '146', '315', '3.5', '98', 'Nit surat', 'Production Engineering', '8.11', '10', '0'), (7325, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '145', '309', '3', '93', 'Kurukshetra University', 'Mechanical', '67.3', '100', '0'), (7326, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '165', '150', '315', '3', '90', 'Dr. B.R Ambedkar NIT Jalandhar', 'Mechanical Engineering', '6.7', '10', '44'), (7327, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '149', '307', '3.5', '7', 'Pune University', 'Mechanical', '60', '100', '0'), (7328, '9', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (7329, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '145', '306', '3', '93', 'VTU', 'telecommunication', '78.4', '100', '0'), (7330, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '470', '1210', '3.5', '112', 'SASTRA', 'Electronics & Communication', '8.6', '10', '0'), (7331, '9', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '410', '1190', '3', '90', 'Punjab Engineering College', 'Electrical', '67.8', '100', '0'), (7332, '9', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '150', '311', '3', '96', 'UPTU', 'Mechanical Engineering', '62', '100', '0'), (7333, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '770', '430', '1200', '3.5', '95', 'BVBCET', 'EE', '8.58', '10', '0'), (7334, '9', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '158', '151', '309', '3', '96', 'Nagpur University', 'Electronics And Telecomm.', '74', '100', '0'), (7335, '9', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (7336, '9', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2017', '161', '144', '305', '3', '90', 'Sinhgad Institute Of Technology And Science, Narhe', 'Civil Engineering', '65', '100', '15'), (7337, '9', 'Reject', 'MS', 'Electrical Engineering', 'Spring', '2019', '162', '140', '302', '3', '-1', 'KLS Gogte Institute Of Technology', 'ECE', '63.4', '100', '0'), (7338, '9', 'Reject', 'MS', 'Industrial Engineering', 'Fall', '2016', '160', '151', '311', '3.5', '98', 'FR CONCEICAO RODRIGUES College of Engineering', 'Production Engineering', '6.5', '10', '0'), (7339, '10', 'Admit', 'MSc', 'Software Engineering', 'Spring', '2017', '154', '131', '285', '2', '-1', 'MLR Institute Of Technology', 'Computer Science', '73', '100', '0'), (7340, '10', 'Admit', 'MSc', 'Software Engineering', 'Fall', '2018', '153', '130', '283', '-1', '-1', 'Gujarat Technological University', 'Information Technology', '8.35', '10', '0'), (7341, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (7342, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '730', '500', '1230', '3.5', '99', 'NIT Silchar', 'Mechanical Engineering', '7.37', '10', '0'), (7345, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '790', '550', '1340', '4', '113', 'MU', 'CS', '66.14', '100', '0'), (7346, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '166', '322', '3.5', '114', 'IIIT Allahabad', 'Electronics & Comm.', '8.98', '10', '0'), (7347, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '460', '1210', '4.5', '111', 'Pune University', 'Computer Engineering', '70', '100', '0'), (7348, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (7349, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4.5', '109', 'SSN College of Engineering', 'Electrical & Electronics', '8.1', '10', '0'), (7350, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '3', '107', 'IT BHU', 'Electronics Engg', '8.93', '10', '0'), (7351, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'Anna University', 'CS', '8.8', '10', '0'), (7355, '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7356, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '710', '1510', 'None', '103', 'NIT Kurukshetra', 'Computer Engineering', '9', '10', '0'), (7357, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '163', '163', '326', '4.5', 'None', 'lafayette college', 'engineering', '0', '0', '0'), (7358, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '150', '318', '4', '104', 'NIT Rourkela', 'Computer Science', '9.26', '10', '0'), (7359, '11', 'Admit', 'MS', 'Civil Engineering', 'Spring ', '2011', '770', '490', '1260', '3.5', '105', 'VTU', 'Mechanical Engineering', '69', '100', '0'), (7360, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (7361, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (7362, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '161', '322', '3.5', '115', 'None', '0', '0', '0', '0'), (7363, '11', 'Admit', 'MS', 'Metallurgy and Materials Engineering', 'Fall ', '2013', '167', '151', '318', '4', '106', 'Delhi College Of Engineeing', 'Mechanical Engineering', '70', '100', '0'), (7364, '11', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (7365, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (7366, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', 'None', 'None', '0', '4', 'None', 'VTU', 'Information Science', '85', '100', '0'), (7367, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '115', 'MU', 'CS', '75', '100', '0'), (7368, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (7369, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7370, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '163', '158', '321', '4', '110', 'IT BHU', 'Mechanical Engg.', '8.53', '10', '0'), (7371, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '110', 'Nirma Institute of Technology', 'CS', '8.76', '10', '0'), (7372, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (7373, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '165', '155', '320', '3', '110', 'Thapar University', 'Mechanical', '7.83', '10', '0'), (7374, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '166', '163', '329', '4.5', '114', 'BITS Hyderabad', 'Civil Engineering', '8.95', '10', '0'), (7375, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (7376, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '168', '151', '319', '4', '112', 'None', '0', '8.2', '10', '0'), (7377, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '160', '152', '312', '3', '110', 'VTU', 'Telecommunication', '8.67', '10', '36'), (7378, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (7379, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '117', 'NIT Warangal', 'CSE', '8.53', '10', '0'), (7380, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4', '113', 'JSSATE', 'IT', '72', '100', '0'), (7381, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '166', '163', '329', '5', 'None', 'VTU', 'Electronics and Communication', '8.2', '10', '0'), (7382, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (7383, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '164', '153', '317', '4', '108', 'SSN College of Engineering', 'CSE', '84.45', '100', '0'), (7384, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '156', '150', '306', '4', '104', 'VIT', 'Information Technology', '9.1', '10', '0'), (7385, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (7386, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (7387, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (7388, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '159', '319', '4', '114', 'NIT Allahabad', 'Electronics & Communication', '7.21', '10', '0'), (7389, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '158', '328', '4', '115', 'MSRIT', 'Computer Science', '8.94', '10', '0'), (7390, '11', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '770', '600', '1370', '4', 'None', 'University of California Berkeley', 'Electrical Engineering and Computer Science', '3.83', '4', '0'), (7391, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '109', 'University College of Engineering Osmania University', 'Mechanical Engineering', '9.14', '10', '0'), (7393, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '145', '307', '4', '102', 'VTU', 'telecommunication', '9.24', '10', '36'), (7394, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (7395, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (7396, '11', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (7397, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '158', '322', '3.5', '114', 'PESIT', 'Telecommunication Department', '8.43', '10', '0'), (7398, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', 'None', 'None', '0', 'None', 'None', 'PESIT', 'Information Science', '78', '100', '0'), (7399, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7400, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.3', '10', '0'), (7401, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '112', 'NITK Surathkal', 'Computer Science', '0', '0', '0'), (7402, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '159', '320', '4', '111', 'MU', 'Computer SCience', '81.29', '100', '12'), (7403, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '159', '322', '5', '111', 'R V College of Engineering', 'Computer Science', '9.32', '10', '0'), (7404, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (7405, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '152', '320', '3.5', '101', 'D J Sanghvi', 'EXTC', '76.42', '100', '0'), (7406, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '152', '312', '4', '110', 'VTU', 'ECE', '74.6', '100', '0'), (7407, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '164', '154', '318', '4', '112', 'VTU', 'Computer Science', '71.5', '100', '0'), (7408, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '720', '1510', '5', '290', 'University of Mumbai', 'Information Technology', '69.4', '100', '0'), (7409, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '790', '550', '1340', '4', '267', 'University of Madras', 'CS', '88', '100', '0'), (7410, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '157', '325', '4', '114', 'Sardar Patel College of Engineering', 'Electronics', '75.3', '100', '22'), (7411, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (7412, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '114', 'SASTRA', 'Computer Science', '9.29', '10', '0'), (7413, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3', '97', 'None', 'ECE', '9.38', '100', '0'), (7414, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '620', '1390', '4', '111', 'Pune University', 'Mechanical', '66', '100', '0'), (7415, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (7416, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '3.5', '97', 'R V College of Engineering', 'Telecommuniction Engineering', '83', '100', '0'), (7417, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (7418, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '161', '150', '311', '3.5', '106', 'VIT', 'civil', '9.27', '10', '0'), (7419, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '150', '311', '3', 'None', 'VTU', 'Information Science', '83.07', '100', '25'), (7420, '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2012', '800', '720', '1520', '4', '116', 'SRM University', 'Biotech', '8.71', '10', '0'), (7421, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '510', '1300', '4', '103', 'None', '0', '0', '0', '0'), (7422, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (7423, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (7424, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '159', '327', '4', '100', 'IIIT Allahabad', 'IT', '8.54', '10', '0'), (7425, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (7426, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '590', '1360', '3.5', '104', 'BITS Pilani', 'EEE', '9.18', '10', '0'), (7427, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '3.5', '112', 'BMSCE', 'Infomation Science and Engineering', '76.2', '100', '0'), (7428, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (7429, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '154', '323', '3', '105', 'Delhi College Of Engineeing', 'Information Technology', '71.06', '100', '0'), (7430, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (7431, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (7432, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (7433, '11', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7434, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '5.5', '109', 'VTU', 'CSE', '9.8', '10', '0'), (7435, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '170', '153', '323', '4', '104', 'VIT', 'Mechanical(specialization in Energy)', '8.9', '10', '0'), (7436, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (7437, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '166', '152', '318', '3.5', '110', 'Nirma Institute of Technology', 'Computer Science', '8.89', '10', '0'), (7438, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '660', '1340', '3.5', '111', 'IIT Delhi', 'CS', '8.5', '10', '0'), (7439, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (7440, '11', 'Admit', 'MS', 'Systems Engineering', 'Fall ', '2012', '160', '154', '314', '4.5', '117', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '64.23', '100', '0'), (7441, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '4', 'None', 'UMass Lowell', 'Electrical And Computer Engineering', '0', '0', '0'), (7442, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2012', '167', '157', '324', '4.5', '109', 'NIT - Trichy', 'Mechanical Engineering', '8.8', '10', '0'), (7443, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '3.5', '108', 'Nirma Institute of Technology', 'INFORMATION TECHNOLOGY', '8.1', '10', '0'), (7444, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '110', 'BITS Pilani', 'civil engg', '7.99', '10', '0'), (7445, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '153', '322', '4.5', '118', 'SSN College of Engineering', 'Chemical', '8.9', '10', '0'), (7446, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', 'None', 'U of Washington', 'Computer Science and Engineering', '3.78', '4', '0'), (7447, '11', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (7448, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '161', '155', '316', '4', '108', 'BITS Dubai', 'ECE', '9.06', '10', '0'), (7449, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '115', 'MAIT GGSIPU', 'CSE', '79', '100', '0'), (7450, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '470', '1270', '3.5', '105', 'IIT Madras', 'civil engineering', '8.4', '10', '0'), (7451, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (7452, '11', 'Admit', 'MS', 'physics', 'Fall ', '2011', '790', '670', '1460', '4.5', '114', 'IIT Madras', 'Physics', '9.45', '10', '0'), (7453, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7454, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '690', '1470', '3.5', '115', 'Bharati Vidyapeeth', 'CSE', '80.5', '100', '0'), (7455, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '154', '318', '3.5', '109', 'VTU', 'EC', '75', '100', '0'), (7456, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (7457, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '770', '600', '1370', '4', '113', 'SASTRA', 'Electronics and Communications Engineeing', '8.5', '10', '0'), (7458, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '113', 'R V College of Engineering', 'CSE', '9.42', '10', '0'), (7459, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (7460, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (7461, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', 'None', 'None', '0', '3.5', 'None', 'None', '0', '0', '0', '0'), (7462, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (7463, '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (7464, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '680', '590', '1270', '3.5', '106', 'MDU', 'UIET', '78', '100', '0'), (7465, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '152', '315', '3.5', 'None', 'Stony Brook University', 'Chemistry', '3.5', '4', '0'), (7466, '11', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2009', '750', '680', '1430', '4', '113', 'JNTU', 'Mechanical Engineering', '0', '0', '0'), (7467, '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '160', '155', '315', '3', '107', 'MSRIT', 'Chemical Engineering', '8.5', '10', '0'), (7468, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (7469, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7470, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '510', '1310', '3', '111', 'ITAM', 'Digital Systems', '7.83', '10', '0'), (7471, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2011', '800', '690', '1490', '6', '117', 'VTU', 'Mechanical Engineering', '74', '100', '0'), (7473, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '157', '318', '3', '108', 'GKV', 'ECE', '76', '100', '0'), (7474, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', 'None', '109', 'VTU', 'Computer Science', '81.07', '100', '0'), (7475, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '159', '154', '313', '3', '107', 'Vidyalankar Institute of Technology', 'Electronics & Telecommunications', '66.58', '100', '0'), (7476, '11', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (7477, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (7478, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '670', '1440', '3.5', '116', 'SSCET Bhilai', 'ETC', '7.62', '10', '0'), (7479, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '150', '311', '4', '99', 'MSRIT', 'CSE', '9.13', '10', '8'), (7480, '11', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (7481, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '111', 'Jadavpur University', 'Electronics and Telecomm Engg.', '9.26', '10', '0'), (7482, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (7483, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (7484, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (7485, '11', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7486, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '150', '308', '3.5', '102', 'PSG College of Technology', 'ECE', '9.2', '10', '33'), (7487, '11', 'Admit', 'MS', 'statistics', 'Fall ', '2011', '790', '610', '1400', '3.5', '111', 'BITS Pilani', 'Maths and Engg', '8.72', '10', '0'), (7488, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (7489, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '450', '1250', '4', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '64.04', '100', '0'), (7490, '11', 'Admit', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '167', '153', '320', '4', '105', 'IIT (BHU) Varanasi', 'Ceramic Engineering', '7.02', '10', '24'), (7491, '11', 'Admit', 'MS', 'Master of engineering management', 'Fall ', '2013', '164', '152', '316', '4', 'None', "Queen's University", 'Civil', '3.3', '4', '0'), (7492, '11', 'Admit', 'MS', 'Biotechnology', 'Fall ', '2011', '740', '600', '1340', '3', '110', 'Jaypee Institute of Information Technology', 'Biotechnology', '7.8', '10', '0'), (7493, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '580', '1330', '3.5', '101', 'Bharati Vidyapeeth', 'EEE', '69.38', '100', '0'), (7494, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '720', '410', '1130', '3.5', '101', 'SJCE', 'Information Science', '78', '100', '0'), (7495, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '118', 'SASTRA', 'Civil Engineering', '9.45', '10', '0'), (7496, '11', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '790', '610', '1400', '4', '105', 'VTU', 'EEE', '78', '100', '0'), (7497, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', '520', '1250', 'None', 'None', 'VTU', 'Computer Science', '80', '100', '0'), (7498, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2013', '170', '154', '324', 'None', '111', 'NIT Kurukshetra', 'Electrical Engineering', '9.72', '10', '0'), (7500, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '154', '311', '3.5', '110', 'R V College of Engineering', 'Computer Science', '80', '100', '0'), (7501, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '148', '310', '4', '110', 'MSRIT', 'Computer Science and Engineering', '9.1', '10', '0'), (7502, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (7503, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (7504, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '4', '109', 'PESIT', 'Information Science', '9.47', '10', '39'), (7505, '11', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '710', '1490', '4', '112', 'SPCE', 'Electronics', '70', '100', '0'), (7506, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', '112', 'NIT Srinagar', 'chemical Engineering', '7.41', '10', '0'), (7507, '11', 'Admit', 'MS', 'biomedical sciences', 'Spring ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7508, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (7509, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '480', '1280', '3.5', '105', 'Anna University', 'ECE', '82', '100', '0'), (7510, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '770', '580', '1350', '4', '109', 'Pune University', 'Electronics & Telecommunication', '3.16', '4', '0'), (7511, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Spring ', '2014', '800', '640', '1440', '4.5', '112', 'NIT Warangal', 'Mechanical Engineering', '9.15', '10', '0'), (7512, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (7513, '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (7514, '11', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (7515, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '147', '309', '3', '104', 'Anna University', 'Computer Science', '9.41', '10', '0'), (7516, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '159', '151', '310', '3.5', '107', 'SSN College of Engineering', 'BIOMEDICAL ENGINEERING', '8.9', '10', '0'), (7517, '11', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (7518, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '163', '153', '316', '4', '116', 'BITS Pilani', 'EEE', '9.27', '10', '0'), (7519, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '162', '152', '314', '4.5', '112', 'PESIT', 'CSE', '78.5', '100', '15'), (7520, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '560', '1360', '4', '113', 'JNTU', 'ECE', '3.62', '4', '0'), (7521, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (7522, '11', 'Admit', 'MS', 'health administration', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7523, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '3.5', '109', 'SVNIT Surat', 'Electronics Department', '9.53', '10', '0'), (7524, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '163', '155', '318', '5.5', '118', 'None', '0', '0', '0', '0'), (7525, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '165', '149', '314', '3', '102', 'Maulana Azad National Institute of Technology', 'Computer Science and Engineering', '8.43', '10', '0'), (7526, '11', 'Admit', 'MS', 'physics', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'UCLA', 'Physics', '3.86', '4', '0'), (7527, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '3.5', '111', 'BITS Pilani', 'Computer Science', '9.23', '10', '0'), (7528, '11', 'Admit', 'MS', 'food science', 'Fall ', '2011', '790', '540', '1330', '3', '100', 'University of Rajasthan', 'Biotechnology', '68.5', '100', '0'), (7529, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (7530, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (7531, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7532, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '148', '309', '3', '93', 'Anna University', 'EE', '8.99', '10', '0'), (7533, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '167', '153', '320', '4', '110', 'B M S College of Engineering', 'Computer science', '77', '100', '0'), (7534, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (7535, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (7536, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2011', '790', '620', '1410', '4.5', '117', 'SASTRA', 'Information & Communication technology', '8.6', '10', '0'), (7537, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '790', '710', '1500', '4', '108', 'SASTRA', 'ECE', '0', '0', '0'), (7538, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '157', '319', '4.5', '108', 'VIT University', 'CSE', '8.8', '10', '0'), (7539, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (7540, '11', 'Admit', 'MS', 'Instrumentation and Control', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'Cummins College of Engineering Pune', 'instrumentation and control', '0', '100', '0'), (7541, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (7542, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '4', '102', 'National institue of technology jalandhar', 'Ec', '66', '100', '0'), (7543, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '800', '570', '1370', '40', '112', 'MU', 'Mech ENgg', '3.62', '4', '0'), (7544, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '540', '1340', '4', '104', 'MIT Pune', 'Computer Science', '72', '100', '0'), (7545, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '3.5', '115', 'MNNIT', 'Computer Science and Engineering', '9.97', '10', '0'), (7546, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'IIT Allahabad', 'Information Technology', '9.17', '10', '0'), (7547, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '780', '510', '1290', 'None', '106', 'R V College of Engineering', 'Computer science', '0', '0', '0'), (7548, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '490', '1290', '3', '102', 'Delhi College Of Engineeing', 'IT', '76.25', '100', '0'), (7549, '11', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2012', '720', '480', '1200', '4', '114', 'Pune University', 'COMPUTER ENGINEERING', '73', '100', '0'), (7550, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '105', 'NIT Jaipur', 'Computer Engineering', '8.85', '10', '0'), (7551, '11', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2012', '780', '700', '1480', '3', '111', 'IIT Guwahati', 'Civil Engineering', '9.29', '10', '0'), (7552, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '117', 'R V College of Engineering', 'Mechanical Engg', '9.07', '10', '0'), (7553, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '162', '328', '4.5', '118', 'College of Engineering and Technology', 'Computer Science and Engineering', '9.09', '10', '90'), (7554, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (7555, '11', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (7556, '11', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (7557, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (7558, '11', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (7559, '11', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (7560, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '149', '314', '3', '101', 'Anna University', 'EEE', '9.1', '10', '0'), (7561, '11', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (7562, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '3.5', '104', 'NIT Silchar', 'cse', '8.14', '10', '0'), (7563, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '163', '162', '325', '4', 'None', 'Colgate University', 'Chemistry', '3.5', '4', '0'), (7564, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (7565, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '790', '1580', '4.5', '113', 'Anna University', 'Information Technology', '81', '100', '0'), (7566, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '590', '1390', '3', '109', 'IIT Roorkee', 'ECE', '8.744', '10', '0'), (7567, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', '99', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Science', '65.73', '100', '0'), (7568, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '700', '550', '1250', 'None', 'None', 'None', '0', '0', '0', '0'), (7570, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '318', '153', '471', '4.5', '106', 'VIT University', 'Electronics and Communication', '8.97', '10', '0'), (7571, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '159', '163', '322', 'None', 'None', 'NIT Allahabad', 'Production & Industrial Engg', '7.8', '10', '0'), (7572, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '169', '335', '4.5', '119', 'VJTI', 'Mechanical Engg.', '8.5', '10', '0'), (7573, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall', 'None', '161', '148', '309', '3.5', '105', 'NIT Tirchy', 'ECE', '7.45', '10', '0'), (7574, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '164', '148', '312', '4', '108', 'BITS Hyderabad', 'Electrical Engineering', '7.71', '10', '0'), (7575, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (7576, '11', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '700', '1480', '5', '118', 'None', '0', '0', '0', '0'), (7577, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '570', '1350', '4', '106', 'VTU', 'Electronics and communication', '88', '100', '0'), (7578, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (7579, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '770', '540', '1310', '3', '96', 'CEG', 'ECE', '8.48', '10', '0'), (7580, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '163', '331', '3.5', '118', 'Thapar University', 'Mechanical', '9.06', '10', '0'), (7581, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '660', '1460', '4', '109', 'PESSE (VTU)', 'ECE', '86', '100', '0'), (7582, '11', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '100', 'CEG', 'Ece', '8.8', '10', '0'), (7583, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (7585, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (7586, '11', 'Admit', 'MS', 'Veterinary & Animal Science', 'Fall ', '2013', '159', '152', '311', '4', '113', 'Kerala Agricultural University', 'Veterinary medicine', '7.6', '10', '0'), (7587, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '800', '680', '1480', '3', '109', 'VTU', 'IS', '79', '100', '0'), (7588, '11', 'Admit', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '620', '1400', '3.5', '108', 'BITS Pilani', 'Electronics and instrumentation and Biology', '7.58', '10', '0'), (7589, '11', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2013', '164', '159', '323', '3.5', '102', 'NIT Tirchy', 'Production Engg', '8.5', '10', '0'), (7590, '11', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (7591, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '116', 'NITK Surathkal', 'CS', '9.13', '10', '0'), (7592, '11', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2011', '800', '650', '1450', '5.5', '120', 'NIT-C', 'architecture', '8.23', '10', '0'), (7593, '11', 'Admit', 'MS', 'Neurosciences', 'Fall', 'None', '152', '158', '310', '3', '90', 'JIPMER', 'BIOCHEMISTRY', '70', '100', '0'), (7594, '11', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '610', '1380', '4', '115', 'SSN College of Engineering', 'ECE', '86', '100', '0'), (7595, '11', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '167', '158', '325', 'None', 'None', 'NIT', 'Computer Science', '9.07', '10', '12'), (7596, '11', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2014', '167', '159', '326', '4.5', '117', 'NIT Karnataka', 'Electronics and Communcation Engineering', '8.56', '10', '0'), (7597, '11', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (7598, '11', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (7599, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '155', '145', '300', '4.5', '85', 'GGSIPU', 'Electronics & Communication Engineering', '76', '100', '0'), (7600, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '148', '317', '3', '98', 'Jaypee Institute of Information Technology', 'IT', '8.3', '10', '0'), (7601, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (7602, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (7603, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '143', '307', '3.5', '110', 'FCRIT Vashi', 'Electrical', '70', '100', '0'), (7604, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (7605, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '168', '155', '323', '3.5', '108', 'MU', 'Electronics', '62', '100', '0'), (7606, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (7607, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (7608, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (7609, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '156', '320', '4', '111', 'DA-IICT', 'ICT', '6.74', '10', '0'), (7610, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (7611, '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '730', '720', '1450', '4', '110', 'CEG', 'ECE', '7.1', '10', '0'), (7612, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '160', '326', '4.5', '120', 'BITS Pilani', 'Mechanical Engineering', '8.04', '10', '0'), (7613, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '150', '312', '3', '87', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7614, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (7615, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3', '105', 'MNNIT', 'CSE', '8.3', '10', '0'), (7616, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '161', '322', '4', '110', 'BITS Goa', 'CS', '8', '10', '0'), (7617, '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '161', '150', '311', '4', '108', 'M.I.T Pune', 'Computer Engineering', '59.87', '100', '0'), (7618, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (7619, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (7620, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '106', 'Jadavpur University', 'Power engg', '7.8', '10', '0'), (7621, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '15', '170', '159', '329', '4', '110', 'Delhi University', 'Electronics and Communication', '71.4', '100', '45'), (7622, '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (7623, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (7624, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (7625, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (7626, '11', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '690', '440', '1130', '3', '81', 'Anna University', 'Computer Science', '85', '100', '0'), (7627, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (7628, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (7629, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '146', '307', '4', '103', 'University of Pune', 'Computer Engineering', '70.12', '100', '0'), (7630, '11', 'Reject', 'MS', 'petroleum engineering', 'Fall ', '2014', '154', '146', '300', '3', '98', 'Bharati Vidyapeeth', 'Instrumentation & Control', '60', '100', '48'), (7631, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '102', 'PEC University of Technology', 'Computer Science', '7.46', '10', '0'), (7632, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (7633, '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (7634, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '163', '150', '313', '4', 'None', 'JSS Noida', 'IT', '77.53', '100', '0'), (7635, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '156', '321', '3.5', '112', 'Bharati Vidyapeeth', 'Information Technology', '3.9', '4', '0'), (7636, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (7638, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '4', '112', 'BITS Goa', 'Bilogical Science and Computer Science', '7.45', '10', '0'), (7639, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '760', '800', '1560', '5.5', '119', 'R V College of Engineering', 'ECE', '80.8', '100', '0'), (7640, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (7641, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '159', '151', '310', '3.5', '109', 'VTU', 'ECE', '78', '100', '0'), (7642, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (7643, '11', 'Reject', 'MS', 'Biomedical Engineering', 'Fall', 'None', '750', '740', '1490', '3', '117', 'UPTU', 'Electronics & Instrumentation', '70', '100', '0'), (7644, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (7645, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '590', '1390', '4.5', '270', 'SPCE', 'IT', '63', '100', '0'), (7646, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'UIET Panjab University', 'Engineering', '76', '100', '0'), (7647, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (7648, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '157', '318', '3', '105', 'UPTU', 'IT', '71', '100', '0'), (7649, '11', 'Reject', 'MS', 'Technology Leadership', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'BVUCOE', 'Electronics Engineering', '62', '100', '8'), (7650, '11', 'Reject', 'MS', 'Engineering Management', 'Spring ', '2013', '730', '480', '1210', '3', '108', 'JNTU', 'Biotechnology', '74', '100', '0'), (7651, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2006', '790', '630', '1420', '5', '293', 'MU', 'Electronics', '72.97', '100', '0'), (7652, '11', 'Reject', 'MS', 'Construction Management', 'Fall ', '2015', '160', '155', '315', '4', '112', 'Manipal Institue of Technology', 'Architecture', '0', '0', '0'), (7653, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '150', '310', '4', '100', 'MDU', 'ece', '60', '100', '0'), (7654, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '650', '1450', '3', '116', 'IIT BHU', 'Mechanical', '72.4', '100', '0'), (7655, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '163', '323', '4', '109', 'None', 'EC', '77.75', '100', '0'), (7656, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', '3.5', '117', 'University of Cape Town', 'Engineering', '69.9', '100', '0'), (7658, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '4', '108', 'VTU', 'CSE', '78', '100', '0'), (7659, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4.5', '112', 'Manipal Institue of Technology', 'CS', '3.5', '4', '0'), (7660, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '155', '325', '4', '113', 'IIT Guwahati', 'Computer Science', '6.8', '10', '0'), (7661, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', 'None', 'VTU', 'CS', '77', '100', '0'), (7662, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (7663, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '160', '162', '322', '4', '115', 'BITS Hyderabad', 'Chemical Engineering', '8.07', '10', '0'), (7664, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2015', '165', '157', '322', '3', '111', 'BITS Pilani', 'MECHANICAL ENGINEERING', '7.56', '10', '0'), (7665, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (7666, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (7667, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (7668, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '165', '149', '314', '3', '104', 'NITJ', 'ICE', '7.75', '10', '58'), (7669, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (7670, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '158', '328', '4.5', '114', 'NIT Kurukshetra', 'Mech', '9.74', '10', '0'), (7671, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (7672, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (7673, '11', 'Reject', 'MS', 'physics', 'Fall ', '2014', '167', '156', '323', '4', '105', 'NIT Calicut', 'Physics', '8.4', '10', '0'), (7674, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '146', '311', '4', '103', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.3', '10', '20'), (7675, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (7676, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '143', '311', '3.5', '102', 'None', '0', '62.27', '100', '0'), (7677, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (7679, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '710', '590', '1300', '3.5', '101', 'Nirma Institute of Technology', 'Computer Engg', '7.02', '10', '0'), (7680, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (7681, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (7682, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (7683, '11', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (7684, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (7685, '11', 'Reject', 'MS', 'food science', 'Fall ', '2012', '740', '470', '1210', '4', '104', 'MU', 'Biotechnology', '70.83', '100', '0'), (7686, '11', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2013', '780', '610', '1390', 'None', '107', 'Amity University', 'Computer Science', '8.53', '10', '0'), (7687, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '155', '319', 'None', '108', 'VTU', 'Computer Science', '72', '100', '0'), (7688, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '110', 'IIT Kharagpur', 'CS', '8.5', '10', '0'), (7689, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (7690, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '4', '105', 'Delhi College Of Engineeing', 'Computer Engineering', '62.5', '100', '0'), (7691, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (7692, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (7693, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (7694, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '150', '319', '4', '105', 'UPTU', 'Electrical Engineering', '76.96', '100', '0'), (7695, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3', '109', 'University of Pune', 'Computer', '72', '100', '0'), (7696, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '4', '109', 'VTU', 'Computer Science', '73', '100', '57'), (7697, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (7698, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '152', '314', '3.5', '112', 'NIT Allahabad', 'ECE', '7.07', '10', '84'), (7699, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (7700, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '169', '161', '330', '4.5', '114', 'Rajasthan Technical University', 'Computer Science Engineering', '83.1', '100', '0'), (7701, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '163', '154', '317', '3.5', '109', 'Manipal Institue of Technology', 'Mechanical Engineering', '7.66', '10', '0'), (7702, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '166', '325', '4', '114', 'MU', 'Computer Engg', '65', '100', '0'), (7703, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '153', '318', '3.5', '108', 'GGSIPU', 'CSE', '73', '100', '44'), (7704, '11', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (7705, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (7706, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (7707, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (7708, '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (7709, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7710, '11', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (7711, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '2.5', '114', 'Anna University', 'CSE', '7.58', '10', '0'), (7712, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '154', '314', '3.5', '104', 'Biju Patnaik University of Technology', 'Electrical Engineering', '8.17', '10', '0'), (7713, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '570', '1340', '3.5', '110', 'Pune University', 'Electronics and Telecomm', '62', '100', '0'), (7714, '11', 'Reject', 'MS', 'Master of engineering management', 'Fall', 'None', '162', '149', '311', '3.5', '107', 'Amrita School of Engineering', 'Mechanical', '7.66', '10', '0'), (7715, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (7716, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (7717, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (7718, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (7719, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '162', '153', '315', '3', '105', 'Model Engineering College', 'Electronics And Communication Engineering', '70', '100', '42'), (7720, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '106', 'Amrita Vishwa Vidhyapeetham', 'Mechanical Engineering', '8.54', '10', '0'), (7721, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '109', 'BITS Pilani', 'computer science', '8.4', '10', '0'), (7722, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (7723, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (7724, '11', 'Reject', 'MS', 'CS', 'Spring ', '2014', '160', '152', '312', '3.5', '113', 'University of Pune', 'Computer Engineering', '60.2', '100', '0'), (7726, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (7727, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '170', '164', '334', '3.5', '113', 'Amrita School of Engineering', 'CSE', '7.73', '10', '0'), (7728, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (7729, '11', 'Reject', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (7730, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (7731, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '790', '470', '1260', '3', '100', 'University of Mumbai', 'Computer Science & Engineering', '59.67', '100', '0'), (7732, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '153', '315', '3.5', 'None', 'JNTU', 'electrical engineering', '70', '100', '0'), (7733, '11', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (7734, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '700', '1430', '3.5', '118', 'MNIT', 'electrical', '7.2', '10', '0'), (7735, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (7736, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (7737, '11', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (7738, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '780', '560', '1340', '3', '102', 'MU', 'Computer Engineering', '74', '100', '0'), (7739, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '610', '1390', '3.5', '112', 'BITS Pilani', 'Computer science', '8.44', '10', '0'), (7741, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '163', '159', '322', '3.5', '98', 'IIT Madras', 'Aerospace', '8.9', '10', '0'), (7742, '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '760', '390', '1150', '3', '99', 'NMIMS', 'Electronics', '3.3', '4', '0'), (7743, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2013', '770', '580', '1350', '3', '98', 'D j Sanghvi', 'Chemical Engineering', '59', '100', '0'), (7744, '11', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '149', '310', '4', '117', 'Gujarat Technological University', 'ELECTRONICS AND COMMUNICATION', '9.13', '10', '20'), (7745, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '340', '1140', '4.5', '111', 'VTU', 'CS', '70', '100', '0'), (7746, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '158', '155', '313', '4.5', '106', 'VTU', 'Electronics and Communication', '73', '100', '13'), (7747, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '500', '1280', '3.5', '108', 'NIT Jaipur', 'Electrical Engg.', '8.41', '10', '0'), (7748, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (7749, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (7750, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (7751, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '162', '162', '324', '4', '116', 'PESIT', '0', '0', '0', '0'), (7752, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '750', '510', '1260', '3', '98', 'MU', 'Chemical Engg', '66.7', '100', '0'), (7753, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (7754, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '93', 'VTU', 'ECE', '85.5', '100', '0'), (7755, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (7756, '11', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (7757, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4', '111', 'NIT', 'Computer Science', '9', '10', '0'), (7758, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2012', '800', '750', '1550', '5', '109', 'IIT Kharagpur', 'Aerospace Engg.', '6.71', '10', '0'), (7759, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '148', '315', '4', '99', 'VTU', 'Mechanical Engineering', '9.23', '10', '20'), (7760, '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '790', '440', '1230', '3.5', '96', 'VTU', 'ECE', '77', '100', '0'), (7761, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '520', '1320', '4', '110', 'R V College of Engineering', 'ECE', '73.9', '100', '0'), (7762, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '152', '311', '3', '103', 'VTU', 'Computer Science', '81', '100', '0'), (7763, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (7764, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', 'None', 'SFIT mumbai', 'EXTC', '70', '100', '0'), (7765, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (7766, '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2011', '770', '530', '1300', '4', '113', 'SVCE', 'Biotechnology', '71.38', '100', '0'), (7767, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (7768, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '3', '108', 'GBPUAT Pantnagar', 'Electrical', '8.3', '10', '59'), (7769, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (7770, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (7771, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (7773, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '111', 'NIT Nagpur', 'CSE', '7.9', '10', '0'), (7774, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (7775, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (7776, '11', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (7777, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '3', '92', 'MIT Pune University', 'Mechanical', '68', '100', '0'), (7779, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (7780, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (7781, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (7782, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (7783, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '106', 'VTU', 'Information Science', '71', '100', '0'), (7784, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '165', '155', '320', '3', '110', 'NIT Tirchy', 'Civil Engineering', '9.3', '10', '0'), (7785, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '690', '1480', '3', '97', 'Pune University', 'Computer', '73', '100', '0'), (7786, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '150', '312', '3.5', '111', 'GZSCET Punjab Technical University', 'Computer Science and Engineering', '78.78', '100', '0'), (7787, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '158', '155', '313', '4.5', '115', 'MSRIT', 'Mechanical Engineering', '8.53', '10', '41'), (7788, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (7789, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (7790, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '150', '313', '3.5', '104', 'CEG', 'Computer Science', '8.96', '10', '0'), (7791, '11', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'Gujarat Technological University', 'Electronics and Communication', '7.7', '10', '0'), (7792, '11', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (7793, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7794, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '4', '107', 'NITK Surathkal', 'Computer Science', '7.93', '10', '0'), (7795, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (7796, '11', 'Reject', 'MS', 'analytics', 'Fall ', '2012', '166', '152', '318', 'None', '109', 'NIT-Trichy', 'Mechanical Engg.', '7.13', '10', '0'), (7797, '11', 'Reject', 'MS', 'CS', 'Fall ', '2012', '168', '156', '324', '4.5', '111', 'BITS Pilani', 'Computer Science', '8.19', '10', '0'), (7798, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (7799, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (7800, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', 'None', 'CEG', 'B.Tech/ IT', '8.783', '10', '0'), (7801, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (7803, '11', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7804, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (7805, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (7806, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (7807, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (7808, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (7809, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '4', '114', 'Rajiv Gandhi Institute Of Technology', '0', '72', '100', '0'), (7810, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '114', 'Institute of Technical Education and Research', 'Computer Science', '9.1', '10', '0'), (7811, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '166', '160', '326', '4', 'None', 'PEC University of Technology', 'Materials and Metallurgical Engineering', '7.5', '10', '2'), (7812, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (7813, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '650', '1400', '3.5', '105', 'SSN College of Engineering', 'Electrical and Electronics', '80', '100', '0'), (7814, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '170', '153', '323', '3.5', '108', 'IIT Kanpur', 'Mechancial', '9', '10', '0'), (7815, '11', 'Reject', 'MS', 'analytics', 'Fall ', '2015', '159', '157', '316', '4.5', '108', 'BITS Pilani', 'Chemical Engg', '6.76', '10', '66'), (7816, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (7817, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (7818, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (7819, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (7820, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '4', '115', 'Dharamsinh Desai University', 'Computer Engineering', '75.25', '100', '0'), (7823, '11', 'Reject', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (7824, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (7825, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '151', '313', '3.5', '109', 'Guru Gobind Singh Indraprashta University', 'Electronics And Communications Engg', '72.11', '100', '0'), (7826, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '161', '151', '312', '3.5', '109', 'Dharamsinh Desai University', 'Information Technology', '60.8', '100', '16'), (7827, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '570', '1340', '4.5', '114', 'PESIT', 'Computer Science and Engg', '82', '100', '0'), (7828, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '161', '327', '3.5', '114', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '67', '100', '0'), (7829, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '670', '1420', '2.5', '105', 'DA-IICT', 'CSE', '2.53', '4', '0'), (7830, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (7831, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (7832, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (7833, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '4.5', '106', 'NIT Tirchy', 'CS', '8.66', '10', '0'), (7834, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (7835, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (7836, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '3.5', '110', 'Anna University', 'Mech', '8.95', '10', '0'), (7837, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (7838, '11', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (7839, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '159', '143', '302', '3', '92', 'CBIT', 'Chem Engg', '65', '100', '0'), (7840, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (7841, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (7843, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (7844, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (7845, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (7846, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '155', '317', '4', '109', 'None', '0', '7.94', '10', '48'), (7847, '11', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (7848, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2011', '800', '570', '1370', '5', '110', 'University of Mumbai', 'Mechanical Engineering', '71.33', '100', '0'), (7849, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (7850, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (7851, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (7852, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (7854, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '170', '149', '319', '3.5', '108', 'SRMSCET Bareilly (affiliated to Uttar Pradesh Technical University)', 'Computer Science and Engineering', '71.26', '100', '38'), (7855, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (7856, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (7857, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall', 'None', '169', '157', '326', '3.5', '102', 'VIT University', 'Chemical Engineering', '8.81', '10', '0'), (7858, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (7859, '11', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (7860, '11', 'Reject', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (7861, '11', 'Reject', 'MS', 'Cell and Molecular Biology', 'Fall ', '2014', '168', '165', '333', '5.5', '118', 'BITS Pilani', 'Biological Sciences', '9.18', '10', '0'), (7862, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '162', '151', '313', '4.5', '106', 'VIT', 'Electronics and Communication', '8.57', '10', '18'), (7863, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (7864, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '670', '1460', '3.5', '104', 'Manipal Institue of Technology', 'Electrical & Electronics', '8.36', '10', '0'), (7865, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (7866, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (7867, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '710', '660', '1370', '4', '112', 'UPTU', 'Electrical', '74.26', '100', '0'), (7868, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (7869, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (7870, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (7871, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (7872, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '158', '320', '3.5', '111', 'Manipal Institue of Technology', 'EEE', '8.2', '10', '0'), (7873, '11', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '800', '680', '1480', '5', '117', 'BITS Pilani', 'Biological Sci Computer Science', '8.5', '10', '0'), (7874, '11', 'Reject', 'MS', 'Manufacturing Engineering', 'Fall', 'None', '162', '150', '312', '4', 'None', 'R V College of Engineering', 'Mechanical', '62.4', '100', '0'), (7875, '11', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '790', '590', '1380', '3.5', '109', 'Lakshmi Niwas Mittal Institute of Information Technology Jaipur', 'Communication and Computer Engineering', '8.3', '10', '0'), (7876, '11', 'Reject', 'MS', 'nanotechnology', 'Fall ', '2013', '168', '160', '328', '3', '111', 'Jaypee Institute of Information Technology', 'Electronics & Communication', '6.5', '10', '0'), (7877, '11', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '800', '640', '1440', 'None', '112', 'Delhi College Of Engineeing', 'Computer Engineering', '73.4', '100', '0'), (7878, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (7879, '11', 'Reject', 'MS', 'MEM', 'Fall ', '2014', '168', '157', '325', '4.5', '116', 'GRIET', 'ECE', '78', '100', '0'), (7880, '11', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '510', '1310', '3.5', '104', 'Yanbian University of Science & Technology', 'EE', '3.2', '4', '0'), (7881, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '158', '148', '306', '3.5', '102', 'BIT Mesra', 'ECE', '7.6', '10', '0'), (7883, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2015', '323', '159', '482', '4', '115', 'NIT Jalandhar', 'Instrumentation and Control', '8.68', '10', '24'), (7884, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '490', '1200', '4', '109', 'Anna University', 'B.E Computer Science', '84', '100', '0'), (7885, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '165', '155', '320', 'None', '107', 'VIT University', 'CS', '8.85', '10', '40'), (7886, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (7887, '11', 'Reject', 'MS', 'Robotics', 'Fall ', '2012', '780', '460', '1240', '3.5', '106', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.25', '10', '0'), (7888, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (7889, '11', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '630', '1430', '3.5', '112', 'Osmania University', 'Electrical Engineering', '71', '100', '0'), (7890, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (7891, '11', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4.5', '116', 'BIT Mesra', 'ECE', '8.24', '10', '0'), (7892, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '163', '155', '318', '3.5', '105', 'Jadavpur University', 'Mechanical Engineering', '8.12', '10', '0'), (7893, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (7894, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (7895, '11', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '152', '322', '3', '100', 'NIT Karnataka', 'Mechanical Engineering', '9.47', '10', '0'), (7896, '11', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '163', '159', '322', '3', '98', 'NIT Silchar', 'Civil Engineering', '6.54', '10', '0'), (7897, '11', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '170', '162', '332', '3.5', '110', 'NIT Calicut', 'Chemical engineering', '6.63', '10', '0'), (7898, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (7899, '11', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '164', '144', '308', '3', '98', 'G.H.Patel college of Engg. & Tech.', 'EC', '8.67', '10', '0'), (7900, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (7901, '11', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '770', '600', '1370', '4.5', '107', 'NIT Bhopal', 'Bioinformatics', '8.14', '10', '0'), (7902, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (7903, '11', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (7904, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (7905, '11', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (7906, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '163', '331', '4.5', '110', 'West Bengal University Of Technology', 'Electrical engg', '8.07', '10', '30'), (7907, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (7908, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (7909, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '141', '297', '3.5', '90', 'Cummins College of Engineering Pune', 'computer science', '64', '100', '0'), (7910, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (7911, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', '114', 'MU', 'Information Technology', '63.5', '100', '0'), (7912, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '113', 'Pune University', 'Computer Science', '67', '100', '0'), (7913, '11', 'Reject', 'MS', 'Engineering Management', 'Fall ', '2014', '170', '163', '333', '4', '111', 'COEP', 'Electrical Engineering', '8.51', '10', '0'), (7914, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (7915, '11', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '161', '148', '309', '4', '95', 'Amrita School of Engineering', 'Information Technology', '7.89', '10', '0'), (7916, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (7917, '11', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (7919, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (7920, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (7921, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '154', '313', '3.5', '97', 'SVCE', 'EEE', '75.04', '100', '0'), (7922, '11', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (7923, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (7924, '11', 'Reject', 'MS', 'Master of engineering management', 'Fall ', '2015', '163', '155', '318', '3.5', '112', 'Govt. College Of Engineering Pune (CoEP)', 'Production Engineering (Sandwich)', '7.1', '10', '18'), (7925, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (7926, '11', 'Reject', 'MS', 'Human Resources', 'Fall ', '2014', '160', '156', '316', '4', '104', 'VTU', 'Eⅇ', '61', '100', '0'), (7927, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '690', '1460', 'None', '118', 'Anna University', 'Computer Engineering', '73', '100', '0'), (7928, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (7929, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '168', '332', '5', '114', 'Jadavpur University', 'Information Technology', '8.8', '10', '0'), (7930, '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2014', '730', '700', '1430', '4', '109', 'VTU', 'cs', '72.6', '100', '0'), (7931, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (7932, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '150', '314', '2.5', '101', 'NIT Calicut', 'Computer Science and Enginering', '8.28', '10', '0'), (7933, '11', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (7934, '11', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (7935, '11', 'Admit', 'M.Eng.', 'Engineering Management', 'Fall', '2019', '170', '150', '320', '3.5', '116', 'Motilal Nehru National Institute of Technology Allahabad', 'Mechanical Engineering', '8.83', '10', '0'), (7936, '13', 'Admit', 'MSc', 'Computer Science', 'Fall', '2019', '157', '147', '304', '4', '-1', 'SRM University', 'Computer Science', '80.6', '100', '0'), (7937, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '101', 'VTU', 'telecommunications', '86.19', '100', '0'), (7938, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '158', '144', '302', '4', '107', 'MU', 'CS', '0', '0', '0'), (7939, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '159', '144', '303', 'None', 'None', 'Pune University', 'CS', '70', '100', '0'), (7940, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '330', '1090', '3', '89', 'Dr. M.G.R. University', 'ECE', '8.86', '10', '0'), (7941, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '106', 'Sri Venkateswara College of Engineering', 'Computer Science and Engineering', '7.71', '10', '0'), (7942, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2009', '740', '540', '1280', '5', '113', 'VTU', 'CS', '67', '100', '0'), (7943, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '158', '148', '306', '3', '94', 'Rajasthan Technical University', 'Computer Engineering', '67', '100', '0'), (7944, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (7945, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '640', '1340', '3.5', '104', 'MU', 'electronics', '59', '100', '0'), (7946, '13', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '710', '490', '1200', '3.5', '108', 'JNTU', 'EEE', '62', '100', '0'), (7947, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (7948, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (7949, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (7950, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '167', '150', '317', '4', '106', 'Anna University', 'ECE', '73.34', '100', '47'), (7951, '13', 'Admit', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (7952, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (7953, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '770', '480', '1250', '3', '99', 'GRIET', 'CSE', '75.87', '100', '0'), (7954, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '740', '630', '1370', '4.5', 'None', 'VTU', 'Electronics and Communication', '64', '100', '0'), (7955, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', 'None', 'BITS Pilani', 'Mechanical', '7.8', '10', '0'), (7956, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '710', '470', '1180', '3.5', '97', 'Sinhgad College of Engineering', 'Electronics & Telecommunications', '55', '100', '0'), (7957, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '4', '102', 'MSRIT', 'Computer Science', '75', '100', '0'), (7958, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'MU', 'Computer', '67.4', '100', '0'), (7959, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (7960, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '160', '146', '306', '3.5', '100', 'VTU', 'E&C;', '8.02', '10', '0'), (7961, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '161', '150', '311', '4.5', '104', 'University of Mumbai', 'Computer Engineering', '62.2', '100', '0'), (7962, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '141', '303', '3', '92', 'Sir MVIT', 'Electronics and communication', '67', '100', '16'), (7963, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '470', '1270', '3', '100', 'ANU', 'ECE', '78.6', '100', '0'), (7964, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '157', '141', '298', '3', '92', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '70', '100', '0'), (7965, '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall ', '2012', '720', '620', '1340', '3.5', '108', 'Sri Venkateswara College of Engineering', 'ECE', '8.05', '10', '0'), (7966, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '560', '1280', '3.5', '100', 'Jaypee Institute of Information Technology', 'Dept of Bioinformatics and Biotechnology', '74', '100', '0'), (7967, '13', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (7968, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '470', '1260', '3.5', '105', 'Pune University', 'Electronics and Telecomm.', '56', '100', '0'), (7969, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '159', '150', '309', '3', '102', 'MU', 'EXTC', '60.77', '100', '12'), (7970, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '430', '680', '1110', '3', '96', 'Anna University', 'ECE', '76', '100', '0'), (7972, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '157', '151', '308', '4', '104', 'Anna University', 'IT', '71', '100', '0'), (7973, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '100', 'VIT Mumbai University', 'Computer Engg', '57.38', '100', '0'), (7974, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3', '101', 'MU', 'Computer Science', '63', '100', '0'), (7975, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '720', '320', '1040', '3', '96', 'JNTU', 'ECE', '62', '100', '0'), (7976, '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '155', '145', '300', 'None', '100', 'MU', 'EXTC', '71', '100', '0'), (7977, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '145', '313', '2.5', '87', 'CBIT', 'CSE', '80', '100', '0'), (7978, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '148', '312', '3', '112', 'WBUT', 'ECE', '8.16', '10', '0'), (7979, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '165', '150', '315', '4', '112', 'Gayatri Vidya Parishad College of Engineering', 'Electronics and Communication Engineering', '63', '100', '0'), (7980, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '620', '560', '1180', '3.5', '99', 'MU', 'Electronics and Telecomm', '65', '100', '0'), (7981, '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '530', '1310', '3', '95', 'Gujarat Technological University', 'mechanical', '6.38', '10', '0'), (7982, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '510', '1250', 'None', 'None', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (7983, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (7984, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2006', '760', '380', '1140', '3.5', '253', 'None', '0', '0', '0', '0'), (7986, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3.5', '99', 'RAIT', 'Electronics', '65', '100', '0'), (7987, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '320', '1020', '3.5', '8', 'VIIT', 'E&TC;', '67', '100', '0'), (7989, '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '760', '380', '1140', '3', '97', 'VITU', 'SENSE', '8.7', '10', '0'), (7990, '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '740', '470', '1210', '3', '106', 'MDU', 'EEE', '58', '100', '0'), (7991, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '154', '149', '303', '3.5', '97', 'None', '0', '0', '0', '0'), (7992, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '153', '314', '4', '112', 'Guru Gobind Singh Indraprashta University', 'Electronics and Communication', '82', '100', '0'), (7993, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (7994, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (7995, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (7996, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '330', '1080', '2.5', 'None', 'JNTU', 'Information Technology', '72.8', '100', '0'), (7997, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '155', '144', '299', '3.5', '97', 'MU', 'Information Technology', '58', '100', '0'), (7998, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '152', '318', '4', '105', 'mgit jntu-hyd', 'information technology', '62', '100', '0'), (7999, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '740', '230', '970', '2.5', '96', 'None', '0', '0', '0', '0'), (8000, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '730', '550', '1280', 'None', '233', 'Vidyalankar Institute of Technology', 'computers', '64', '100', '0'), (8001, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '152', '149', '301', '2.5', 'None', 'Acharya Nagarjuna University', 'electrical', '0', '0', '0'), (8002, '13', 'Admit', 'MS', 'Computer Networks', 'Fall ', '2012', '720', '580', '1300', '2.5', '84', 'Pune University', 'E&TC;', '58', '100', '0'), (8003, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'IT', '7.32', '10', '0'), (8004, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '440', '1170', '4', '105', 'University of Rajasthan', 'Computer Science', '75.7', '100', '0'), (8005, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '350', '1090', '3.5', '99', 'VTU', 'ECE', '73', '100', '0'), (8006, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '109', 'JNTU', 'Computer Science', '70', '100', '0'), (8007, '13', 'Admit', 'MS', 'software engineering', 'Fall ', '2015', '160', '149', '309', '3', '102', 'IIT Madras', 'Biotechnology', '7.23', '10', '54'), (8008, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '164', '150', '314', '3.5', '105', 'SCOET', 'Computer Science', '68', '100', '0'), (8009, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '560', '1340', '3.5', '104', 'MU', 'Electronics & Telecommunication', '62', '100', '0'), (8010, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2015', '154', '151', '305', '3.5', '107', 'University of Pune', 'Electronics & Telecommunication', '53', '100', '0'), (8011, '13', 'Admit', 'MS', 'Information Security', 'Spring ', '2014', '1050', '350', '1400', '3', 'None', 'None', '0', '0', '0', '0'), (8012, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '500', '1250', '4', '110', 'VTU', 'Telecommunication', '74', '100', '0'), (8013, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '155', '151', '306', '3', '105', 'Don Bosco Institute of Technology', 'Information Technology', '55', '100', '0'), (8014, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '700', '400', '1100', '3', '102', 'JNTU', 'ECE', '75', '100', '0'), (8015, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '160', '323', '3.5', '108', 'MU', 'Computer Engineering', '58', '100', '33'), (8016, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '150', '149', '299', '2.5', '105', 'SNIST', 'CSE', '63.2', '100', '0'), (8017, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '730', '320', '1050', '2.5', '86', 'MU', 'extc', '61.31', '100', '0'), (8018, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (8019, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '750', '380', '1130', '2.5', '88', 'SNIST', 'computer science', '76', '100', '0'), (8020, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '790', '420', '1210', '3.5', '106', 'Dharamsinh Desai University', 'EC', '58.5', '100', '0'), (8021, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '162', '150', '312', '3.5', '98', 'Dharamsinh Desai University', 'Information Technology', '8.43', '10', '0'), (8022, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8023, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '157', '149', '306', '3.5', '103', 'None', '0', '0', '0', '0'), (8024, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '157', '146', '303', '4', '94', 'VTU', 'Computer Science', '64', '100', '50'), (8025, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '155', '144', '299', '3.5', '96', 'VTU', 'Instrumentation Technology', '77', '100', '0'), (8026, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8027, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '162', '162', '324', '3', 'None', 'NIT Arunachal Pradesh', 'Computer Science and Engineering', '7.85', '10', '0'), (8028, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '156', '149', '305', '3.5', '99', 'University of Mumbai', 'Electronics and Telecommunication', '60.2', '100', '0'), (8029, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', '3.5', '96', 'MU', 'computers', '64', '100', '0'), (8030, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '149', '151', '300', '3', '100', 'Sathyabama University', 'ECE', '65', '100', '0'), (8031, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (8032, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '390', '1190', '2.5', '96', 'Osmania University', 'ECE', '69', '100', '0'), (8033, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3.5', '103', 'None', 'CSE', '3.75', '4', '0'), (8034, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '159', '161', '320', '3', '108', 'Nitte institute of technology', 'Electronics and communication', '7.95', '10', '0'), (8035, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '490', '1290', '3', '100', 'Osmania University', 'CSE', '83', '100', '0'), (8036, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (8037, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '148', '308', '3.5', '107', 'University of Mumbai', 'Information Technology', '53', '100', '0'), (8038, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '500', '1260', '3.5', '98', 'GVPCOE Vizag', 'CSE', '68', '100', '0'), (8039, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '490', '1220', '3', '102', 'JNTU', 'CSE', '73', '100', '0'), (8040, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '157', '148', '305', '2.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8041, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (8042, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '102', 'University of Mumbai', 'CE', '57.2', '100', '0'), (8043, '13', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '780', '420', '1200', '3', '99', 'Iran', '0', '0', '0', '0'), (8044, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '104', 'Pondicherry Engineering College', 'cse', '7.89', '10', '0'), (8045, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2009', '730', '480', '1210', '3', '94', 'Osmania University', 'E.C.E', '68.66', '100', '0'), (8046, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '750', 'None', '750', 'None', '100', 'NMIT', 'ECE', '0', '0', '0'), (8047, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '730', '660', '1390', '5', '300', 'MU', 'Computers', '68.27', '100', '0'), (8048, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '158', '155', '313', '3', '106', 'MU', 'Electronics and Telecommunication', '63', '100', '0'), (8049, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '156', '322', '3.5', '111', 'JNTU', 'CS', '63', '100', '0'), (8050, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '710', '600', '1310', '2.5', '88', 'MU', 'EXTC', '56.4', '100', '0'), (8051, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '740', '450', '1190', '4', '273', 'U.P.Technical University', 'Eleectronics and Communication', '66', '100', '0'), (8052, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'SIES Graduate School of Technology', 'Computer', '53.38', '100', '0'), (8053, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '390', '1190', '3.5', '97', 'VIT', 'Computer Science', '82', '100', '0'), (8054, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '159', '144', '303', '3.5', '95', 'JNTU', 'IT', '74.41', '100', '0'), (8055, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2010', '770', '320', '1090', '3.5', '98', 'VTU', 'Electronics and Communication Engineering', '70', '100', '0'), (8056, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '680', '460', '1140', '3', '89', 'GITAM', 'Information Technology', '7.01', '10', '0'), (8058, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '3', '107', 'MU', 'Computer Engineering', '63', '100', '0'), (8059, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3.5', 'None', 'Velammal Engineering College', 'BE - computer science', '83', '100', '0'), (8060, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8061, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '164', '145', '309', 'None', '82', 'Vignan Institute of Technology and Science', 'ECE', '8.7', '100', '0'), (8062, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '163', '152', '315', '3', '95', 'UIET Punjab University', 'Information Technology', '62', '100', '0'), (8063, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (8064, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '166', '159', '325', '4', '116', 'VIT', 'IT', '8.67', '10', '25'), (8065, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '710', '420', '1130', '3', '97', 'M.G.M College of Eng', 'Computer', '72', '100', '0'), (8066, '13', 'Admit', 'MS', 'CyberSecurity', 'Fall ', '2013', '160', '146', '306', '2.5', '90', 'Rajasthan Technical University', 'Computer Engineering', '74.4', '100', '0'), (8067, '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '163', '149', '312', '3.5', '106', 'RD Nation', 'BSC IT', '68', '100', '24'), (8068, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '760', '420', '1180', '3', '101', 'Pune University', 'E&Tc;', '59', '100', '0'), (8069, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (8071, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '720', '1520', '5.5', '118', 'None', '0', '0', '0', '0'), (8072, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2007', '800', '550', '1350', '4.5', '283', 'MU', 'Electronics', '55', '100', '0'), (8073, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (8074, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2008', '790', '350', '1140', '3', '104', 'K J Somaiya College of Engiineering', 'EXTC', '70', '100', '0'), (8075, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '152', '138', '290', '4', '95', 'K J Somaiya College of Engiineering', 'Electronics', '67', '100', '0'), (8076, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (8077, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '450', '1230', '3.5', '96', 'Panimalar Engineering College', 'ELECTRONICS AND COMMUNICATION', '75', '100', '0'), (8078, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '680', '580', '1260', '3.5', '104', 'University of Mumbai', 'Computer Engineering', '59', '100', '0'), (8079, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '161', '152', '313', '4', '108', "St Joseph's College of Engineering", 'Electronics and Communication', '6.88', '10', '20'), (8080, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3.5', '100', 'None', 'Computer engineering', '69', '100', '0'), (8081, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '108', 'NIT Kurukshetra', 'Computers', '9.3376', '10', '0'), (8082, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '158', '145', '303', '3.5', '93', 'JNTU', 'Electronics and Instrumentation', '66.56', '100', '0'), (8083, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8084, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BNMIT', 'ECE', '0', '0', '0'), (8085, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '710', '480', '1190', '4', '109', 'MU', 'ELECTRONICS', '67', '100', '0'), (8086, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '146', '304', '4', 'None', 'University of Mumbai', 'COMPUTER ENGINEERING', '60.48', '100', '0'), (8087, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '500', '1190', '3', '98', 'GGSIPU', 'computer science', '80', '100', '0'), (8088, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '141', '308', '2.5', '86', 'JNTU', 'electronics and communication engineering', '67.8', '100', '0'), (8089, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '144', '309', '3', '85', 'JNTU', 'ece', '77.5', '100', '0'), (8090, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '400', '1200', '2.5', '102', 'K J Somaiya College of Engiineering', 'Electronics', '62', '100', '0'), (8091, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '150', '309', '2.5', '95', 'MU', 'Electronics and telecommunication', '63.5', '100', '39'), (8092, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '147', '310', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '62', '100', '0'), (8093, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '3.5', '110', 'VTU', 'electronics', '73', '100', '0'), (8094, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2012', '760', '330', '1090', '3', '95', 'JNTU', 'CSE', '67', '100', '0'), (8095, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '390', '1190', '3.5', '97', 'MU', 'Computer Engineering', '63', '100', '0'), (8096, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '370', '1170', '3', '100', 'CVRCE', 'cse', '68', '100', '0'), (8097, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3', '101', 'MU', 'Information Technology', '71', '100', '0'), (8098, '13', 'Admit', 'MS', 'Computational Science', 'Fall', 'None', '156', '150', '306', 'None', '103', 'None', '0', '0', '0', '0'), (8099, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'RAIT', 'Computer', '58', '100', '0'), (8100, '13', 'Admit', 'MS', 'Health Informatics', 'Fall ', '2014', '149', '153', '302', '3.5', '110', 'Padmashree Dr D Y Patil University', 'Btech Bioinformatics', '63', '100', '0'), (8101, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '89', 'MU', 'ELECTRONICS AND TELECOMMUNICATION', '67.8', '100', '0'), (8102, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '780', '400', '1180', '4', '260', 'MU', 'Computers', '62', '100', '0'), (8103, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '141', '305', '4', '102', 'GRIET', 'Information Technology', '0', '0', '0'), (8104, '13', 'Admit', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (8105, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '149', '310', '4', '105', 'University of Mumbai', 'Electronics', '0', '0', '0'), (8106, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '360', '1120', '3', '100', 'BMSCE', 'Computer science', '75', '100', '0'), (8107, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '760', '680', '1440', '4', '110', 'Dr. D. Y. Patil University', 'Dept. Of Biotechnology & Bioinformatics', '4', '4', '0'), (8109, '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '700', '560', '1260', '3', '108', 'MU', 'I.T', '69', '100', '0'), (8110, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '470', '1250', '3', '106', 'MU', 'Instrumentation', '62.84', '100', '0'), (8111, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '650', '1400', '4', '110', 'Crescent Engineering College', 'CSE', '72', '100', '0'), (8112, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '160', '145', '305', '3.5', '96', 'Thadomal Shahani Engineering College', 'EXTC', '65', '100', '0'), (8113, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '1130', '430', '1560', '710', '98', 'Bandodkar College of Science', 'IT', '67', '100', '0'), (8114, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '155', '311', '3.5', '110', 'NIT Durgapur', 'Information Technology', '7.94', '10', '0'), (8115, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4.5', '109', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '84', '100', '0'), (8116, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '520', '1280', '3.5', '86', 'University of Mumbai', 'Instrumentation', '0', '0', '0'), (8117, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '156', '142', '298', '3', '97', 'SIES Graduate School of Technology', 'EXTC', '0', '0', '0'), (8118, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '145', '303', '3', 'None', 'VTU', 'Electronics and communication', '56', '100', '0'), (8119, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '149', '307', '2.5', '80', 'gayathri engineering college', 'ece', '80', '100', '0'), (8121, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (8123, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'St.Francis Institute of Technology', 'Computer Engineering', '57.4', '100', '0'), (8124, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '690', '670', '1360', '4', '105', 'Nagpur University', 'BCA Post Grad Diploma in CS', '58', '100', '0'), (8125, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '158', '152', '310', '3', '100', 'JNTU', 'cse', '62', '100', '0'), (8126, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2007', '790', '420', '1210', '3.5', '257', 'MU', 'Electronics', '60', '100', '0'), (8127, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '720', '510', '1230', '3', '106', 'MU', 'Computer Engineering', '69', '100', '0'), (8128, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (8129, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '3.5', '106', 'Delhi College Of Engineeing', 'IT', '74.1', '100', '0'), (8130, '13', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2009', '760', '370', '1130', '4', '106', 'Atharva College', 'Electronics and Telecommunicatons', '57', '100', '0'), (8131, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '730', '410', '1140', '3.5', '101', 'Rajasthan Technical University', 'Computer Science', '63', '100', '0'), (8132, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '157', '145', '302', '3', '94', 'Cummins College of Engineering Pune', 'E&TC;', '0', '0', '0'), (8134, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '150', '310', '3', '102', 'JNTU', 'CSE', '77.92', '100', '0'), (8135, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '92', 'None', '0', '0', '0', '0'), (8136, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '156', '139', '295', '3', '93', 'JNTU', 'eee', '67', '100', '0'), (8137, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '152', '150', '302', '3', '93', 'None', '0', '3.87', '4', '0'), (8138, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '151', '313', '3.5', '106', 'MU', 'Computer Engineering', '60.25', '100', '58'), (8140, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '450', '1170', '3', '100', 'MU', 'Information Technology', '69', '100', '0'), (8141, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '160', '147', '307', '3.5', '98', 'Pune University', 'CS', '0', '0', '0'), (8142, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '300', '1040', '3', '88', 'M.H.S.S', 'Electronics and Telecommunications', '0', '0', '0'), (8143, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '156', '138', '294', '3.5', '92', 'M.D.U.', 'Computer science', '66', '100', '0'), (8144, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '680', '600', '1280', '3.5', '97', 'MU', 'I.T', '66', '100', '0'), (8145, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '320', '1110', 'None', '94', 'Pune University', 'Elex & Telecom', '68', '100', '0'), (8146, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (8147, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '420', '1170', '3', '94', 'TCET mumbai university', 'Information technology', '62.42', '100', '0'), (8149, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '151', '313', '3.5', '98', 'DMCE University of Mumbai', 'Electronics', '57', '100', '0'), (8150, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '150', '307', '3', '95', 'Amity University', 'CSE', '8.35', '10', '0'), (8151, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '146', '305', '3', '89', 'VTU', 'EC', '65', '100', '24'), (8152, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '12', '750', '580', '1330', '3', '90', 'University of Pune', 'ExTC', '59', '100', '0'), (8153, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '157', '143', '300', '4', '100', 'University of Mumbai', 'Electronics Engineering', '63', '100', '0'), (8154, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '149', '307', '2', '90', 'VIT Pune', 'Electronics', '63.45', '100', '0'), (8155, '13', 'Admit', 'MS', 'Telecommunication', 'Fall', 'None', '152', '150', '302', '3.5', '98', 'Canara Engineering College', 'Electronics & Communications', '60', '100', '0'), (8156, '13', 'Admit', 'MS', 'CS', 'Fall ', '2013', '157', '148', '305', '3', '102', 'Goa University', 'Computer Engineering', '61', '100', '0'), (8157, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (8158, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '157', '150', '307', '3', '104', 'SSN College of Engineering', 'EEE', '69', '100', '0'), (8159, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (8160, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '350', '1150', '2.5', '89', 'Gujarat Technological University', 'Computer Engineering', '70', '100', '0'), (8161, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '158', '146', '304', '3', '95', 'SIES Graduate School of Technology', 'Electronics and Telecommunication', '58.7', '100', '0'), (8162, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2016', '162', '142', '304', '2', 'None', 'JNTU', 'Ece', '64', '100', '0'), (8163, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '155', '150', '305', '3', '99', 'Panimalar Engineering College', 'Electronics and Comminications', '71', '100', '0'), (8164, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '156', '153', '309', '3', '103', 'University of Pune', 'Chemical Engineering', '63.13', '100', '0'), (8165, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '750', '410', '1160', '3', '97', 'WBUT', 'IT', '7.84', '10', '0'), (8166, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2015', '161', '150', '311', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication', '60.51', '100', '0'), (8167, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '148', '309', '4', '103', 'CEG', 'Electronics and Communication', '7.97', '10', '27'), (8168, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '470', '1220', '4', '106', 'VTU', 'Computer Science', '77.47', '100', '0'), (8169, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2014', '157', '144', '301', 'None', 'None', 'CVRCE', 'ECE', '72', '100', '0'), (8170, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '159', '148', '307', '2.5', '95', 'Osmania University', 'ece', '72', '100', '0'), (8171, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '420', '1160', '2.5', '89', 'MU', 'Electronics & Telecommunications', '58.06', '100', '0'), (8172, '13', 'Admit', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (8173, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '420', '1170', '3', 'None', 'GITAM', 'Information Technology', '8.13', '10', '0'), (8174, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '480', '1270', '3.5', '110', 'JNTU', 'csit', '82', '100', '0'), (8175, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '161', '146', '307', '3', '95', 'JNTU', 'Electical & Electronics Engineering', '77', '100', '0'), (8176, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '460', '1150', '3', '106', 'Datta Meghe College of Engineering', 'information technology', '70', '100', '0'), (8178, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (8179, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '4', 'None', 'MU', 'Computer Science', '61.3', '100', '0'), (8180, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '520', '1280', '3.5', '110', 'MU', 'Computer Engineering', '60', '100', '0'), (8181, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '350', '1080', '3', '105', 'National Institute of Engineering Mysore', 'ECE', '81.4', '100', '0'), (8182, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '148', '312', '3.5', '93', 'BSAITM', 'Computer Science', '72', '100', '0'), (8183, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '155', '318', '3.5', '103', 'MU', 'CE', '57.4', '100', '0'), (8184, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1130', '400', '1530', '3', '93', 'BMIT Jaipur', 'computer science', '75', '100', '0'), (8185, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '160', '144', '304', '3', '94', 'VTU', 'Electronics and Communication', '3.11', '4', '0'), (8186, '13', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '720', '570', '1290', '3.5', '95', 'SRM', 'Instrumenation & Control Engineering', '7.6', '10', '0'), (8187, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '146', '306', '3.5', '95', 'JNTU', 'CSE', '76.5', '100', '0'), (8188, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '750', '530', '1280', '3', '108', 'LNMIIT', 'CCE', '8.32', '10', '0'), (8189, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '295', '137', '432', '158', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATIONS ENGINEERING', '76.88', '100', '0'), (8190, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '162', '150', '312', '3.5', '101', 'Pune University', 'Comp Engg', '62', '100', '0'), (8191, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '620', '1380', '3', '102', 'VNR VJIET', 'EEE', '69.9', '100', '0'), (8192, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '154', '146', '300', '3', '89', 'Bangalore Institute of Technology', 'Telecommunication (VTU)', '78', '100', '33'), (8193, '13', 'Admit', 'MS', 'Computer engineering VLSI CAD', 'Fall ', '2012', '156', '149', '305', '3.5', '104', 'University of Mumbai', 'Electronics', '59', '100', '0'), (8194, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8195, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3', '97', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '65.92', '100', '0'), (8196, '13', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2012', '780', '580', '1360', '3', 'None', 'JNTU', 'ELECTRONICS AND COMMUNICATION', '78', '100', '0'), (8197, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '144', '304', '3', '107', 'Bhoj Reddy Engineering College JNTU', 'electronics and computer engineering', '77', '100', '0'), (8198, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '460', '1180', '3', '97', 'Kurukshetra University', 'computer science', '6.7', '10', '0'), (8199, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '3', '106', 'Bharati Vidyapeeth', 'extc', '58', '100', '0'), (8200, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2012', '154', '143', '297', '4', '0', 'S.I.E.S GST (Mumbai University)', 'Electronics and Telecommunications', '57.5', '100', '0'), (8201, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '158', '146', '304', '3', '105', 'University of Pune', 'Information technology', '59.3', '100', '0'), (8203, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '400', '1110', '3', '86', 'Nagpur/G.H Raisoni', 'Information Tech.', '0', '0', '0'), (8204, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3', '93', 'K J Somaiya College of Engiineering', 'Electronics', '56', '100', '0'), (8205, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (8206, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '150', '153', '303', 'None', '92', 'Sri Venkateswara College of Engineering', 'ECE', '68', '100', '29'), (8207, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (8208, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '760', '470', '1230', '2.5', '93', 'GIET', 'EEE', '78', '100', '0'), (8209, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '153', '148', '301', '3.5', '106', 'Anna University', 'ECE', '7.77', '100', '0'), (8210, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '710', '380', '1090', '2.5', '103', 'JNTU', 'ECE(2010 passout)', '61.27', '100', '0'), (8211, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '410', '1140', '3', '103', 'DVR College of Engineering', 'EEE', '63', '100', '0'), (8212, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '730', '420', '1150', '3.5', '105', 'College of Engineering and Technology', 'Electronics and telecommunications', '0', '0', '0'), (8213, '13', 'Admit', 'MS', 'Information Systems', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Rajiv Gandhi Institute Of Technology', 'Computer Science', '0', '0', '0'), (8214, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '154', '147', '301', '3', '95', 'VTU', 'Computer Science', '64', '100', '0'), (8215, '13', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '157', '152', '309', '3.5', '97', 'MU', 'Computer Science', '56.07', '100', '0'), (8216, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '146', '307', '3', '92', 'Sreenidhi Institute of Science & Technology', 'Computer Science', '69', '100', '0'), (8217, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '400', '1150', '2.5', '93', 'JNTU', 'CSE', '75', '100', '0'), (8218, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '108', 'GITAM', 'CSE', '7.9', '10', '0'), (8219, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '166', '150', '316', '4', '100', 'University of Engineering & Technology Taxila', 'Electrical Engineering', '79.05', '100', '0'), (8220, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '107', 'Amrita School of Engineering', 'ECE', '7.8', '10', '0'), (8221, '13', 'Admit', 'MS', 'Electrical and Electronics', 'Spring ', '2013', '162', '148', '310', '2.5', '99', 'Pondicherry Engineering College', 'EIE', '7.73', '10', '0'), (8222, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '145', '307', '3', '106', 'Government Engineering College ajmer', 'Computer Engineering', '66.7', '100', '0'), (8223, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (8224, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '91', 'St thomas college of engg & tech(under West Bengal University of technology)', 'Information Technology', '8.37', '10', '0'), (8225, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2012', '770', '360', '1130', '3', '95', 'None', 'EXTC', '61.5', '100', '0'), (8226, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '590', '1310', '3', '97', 'University of Mumbai', 'Information Technology', '75.73', '100', '0'), (8227, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '550', '1280', '3', '97', 'Pune University', 'entc', '0', '0', '0'), (8228, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '360', '1130', '3', '100', 'Ambala College of Engineering And Applied Research', 'Electronics and communication', '63', '100', '0'), (8229, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '4', '103', 'University of Kerala', 'Computer Science', '7.3', '10', '0'), (8230, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (8232, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '760', '500', '1260', '3.5', '280', 'SFIT', 'Computer', '59', '100', '0'), (8233, '13', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '163', '150', '313', '3', 'None', 'University of Pune', 'Electronics and Telecommunication', '7.95', '10', '20'), (8234, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '370', '1120', '3', '98', 'MU', 'Computers', '79.67', '100', '0'), (8235, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '440', '1210', '4', '108', 'None', 'IT', '70', '100', '0'), (8236, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (8237, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '3.5', '104', 'Pune University', 'Computers', '62.27', '100', '0'), (8238, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '450', '1190', '4', '97', 'VTU', 'Computer Science', '59', '100', '0'), (8239, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '430', '1220', '2.5', '107', 'GITAM', 'Electronics', '7.32', '10', '0'), (8240, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '580', '1310', '3.5', '105', 'University of Mumbai', 'Information Technology', '70', '100', '0'), (8241, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '158', '146', '304', '3', 'None', 'None', '0', '0', '0', '0'), (8242, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '790', '440', '1230', '3', '93', 'SRKR Engineering College', 'CSE', '82', '100', '0'), (8243, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '115', 'Heritage Institute of Technology', 'Electronics and Communication Engineering', '8.32', '10', '0'), (8244, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '1090', '390', '1480', '700', '93', 'teegala krishna reddy engineering college', 'ece', '0', '0', '0'), (8245, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '154', '315', '3.5', '111', 'Gogte Institute of Technology', 'Electronics & Communication', '77', '100', '0'), (8246, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3.5', '102', 'None', '0', '0', '0', '0'), (8247, '13', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '730', '410', '1140', '3', '109', 'Guru Jambheshwar University of Science & Technology', 'ECE', '8.67', '10', '0'), (8248, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '760', '540', '1300', '3.5', '98', 'PSG College of Technology', 'Mathematics and Computer Applications', '9.4', '10', '0'), (8249, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '153', '153', '306', '3', 'None', 'VTU', 'CS', '64', '100', '0'), (8250, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '440', '1180', '3', '99', 'Anna University', 'EE', '8.61', '10', '0'), (8251, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3.5', '104', 'JNTU', 'CSE', '79.5', '100', '0'), (8252, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '740', '480', '1220', '3', '100', 'University of Mumbai', 'Electronics and Telecommunication', '63', '100', '0'), (8253, '13', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '160', '152', '312', '3.5', '110', 'JNTU', 'Metallurgical Engineering', '68.9', '100', '19'), (8254, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '750', '570', '1320', '4', '109', 'MU', 'IT', '67', '100', '0'), (8255, '13', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2013', '161', '156', '317', '4', '105', 'Kerala University', 'Information Technology', '3.98', '4', '0'), (8256, '13', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '162', '146', '308', '3', '107', 'St.Martin Engg College affiliated with JNTU', 'ECE', '68', '100', '0'), (8257, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '470', '1270', '4.5', '104', 'K J Somaiya College of Engiineering', 'it', '67', '100', '0'), (8258, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '153', '312', '3', '105', 'BNMIT', 'Information Science and Engineering', '74', '100', '0'), (8259, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '730', 'None', '730', '3.5', '96', 'None', 'Information science', '80', '100', '0'), (8261, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '330', '1100', '3', '102', 'Amrita School of Engineering', 'ECE', '7', '10', '0'), (8262, '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2006', '740', '410', '1150', '4', '287', 'SSN College of Engineering', 'Information Technology', '71', '100', '0'), (8263, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3', '114', 'None', 'Computer Science', '7.95', '10', '0'), (8264, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '161', '151', '312', '3', '93', 'ITM Gurgaon', 'CS', '65', '100', '0'), (8265, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '156', '317', '4', '99', 'JNTU', 'CSE', '68', '100', '0'), (8267, '13', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '780', '600', '1380', '3', '106', 'VIT Mumbai University', 'Electronics', '62', '100', '0'), (8268, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '156', '145', '301', '4', '90', 'University of Mumbai', 'Electrical Engineering', '62', '100', '0'), (8269, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '380', '1130', '3.5', '94', 'MU', 'Electronics', '65', '100', '0'), (8270, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (8271, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (8272, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '157', '143', '300', '3', '7', 'JNTU', 'CSE', '75', '100', '0'), (8273, '13', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '750', '530', '1280', 'None', '103', 'Rajasthan Technical University', 'Information Technology', '70', '100', '0'), (8274, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', '730', '570', '1300', '3', '102', 'SASTRA', 'Bioinformatics', '7.6', '10', '0'), (8275, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '150', '312', '3.5', '102', 'NIT Calicut', 'CSE', '7.74', '10', '0'), (8276, '13', 'Admit', 'MS', 'Geographic and Cartographic Sciences', 'Fall ', '2011', '710', '490', '1200', '4', '107', 'None', 'Electronics & Telecomm', '68', '100', '0'), (8277, '13', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8278, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '160', '145', '305', '3', '99', 'Sree Vidyanikethan Engineering College', 'Information Technology', '76', '100', '0'), (8279, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2010', '790', '380', '1170', '3.5', '107', 'JNTU', 'ECE', '64', '100', '0'), (8280, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '142', '302', '3', 'None', 'GITAM', 'Electronics and Communications', '8.8', '10', '0'), (8281, '13', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '750', '390', '1140', '3', '106', 'Osmania University', 'ECE', '75', '100', '0'), (8282, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '155', '146', '301', 'None', '97', 'MU', 'Electronics', '55', '100', '0'), (8283, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '770', '370', '1140', '3', '102', 'Koneru Lakshmaiah College of Engineering', 'Information Science and Technology', '8.44', '10', '0'), (8284, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '740', '370', '1110', '3', '96', 'None', '0', '0', '0', '0'), (8285, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '147', '307', '2.5', 'None', 'GITAM', 'Electronics and Communication', '7.8', '10', '0'), (8286, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '730', '420', '1150', 'None', '103', 'MDU', 'ECE', '0', '0', '0'), (8287, '13', 'Admit', 'MS', 'Biotechnology', 'Spring ', '2014', '151', '150', '301', '3.5', '100', 'SASTRA', 'Biotechnology', '8.1', '100', '0'), (8288, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '500', '1210', '3.5', '96', 'MU', 'Computer Engg.', '57.85', '100', '0'), (8289, '13', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '148', '318', '3', '98', 'UCEK JNTUK', 'EEE', '77', '100', '12'), (8290, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '147', '313', '3', '107', 'JNTU', 'Information Technology', '65.44', '100', '0'), (8291, '13', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2007', '720', '510', '1230', '4', '267', 'VIT', 'Biotechnology', '8.56', '10', '0'), (8292, '13', 'Admit', 'MS', 'Telecommunication', 'Spring ', '2013', '145', '143', '288', 'None', '87', 'None', '0', '0', '0', '0'), (8293, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2016', '141', '137', '278', '2', 'None', 'Rajasthan Technical University', 'Electronics & Communication', '3', '100', '0'), (8294, '13', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '170', '149', '319', '3.5', '100', 'GITAM', 'Computer Science', '8.54', '10', '0'), (8295, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '145', '312', '3', '101', 'VTU', 'Computer Science', '65', '100', '0'), (8296, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '110', 'None', '0', '0', '0', '0'), (8297, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '157', '150', '307', '3', '94', 'GITAM', 'Computer Science', '8.23', '10', '0'), (8298, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (8299, '13', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '760', '630', '1390', '3', '98', 'MU', 'Information Technology', '55', '100', '0'), (8300, '13', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '760', '440', '1200', '3.5', '92', 'PESIT', 'electronics and communication', '64', '100', '0'), (8301, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '410', '1150', '2.5', '110', 'BITS Pilani', 'Computer Science', '7.91', '10', '0'), (8302, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (8303, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '770', '650', '1420', '3', '91', 'Vrsiddhartha Engineering College', 'CSE', '88.35', '100', '0'), (8304, '13', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '158', '160', '318', 'None', '112', 'Saboo Siddik', 'Computers', '62', '100', '0'), (8305, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '450', '1240', '3', '100', 'MU', 'Information Technology', '67', '100', '0'), (8306, '13', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '159', '324', '3', '101', 'BITS Pilani', 'Electronics', '4.93', '10', '0'), (8307, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '730', '390', '1120', '3', '90', 'IET DAVV', 'Computer Engineering', '0', '0', '0'), (8308, '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '720', '470', '1190', '3', '87', 'D Y Patil College of Engineering', 'Bioinformatics', '62.3', '100', '0'), (8309, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3', '92', 'Pune University', 'Mechanical Engineering', '62.5', '100', '53'), (8310, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '167', '142', '309', '3.5', '99', 'Sikkim Manipal University', 'Computer Engineering', '6.58', '10', '56'), (8311, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '161', '152', '313', '3.5', '105', 'Pune University', 'information technology', '56', '100', '0'), (8312, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '151', '308', '3', '101', 'MU', 'IT', '58.75', '100', '0'), (8313, '13', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '770', '370', '1140', '3', '87', 'K J Somaiya College of Engiineering', 'Electronics', '60', '100', '0'), (8314, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '157', '150', '307', '3.5', '111', 'VTU', 'Telecommunication', '57', '100', '0'), (8315, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '145', '304', '3', '98', 'Greater Noida Institute Of Technology', 'Comuter Science engineering', '68.4', '100', '0'), (8316, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (8317, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'GGSIPU', 'IT', '75.28', '100', '0'), (8318, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '146', '305', '3', '92', 'SSN College of Engineering', 'Electrical and Electronics', '79', '100', '0'), (8319, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '730', '540', '1270', '3', '89', 'Manipal Institue of Technology', 'Computer Science', '7.03', '10', '0'), (8320, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '149', '308', '3.5', '105', 'None', '0', '0', '0', '0'), (8321, '13', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '89', 'MU', 'EXTC', '5.5', '10', '0'), (8322, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '148', '306', '4', '98', 'K J Somaiya College of Engiineering', 'Computer Engineering', '58', '100', '0'), (8323, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (8324, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '166', '150', '316', '2.5', '98', 'BITS Pilani', 'Computer Science', '5.5', '10', '0'), (8325, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '143', '304', '3', '97', 'Vasavi College of Engineering', 'IT', '82', '100', '0'), (8326, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '145', '306', '3', '103', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Information Science and Engineering', '7.39', '10', '26'), (8327, '13', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2015', '159', '147', '306', '3', 'None', 'JNTU', 'Electronics and Communication Engineering', '75.55', '100', '26'), (8329, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '370', '1120', '3', '108', 'MU', 'Information Technology', '68', '100', '0'), (8330, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '170', '153', '323', '3.5', '103', 'Pune University', 'ECE', '72', '100', '0'), (8331, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (8333, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '145', '301', '3', '102', 'Andhra University', 'CS&SE;', '8.28', '10', '0'), (8334, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '151', '143', '294', '3', '98', 'Sinhgad College of Engineering', 'Computer', '66.66', '100', '0'), (8335, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '167', '330', '4', '112', 'University of Mumbai', 'Computer Engineering', '54', '100', '0'), (8337, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '330', '1050', '3', '95', 'Anna University', 'I.T.', '68', '100', '0'), (8339, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '310', '1050', '2.5', '87', 'KL University', 'Information Technology', '7.83', '10', '0'), (8340, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '147', '306', '2.5', '107', 'MIT Pune', 'Computer Engineering', '60', '100', '0'), (8341, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '152', '156', '308', '4.5', '113', 'Anna University', 'CS', '72', '100', '48'), (8342, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '145', '303', '3', '96', 'PESIT', 'Computer Science', '73.4', '100', '0'), (8343, '13', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '158', '145', '303', '3', '94', 'PESIT', 'Computer Science and Engineering', '6.71', '10', '42'), (8344, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '310', '1080', '2.5', '93', 'Amity University', 'Computer Science and Engineering', '7.5', '10', '0'), (8345, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '139', '300', '3', '95', 'Guru Gobind Singh Indraprashta University', 'Information Technology', '75.28', '100', '0'), (8346, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '143', '297', '2.5', 'None', 'Vivekananda Institute Of Technology', 'Information Science', '67.8', '100', '58'), (8347, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (8348, '13', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '153', '149', '302', '3.5', '101', 'MU', 'Instrumentation', '55', '100', '8'), (8349, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (8350, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '144', '302', '3', '93', 'Pune University', 'Computer Engg.', '58.9', '100', '0'), (8351, '13', 'Reject', 'MS', 'Computer Forensics', 'Fall ', '2012', '156', '153', '309', '4', '110', 'Anna University', 'Information Technology', '65', '100', '0'), (8352, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '154', '311', '3.5', '104', 'None', '0', '7.09', '10', '0'), (8353, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '154', '162', '316', '4.5', '113', 'Walchand College Of Engineering', 'CSE', '8.06', '10', '16'), (8354, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '720', '470', '1190', '3.5', '94', 'K J Somaiya College of Engiineering', 'IT', '61', '100', '0'), (8355, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '740', '300', '1040', '3.5', '107', 'JNTU', 'Electronics & Communication', '67', '100', '0'), (8356, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '670', '600', '1270', '3', '93', 'VTU', 'CSE', '67', '100', '0'), (8358, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '105', 'MU', 'Information Technology(B.E. I.T)', '58.8', '100', '0'), (8359, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '158', '152', '310', '3.5', '102', 'University of Pune', 'Computer Engineering', '58', '100', '0'), (8360, '13', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2007', '770', '420', '1190', '3.5', '103', 'Bharathidasan University', 'Biotechnology', '75', '100', '0'), (8361, '13', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '151', '144', '295', '3.5', '90', 'VTU', 'CSE', '78', '100', '0'), (8362, '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2011', '720', '450', '1170', '3', '85', 'MU', 'Electronics', '59.7', '100', '0'), (8363, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '670', '450', '1120', '3', '82', 'Amrita Vishwa Vidhyapeetham', 'Computer Science', '6.14', '10', '0'), (8364, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '310', '1110', '3', '95', 'University of Mumbai', 'Computer', '64.3', '100', '0'), (8365, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3.5', '100', 'JNTU', 'ECE', '73', '100', '0'), (8366, '13', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '157', '156', '313', '4', '116', 'SASTRA', 'electronics&communications;', '7', '10', '0'), (8367, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '143', '301', '3', 'None', 'VGEC GTU', 'Computer Engineering', '7.2', '10', '0'), (8368, '13', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2013', '153', '137', '290', '3', '81', 'MU', 'Electronics and telecommunicatio', '69.04', '100', '0'), (8369, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '660', '430', '1090', '3', '106', 'MU', 'Information Technology', '57', '100', '0'), (8370, '13', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '340', '1100', '3', '97', 'MU', 'Electronics', '63', '100', '0'), (8371, '13', 'Admit', 'MS', 'Electronics & Communication', 'Fall', '2011', '157', '148', '305', '3.5', '105', 'College of engineering and technology', 'Electronics and Telecommunication', '-1', '-1', '0'), (8372, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '165', '334', '5.5', '118', 'IIT Delhi', 'Mechanical', '9.1', '10', '40'), (8373, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '154', '321', '4', '110', 'University of Mumbai', 'Electronics and Telecommuication', '63.06', '100', '0'), (8374, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '159', '329', '4', '113', 'IIT Indore', 'Mechanical Engineering', '7.7', '10', '24'), (8375, '14', 'Admit', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '165', '154', '319', '4', '115', 'MU', 'Electronics', '75.7', '100', '0'), (8376, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2011', '780', '590', '1370', '3.5', '105', 'VTU', 'ECE', '82', '100', '0'), (8377, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '154', '319', '4', '112', 'DSCE', 'Chemical Engg.', '82.29', '100', '0'), (8378, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '800', '550', '1350', '3', '104', 'BIT Mesra', 'Biotechnology', '7.02', '10', '0'), (8379, '14', 'Admit', 'MS', 'economics', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'University of Delhi', 'Economics', '71', '100', '0'), (8380, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '159', '325', '4', '115', 'NIT', 'Production Engineering', '92.4', '100', '0'), (8381, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '600', '1390', '3.5', '108', 'K J Somaiya College of Engiineering', 'ECE', '70', '100', '0'), (8382, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '800', '680', '1480', '5', '113', 'University of Mumbai', 'Computer Engineering', '70.88', '100', '0'), (8383, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '110', 'University of Mumbai', 'Electronics & Telecommunications', '80.57', '100', '0'), (8384, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '730', '1530', '4', '118', 'NSIT', 'Instrumentation and Control Engineering', '79.27', '100', '0'), (8385, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '166', '330', '4.5', '117', 'University of Mumbai', 'Engineering Electronics and Telecommunication', '60.38', '100', '0'), (8386, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '800', '570', '1370', '4', '112', 'VESIT', 'Electronics and Telecommunication', '87.37', '100', '0'), (8387, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '790', '710', '1500', '4', '115', 'VTU', 'Electronics & Communication', '82.5', '100', '0'), (8388, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2008', '750', '520', '1270', 'None', '250', 'None', '0', '0', '0', '0'), (8389, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '630', '1380', '4', '106', 'D J Sanghvi', 'Electronics', '73.68', '100', '0'), (8390, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '440', '1210', '4.5', '108', 'SJCE', 'Electronics and Communication', '9.78', '10', '0'), (8391, '14', 'Admit', 'MS', 'Information Assurance', 'Fall ', '2015', '161', '160', '321', '3', '103', 'TU', 'CS', '69.7', '100', '36'), (8392, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '158', '328', '4', '116', 'IIT Kharagpur', 'Electrical Engineering', '8.52', '10', '0'), (8393, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '680', '1480', '3', '102', 'Zhejiang University', 'Dpt. of Mechanical Engineering', '3.68', '4', '0'), (8394, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '120', 'PSG College of Technology', 'Mechanical', '8.9', '10', '0'), (8395, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '111', 'VESIT', 'Electronics', '78', '100', '0'), (8396, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '620', '1410', '5', '117', 'NIT Karnataka', 'ECE', '9.36', '10', '0'), (8397, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '150', '318', '4', '109', 'University of Mumbai', 'Electronics', '3.25', '4', '0'), (8398, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '155', '323', '5', '108', 'MSRIT', 'Electronics and Communication', '9.33', '10', '0'), (8399, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '750', '1550', '4.5', '117', 'SRM', 'CSE', '8.4', '10', '0'), (8400, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '160', '328', '4', '118', 'Amrita School of Engineering', 'ECE', '9.49', '10', '0'), (8401, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3', '110', 'NIT Bhopal', 'IT', '7.9', '10', '0'), (8402, '14', 'Admit', 'MS', 'Supply chain management', 'Fall ', '2015', '166', '157', '323', '4', '112', 'BITS Pilani', 'Manufacturing', '7', '100', '24'), (8403, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '700', '1500', '3.5', '110', 'IIT Kharagpur', 'Industrial Engineering', '8.37', '10', '0'), (8404, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '166', '336', '5', '112', 'IIT BHU', 'Electrical Engg', '8.15', '10', '0'), (8405, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '105', 'IIIT Delhi', 'Computer Science', '3.8', '10', '0'), (8406, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '580', '1330', '4.5', '287', 'K J Somaiya College of Engiineering', 'Comp Engg', '69', '100', '0'), (8407, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '4', '110', 'Maharashtra Institute of Technology', 'EnTc', '76', '100', '0'), (8408, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '650', '1430', '4', '101', 'NITK Surathkal', 'Computer Engineering', '3.9', '4', '0'), (8409, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '650', '1440', '3.5', '111', 'BITS Pilani', 'MSc (Hons) Biological Science & BE (Hons) Computer Science', '9.18', '10', '0'), (8410, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '110', 'Vidyalankar Institute of Technology', 'Information Technology', '71.46', '100', '0'), (8411, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '114', 'Netaji Subhas Institute of Technology', 'Instrumentation and Control', '71.4', '100', '0'), (8412, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '155', '315', '3.5', '104', 'MU', 'Electronics', '76.14', '100', '0'), (8413, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '540', '1340', '4', '114', 'R V College of Engineering', 'Chemical engineering', '9.14', '10', '0'), (8414, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '790', '550', '1340', '3', '111', 'SSN College of Engineering', 'Computer Science', '87.74', '100', '0'), (8415, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '163', '160', '323', '4', '115', 'SRM', 'ECE', '9.157', '10', '0'), (8416, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '110', 'MU', 'Computer Engineering', '75', '100', '0'), (8418, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '800', '1600', '5.5', '117', 'MIT College of Engineering University of Pune', 'Computer Science and Engineering', '58.51', '100', '0'), (8419, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '168', '335', '4', '115', 'VNIT Nagpur', 'ECE', '8.83', '10', '0'), (8420, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '160', '322', '4', '117', 'None', 'Electronics & communication', '9.1', '10', '0'), (8421, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'VESIT', 'Instrumentation engg', '72.02', '100', '0'), (8422, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '640', '1430', '3.5', '104', 'Mar Athanasius College of Engineering Kerala', 'Electronics and Communication', '71', '100', '0'), (8423, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '167', '166', '333', '4', '115', 'MU', 'Electronics & Telecommunication', '72.6', '100', '0'), (8424, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '159', '323', '4.5', '117', 'Nirma Institute of Technology', '0', '8.54', '10', '0'), (8425, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4', '108', 'VJTI', 'Electronics', '8', '10', '0'), (8426, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '620', '1400', '4', '115', 'PICT', 'Computer', '3.45', '4', '0'), (8427, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '157', '322', '4', 'None', 'Punjab Engineering College', 'Electronics and Electrical Communication', '9.65', '10', '0'), (8428, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8429, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '780', '680', '1460', '4', '109', 'NIT Surat', 'Civil', '8.75', '10', '0'), (8430, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '152', '319', '3.5', '108', 'Amrita School of Engineering', 'EEE', '9.01', '10', '24'), (8431, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '166', '163', '329', '4', '114', 'IET DAVV', 'Computer Science', '72', '100', '0'), (8432, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '164', '333', '4', '118', 'NIT Tirchy', 'production engineering', '9.03', '10', '0'), (8433, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '118', 'Galgotias college of engineering & technology', 'Information Technology', '73.5', '100', '0'), (8434, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '103', 'KIIT', 'Electronics and Electrical', '8.82', '10', '0'), (8435, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '620', '1420', '3.5', '109', 'IIT Delhi', 'Mechanical Engineering', '8.48', '10', '0'), (8436, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '162', '152', '314', '3.5', '112', 'University of Manchester', 'Aerospace Engineering', '3.74', '4', '12'), (8437, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '159', '319', '4.5', '118', 'SSN College of Engineering', 'CSE', '8.6', '10', '0'), (8438, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '700', '1450', '4', '110', 'VTU', 'CS', '79', '100', '0'), (8439, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'NIT Surat', 'Computer Engineering', '7.2', '10', '0'), (8440, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '158', '326', '4', '115', 'JSS Noida', 'ECE', '76.7', '100', '0'), (8441, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '760', '560', '1320', '4', '107', 'PSG College of Technology', 'Computer Science', '8.91', '10', '0'), (8442, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '770', '580', '1350', '3', '106', 'Madras Institute of Technology', 'Production Engineering', '9.45', '10', '24'), (8443, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '162', '323', '3.5', '116', 'SVCE', 'ECE', '7.98', '10', '0'), (8444, '14', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', '164', '159', '323', '4', '108', 'NIT Tirchy', 'Architecture', '9.43', '10', '0'), (8445, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '157', '320', '3.5', '115', 'D J Sanghvi', 'Information technology', '66', '100', '0'), (8446, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '116', 'WBUT', 'Computer Science Engineering', '8.93', '10', '0'), (8447, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '530', '1330', '4', '105', 'Sathyabama University', 'Aeronautical enggineering', '83', '100', '0'), (8450, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '800', '680', '1480', '3.5', '114', 'NIT Calicut', 'Electrical and Electronics', '8.66', '10', '0'), (8451, '14', 'Admit', 'MS', 'CS', 'Fall ', '2012', '790', '560', '1350', '3.5', '108', 'R V College of Engineering', 'Computer Science', '75', '100', '0'), (8452, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '159', '322', '4.5', '115', 'MSRIT', 'Telecommunications Engineering', '9.07', '10', '0'), (8453, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '160', '329', '3.5', 'None', 'NIT Calicut', 'ECE', '9.62', '10', '0'), (8454, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '117', 'Anna University', 'IT', '83', '100', '0'), (8455, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '540', '1310', '3.5', '107', 'MSRIT', 'Telecommunication', '8.8', '10', '0'), (8456, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '157', '327', '4', '118', 'West Bengal University Of Technology', 'Electronics and Communication Engineering', '8.79', '10', '0'), (8457, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '168', '158', '326', '5', '112', 'CEG', 'Mechanical Engineering', '9', '10', '0'), (8458, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '153', '319', '3.5', '115', 'COEP', 'Electronics and Telecommunication Engineering', '9.1', '10', '0'), (8459, '14', 'Admit', 'MS', 'None', 'Fall ', '2014', '165', '158', '323', '4', '112', 'MDU', 'ECE', '62', '100', '0'), (8460, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '620', '1410', '3', '108', 'COEP', 'Information Technology', '8.67', '10', '0'), (8461, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2012', '800', '620', '1420', '4', '118', 'Manipal Institue of Technology', 'ECE', '9.15', '10', '0'), (8462, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '113', 'Gujarat Technological University', 'Computer Enigneering', '64.8', '100', '0'), (8463, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '560', '1360', '4.5', '117', 'Anna University', 'EEE', '72', '100', '0'), (8464, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '600', '1400', '5.5', '118', 'R V College of Engineering', 'Mechanical Engineering', '3.95', '4', '0'), (8465, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '160', '330', '4', 'None', 'BITS Pilani', 'EEE', '8.7', '10', '0'), (8466, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '800', '710', '1510', '4', '111', 'MU', 'Information Technology', '66.17', '100', '0'), (8467, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '720', '1490', '3.5', '106', 'Watumull Institute University of Mumbai', 'Electronics and Telecommunication', '0', '0', '0'), (8468, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '560', '1320', '3.5', '104', 'BITS Goa', 'Computer Science', '8.95', '10', '0'), (8469, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '149', '315', '3.5', '101', 'CoE Trivandrum', 'Industrial Engineering', '7.3', '10', '0'), (8470, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '170', '154', '324', 'None', '112', 'None', '0', '72', '100', '0'), (8471, '14', 'Admit', 'MS', 'Information Networking', 'Fall ', '2012', '800', '570', '1370', '3.5', '108', 'CEG', 'Computer science & Engg', '8.3', '10', '0'), (8472, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '650', '1440', '5', 'None', 'National Technical University of Athens', 'ECE', '9.4', '4', '0'), (8473, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '108', 'R V College of Engineering', 'Electrical and Electronics', '9.38', '10', '0'), (8474, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '162', '159', '321', '3', '111', 'SJCE', 'CS', '9.45', '10', '0'), (8475, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '114', 'IIT Guwahati', 'Mathematics and Computing', '7.62', '10', '0'), (8476, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4', '111', 'GGSIPU', 'Computer Science', '79', '100', '0'), (8477, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4.5', '113', 'VTU', 'Electronics and Communication', '73', '100', '0'), (8478, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '154', '318', '4', '118', 'kvw', 'ece', '69.9', '100', '0'), (8479, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4.5', '118', 'NIT Warangal', 'Computer Science', '9.23', '10', '0'), (8480, '14', 'Admit', 'MS', 'Computational Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'BITS Pilani', 'Civil', '7.2', '10', '0'), (8481, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '550', '1350', 'None', 'None', 'R V College of Engineering', 'Mechanical', '8.47', '10', '0'), (8482, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', 'None', '106', 'SASTRA', 'ELECTRONICS AND COMMUNICATION', '9.01', '10', '0'), (8483, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '550', '1350', '3.5', '110', 'shu', 'physics', '4', '4', '0'), (8484, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'UPTU', 'Computer Science', '68.76', '100', '0'), (8485, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '158', '325', '4.5', '112', 'Delhi University', 'ECE', '69.93', '100', '0'), (8486, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '160', '319', '4', 'None', 'Amity University', 'Computer Science', '8.31', '10', '0'), (8487, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2011', '780', '620', '1400', '3.5', '110', 'Delhi College Of Engineeing', 'ECE', '79.7', '100', '0'), (8488, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '170', '336', '4.5', '119', 'BITS Goa', 'Computer Science', '8.8', '10', '0'), (8489, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '163', '331', '4.5', '112', 'NMIMS', 'Electronics engineering', '3.58', '4', '0'), (8490, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '112', 'NIT Silchar', 'EE', '8.5', '100', '0'), (8491, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '160', '322', '4.5', '112', 'Manipal Institue of Technology', 'Electrical and Electronics', '7.1', '10', '0'), (8492, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '111', 'NIT', 'CSE', '8.37', '10', '0'), (8493, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '500', '1300', '3', '99', 'Shanghai Jiao Tong University', 'ECE', '3.2', '4', '0'), (8494, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'PICT', 'Computer Engg.', '0', '0', '0'), (8495, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '160', '161', '321', '4', '114', 'Yeshwantrao Chavan College of Engineering', 'Electronics and communication', '68.86', '100', '19'), (8496, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '106', 'Bangalore University', 'CS', '79.99', '100', '0'), (8497, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4', '106', 'SSN College of Engineering', 'ECE', '89', '100', '0'), (8498, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '169', '164', '333', '4', '109', 'BMSCE', 'EEE', '9.23', '10', '0'), (8499, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '163', '161', '324', '4.5', '116', 'SASTRA', 'Electronics and Communication Engg', '8.13', '10', '0'), (8500, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '630', '1410', '4', '96', 'Anna University', 'Mechanical Engineering', '8.93', '10', '0'), (8501, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '650', '1430', '4.5', '118', 'Pune University', '0', '75', '100', '0'), (8502, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '700', '1490', '5.5', '277', 'D J Sanghvi', 'EXTC', '69.5', '100', '0'), (8503, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'None', 'School of Management', '0', '0', '0'), (8504, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '730', '550', '1280', '4', '100', 'MU', 'Electronics', '61', '100', '0'), (8505, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '690', '1490', '4', '113', 'NSIT', 'COE', '75', '100', '0'), (8506, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2010', '740', '600', '1340', '5', '104', 'Padmashree Dr D Y Patil University', 'Department of Biotechnology and Bioinformatics', '72.4', '100', '0'), (8507, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '163', '332', '4.5', '115', 'BITS Pilani', 'Electronics', '8.65', '10', '0'), (8508, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '490', '1290', '3.5', '106', 'NIT Durgapur', 'electronics and communication engineering', '8.5', '10', '0'), (8509, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2014', '165', '161', '326', '4', '114', 'KIIT', 'Electronics and Electrical', '9', '10', '0'), (8510, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '4.5', '114', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '9', '10', '0'), (8511, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', 'None', 'NIT Surathkal', 'Computer Engineering', '8.64', '10', '0'), (8512, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '111', 'VTU', 'Mechanical Engineering', '8.85', '10', '0'), (8513, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '730', '530', '1260', '3', 'None', 'MU', 'Electronics', '67', '100', '0'), (8514, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '3.5', '109', 'Sardar Patel College of Engineering', '0', '8', '10', '0'), (8515, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '159', '323', '4', 'None', 'Clemson University', 'Electrical Engineering', '3.81', '4', '0'), (8516, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '580', '1370', '4', '109', 'Gujarat Technological University', 'Electronics and Communications', '72.5', '100', '0'), (8517, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '164', '152', '316', '4', '108', 'VIT University', 'Bioinformatics', '8.74', '10', '0'), (8518, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '159', '328', '4.5', '118', 'Netaji Subhas Institute of Technology', 'Electronics and Communicartion', '74.95', '100', '0'), (8519, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '4.5', '117', 'VTU', 'Computer Science', '8.81', '10', '12'), (8520, '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2012', '800', '580', '1380', '3.5', '110', 'University of Mumbai', 'Electronics and Telecommunication', '72', '100', '0'), (8521, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '106', 'IIT Bombay', 'Mechanical', '8.1', '10', '0'), (8522, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '109', 'M S University of Baroda', 'Computer Science', '4', '4', '0'), (8523, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '169', '337', '5', 'None', 'SVCE', 'Computer Science & Engineering', '74', '100', '32'), (8524, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '730', '1530', '3.5', '114', 'CEG', 'EEE', '8.66', '10', '0'), (8525, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '114', 'MANIT BHOPAL', 'Computer Science', '8.59', '10', '0'), (8526, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '117', 'NIT Nagpur', 'civil engineering', '8.96', '10', '0'), (8527, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '162', '328', '4', '117', 'NITK Surathkal', 'Computer Science and Engineering', '8.23', '10', '26'), (8528, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'MU', 'Computer Science', '73', '100', '0'), (8529, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4.5', '108', 'MU', 'Electronics Engg.', '0', '0', '0'), (8530, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3', '112', 'JNTU', 'Computer Science', '77.38', '100', '0'), (8531, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '790', '660', '1450', '4', '115', 'Cochin University of Science and Technology', 'Electronics & Communication', '66.6', '100', '0'), (8532, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '115', 'BITS Pilani', 'EEE', '0', '0', '0'), (8533, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '152', '322', '3.5', '108', 'NSIT', 'ECE', '74.64', '100', '36'), (8534, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '118', 'BITS Pilani', 'Information Systems', '8.81', '10', '0'), (8535, '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2015', '154', '149', '303', '3.5', '100', 'MSRIT', 'Electronics and Communication', '9.35', '10', '0'), (8536, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '157', '321', '5', '113', 'NIT Rourkela', 'Civil Engineering', '8.23', '10', '0'), (8538, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '162', '153', '315', '4', '101', 'NIT', 'Electronics and Telecommunication Engineering', '9.59', '10', '22'), (8539, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '800', '580', '1380', '3.5', 'None', 'Anna University', 'Electronics and Communication', '0', '0', '0'), (8540, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '110', 'University of Pune', 'Mechanical Engineering', '102', '100', '0'), (8541, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '164', '328', '4', '119', 'BITS Pilani', 'CS and Physics', '7.97', '10', '0'), (8542, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2009', '720', '540', '1260', '3.5', '113', 'VTU', 'Computer Science', '68', '100', '0'), (8543, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '4', '114', 'None', 'Computer Science', '9.57', '10', '0'), (8544, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '560', '1360', '3.5', '116', 'Supelec (France)', 'Electrical Engineering', '3.5', '4', '0'), (8545, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '165', '148', '313', '4.5', '112', 'None', 'Computer Science', '8.3', '10', '0'), (8546, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '164', '329', '4', '111', 'Anna University', 'Computer Science and Engineering', '9.3', '10', '0'), (8547, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '770', '570', '1340', '3', '105', 'None', '0', '0', '0', '0'), (8548, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '660', '1420', '4', '102', 'JNTU', 'Computer Science and Engineering', '71', '100', '0'), (8549, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '800', '690', '1490', '4', '115', 'R V College of Engineering', 'Electrical and Electronics Engineering', '72', '100', '0'), (8550, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2013', '161', '157', '318', '4', '111', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (8551, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4.5', '119', 'R V College of Engineering', 'CSE', '9.85', '10', '0'), (8552, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2008', '800', '540', '1340', '6', '300', 'University of Mumbai', 'Mechanical Engineering', '76', '100', '0'), (8553, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VESIT', 'Information Technology', '69', '100', '0'), (8554, '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '630', '1430', '5', '112', 'NITC', 'ME', '0', '0', '0'), (8555, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'BITS Goa', 'Computer Science(B.E) & Bio (Msc)', '8.58', '10', '0'), (8556, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '157', '322', '4', '322', 'MU', 'it', '81', '100', '33'), (8558, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2011', '780', '720', '1500', '4', '116', 'IGIT', 'Mechanical', '70', '100', '0'), (8559, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '720', '1520', '5.5', 'None', 'Anna University', 'Mech', '9.5', '10', '0'), (8560, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2011', '790', '670', '1460', '5', '118', 'Madras Institute of Technology', 'Electronics and Instrumentation', '8.9', '10', '0'), (8561, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2014', '162', '151', '313', '4', '108', 'Naval Polytechnical Academy', 'Weapons Systems Engineering and Operations', '91.5', '100', '0'), (8562, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '590', '1380', '3', '107', 'Anna University', 'INFORMATION TECHNOLOGY', '82', '100', '0'), (8563, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '610', '1370', '4', '107', 'PSG College of Technology', 'Information Technology', '8.76', '10', '0'), (8564, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '169', '155', '324', '4', '119', 'VIT', 'Computer Engineering', '82', '100', '0'), (8565, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '4.5', '105', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '9.1', '10', '0'), (8566, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '167', '156', '323', '4', '114', 'VJTI', 'Civil Engineering', '7.7', '10', '0'), (8567, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '720', '1470', '3.5', '107', 'Sri Krishna College Of Engineering And Technology', 'computer science & engineering', '71', '100', '0'), (8568, '14', 'Admit', 'MS', 'Financial Engineering', 'Spring ', '2011', '800', '540', '1340', '4', '105', 'None', '0', '74', '100', '0'), (8569, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '154', '323', '4', '109', 'Jaypee Institute of Information Technology', 'Computer Science', '7.5', '10', '0'), (8570, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '119', 'Pune University', 'Information Technology', '66', '100', '0'), (8571, '14', 'Admit', 'MS', 'Entertainment technology-Animations and graphics', 'Fall', 'None', '790', '560', '1350', '4', '106', 'NIT Calicut', 'Computer Science', '8.34', '100', '0'), (8572, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '111', 'MU', 'Computer Engineering', '68.42', '100', '0'), (8573, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '500', '1250', '3.5', '103', 'Maharishi Dayanand University', 'Computer Science & Engineering', '63.4', '100', '0'), (8574, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '490', '1280', '4', '106', 'College of Engineering and Technology', 'Biotechnology', '77', '100', '0'), (8575, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '4', '114', 'SJCE', 'ELECTRONICS AND COMMUNICATION', '85', '100', '0'), (8576, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '700', '1470', '3.5', '116', 'SASTRA', 'Information and Communication Technology', '8.4', '10', '0'), (8577, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '5.5', '110', 'BNMIT', 'Electronics and communications', '86.1', '100', '0'), (8578, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '560', '1350', '3.5', '107', 'None', '0', '0', '0', '0'), (8579, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '480', '1280', '3', '92', 'MU', 'Electronics', '75.86', '100', '0'), (8580, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '168', '334', '4', '117', 'None', '0', '9.3', '10', '0'), (8581, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '600', '1390', '3.5', 'None', 'SVCE', 'CS', '75', '100', '0'), (8582, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '620', '1420', '4', '115', 'PICT', 'Information Technology', '62', '100', '0'), (8583, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2015', '164', '167', '331', '5', 'None', 'Georgia Tech', 'Computer Science', '2', '4', '138'), (8585, '14', 'Admit', 'MS', 'Computational Science', 'Fall ', '2012', '800', '670', '1470', '4', '114', 'NIT Hamirpur', 'Mechanical Engineering', '8.68', '10', '0'), (8586, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '490', '1280', '4.5', '108', 'SSN College of Engineering', 'Electronics And Communication Engineering', '82', '100', '0'), (8589, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '610', '1390', '5', '107', 'None', 'E&TC;', '3.92', '4', '0'), (8590, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '162', '331', '5', '112', 'IIT Bombay', 'Chemical Engineering', '9.22', '10', '0'), (8591, '14', 'Admit', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '1430', '640', '2070', '3.5', '114', 'D J Sanghvi', 'EXTC', '81.4', '100', '0'), (8592, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4.5', '112', 'CEG', 'Computer Science', '9.21', '10', '0'), (8593, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '3', '112', 'Zhejiang University', 'Digital Media Technology', '87', '100', '0'), (8594, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '170', '155', '325', '5', '112', 'NITK Surathkal', 'Civil Engineering', '9.22', '10', '0'), (8595, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '100', 'D J Sanghvi', 'EXTC', '79', '100', '0'), (8596, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'Sardar Patel College of Engineering', 'Electrical Engineering', '70.22', '100', '0'), (8597, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '164', '162', '326', '4', '116', 'R V College of Engineering', 'Information Science', '9.35', '10', '0'), (8598, '14', 'Admit', 'MS', 'Construction Management', 'Fall ', '2014', '163', '157', '320', '3.5', '116', 'IIT Roorkee', 'Architecture & Planning', '7.714', '10', '0'), (8599, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '107', 'Thapar University', 'Computer Science', '9', '10', '0'), (8600, '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2014', '163', '157', '320', '4', '115', 'BITS Pilani', 'Biological Sciences and Chemical Engineering', '6.11', '10', '0'), (8601, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '160', '322', '4', '110', 'University of Pune', 'Civil', '73.73', '100', '6'), (8602, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4', 'None', 'IT BHU', 'Metallurgical Engineering', '7.74', '10', '0'), (8603, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IT BHU', 'CSE', '8.17', '10', '0'), (8604, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '650', '1450', '4.5', '117', 'Nirma Institute of Technology', 'Information Technology', '8.88', '10', '0'), (8605, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '570', '1370', '3.5', '107', 'CEG', 'ECE', '8.85', '10', '0'), (8606, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '163', '330', '4.5', '118', 'R V College of Engineering', 'Information Science Engineering', '9.09', '10', '0'), (8607, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8608, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.8', '10', '0'), (8609, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '730', '1530', '4.5', '116', 'CEG', 'ECE', '9.7', '10', '0'), (8611, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '154', '322', '4', '112', 'Manipal Institue of Technology', 'Mechanical & Manufacturing', '9.2', '10', '0'), (8612, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '151', '321', '3.5', '100', 'IIT Roorkee', 'Mech and Industrial Engg', '7.4', '10', '10'), (8613, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '111', 'VIT Pune', 'Computer Engineering', '72', '100', '0'), (8614, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'CEG', 'ECE', '8.81', '10', '0'), (8615, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '760', '630', '1390', '4', '108', 'K J Somaiya College of Engiineering', 'Electronics', '70', '100', '0'), (8616, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '151', '312', '3', 'None', 'Bharathiar University', 'Electrical and Electronics', '8', '10', '84'), (8617, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '680', '1480', '3.5', '101', 'D J Sanghvi', 'Computer Engineering', '70', '100', '0'), (8618, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '162', '158', '320', '4', '112', 'KU', 'Information Technology', '7.1', '10', '0'), (8619, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall ', '2014', '163', '158', '321', '4', '111', 'None', '0', '0', '0', '0'), (8620, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '157', '325', '4', '113', 'CEG', 'ECE', '9.27', '10', '0'), (8621, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '159', '323', '4', '109', 'MU', 'Electronics & Telecommunication', '68.88', '100', '0'), (8622, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '550', '1350', '4', '114', 'WBUT', 'ECE', '9.04', '10', '0'), (8623, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '158', '328', '4', '110', 'Sir MVIT', 'Computer Science and Engg', '83.5', '100', '0'), (8624, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4', '119', 'SSN College of Engineering', 'Computer science', '8.7', '10', '0'), (8625, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2013', '760', '630', '1390', '3.5', 'None', 'UPTU', '0', '69', '100', '0'), (8626, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '115', 'University of Pune', 'Mechanical Engineering', '65.15', '100', '0'), (8627, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '4', '108', 'VESIT', 'Electronics and Telecommunication', '70.53', '100', '0'), (8628, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '5', '117', 'CEG', 'ECE', '9.3', '10', '0'), (8630, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'BITS Goa', 'B.E(Hons) Computer Science & M.Sc(Hons) Economics', '8.47', '10', '0'), (8631, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '640', '1440', '4.5', '116', 'M.U.', 'Infotech', '64.5', '100', '0'), (8632, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '163', '333', '4', '109', 'BITS Pilani', 'Electrical and Electronics', '8.9', '10', '0'), (8633, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '104', 'SSN College of Engineering', 'CSE', '87.5', '100', '0'), (8634, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '168', '337', '4', '111', 'None', '0', '0', '0', '0'), (8635, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '800', '600', '1400', '4.5', '114', 'BITS Pilani', 'Electrical and Electronics', '8', '10', '0'), (8637, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '3.5', '102', 'SSN College of Engineering', 'Computer Science and Enginnering', '86.6', '100', '0'), (8638, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '118', 'Anna University', 'IT', '80', '100', '0'), (8639, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '440', '1240', '3', '105', 'Sri Jayachamarajendra College of Engineering', 'ELECTRONICS AND COMMUNICATION', '9.82', '10', '0'), (8640, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '590', '1370', '4', '113', 'BITS Pilani', 'Computer Science', '9.36', '10', '0'), (8641, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '520', '1280', '3.5', '103', 'CEG', 'Computer Science', '9.01', '10', '0'), (8642, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '112', 'PSG College of Technology', 'Information Technology', '9.05', '10', '0'), (8643, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2007', '800', '390', '1190', '4', '263', 'Nirma Institute of Technology', 'Civil Engineering', '8.65', '10', '0'), (8644, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '163', '151', '314', '4', '108', 'VIT', 'EEE', '8.53', '10', '0'), (8645, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '100', 'PICT', 'IT', '60', '100', '0'), (8646, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (8647, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '630', '1420', '4', '108', 'B N M Institute of Technology', 'ECE', '87.65', '100', '0'), (8648, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall', 'None', '156', '162', '318', 'None', '115', 'Universidad Simon Bolivar', 'Computer Science', '4.6', '5', '0'), (8649, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '15', '168', '158', '326', '4', '109', 'IIT Guwahati', 'ECE', '9.47', '10', '8'), (8650, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4', '107', 'TSEC', 'Computer Engineering', '74', '100', '0'), (8651, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '710', '550', '1260', '4.5', '108', 'ITESM', 'CS', '86', '100', '0'), (8652, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3', 'None', 'University of madras/ Vellammal Engineering College', 'Computer science and Engineering', '73', '100', '0'), (8653, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '160', '328', '4.5', '106', 'Manipal Institue of Technology', 'Computer science engineering', '8.8', '10', '0'), (8654, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '740', '600', '1340', '3.5', '117', 'Netaji Subhas Institute of Technology', 'Information Technology', '76.7', '100', '0'), (8655, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '149', '315', '4', '107', 'VESIT', 'Electronics', '78.25', '100', '0'), (8656, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '155', '325', '4', '112', 'BITS Pilani', 'Electrical and Electronics', '9.13', '10', '0'), (8657, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '113', 'University of Mumbai', 'Electronics and Telecommunication', '73', '100', '0'), (8658, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '110', 'BITS Pilani', 'Computer Science and Engineering', '6.93', '10', '0'), (8659, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '162', '328', '4', '117', 'BITS Pilani', 'Computer Science', '8.52', '10', '0'), (8660, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '570', '1350', '4', '113', 'National University of Singapore', 'ECE', '4.42', '5', '0'), (8661, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '164', '162', '326', '4', '113', 'Manipal Institue of Technology', 'IT', '7.24', '10', '0'), (8662, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '161', '328', '3', '103', 'COEP', 'Instrumentation and Control', '9.38', '10', '12'), (8663, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '113', 'NIT Karnataka', 'Computer Science', '7.75', '10', '0'), (8664, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2006', '800', '680', '1480', '4.5', '280', 'COEP', 'E & TC', '0', '0', '0'), (8665, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4.5', '115', 'BITS Hyderabad', 'Computer Science', '8.55', '10', '30'), (8666, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics Engineering', '66.82', '100', '0'), (8667, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3.5', '116', 'Mahatma Gandhi University Kerala', 'Electronics & Communication Engineering', '68', '100', '0'), (8668, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4.5', '117', 'VTU', 'Information Science', '79', '100', '0'), (8669, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'None', 'Electrical and Electronics Engineering', '8.73', '10', '0'), (8670, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '720', '1520', '4.5', '120', 'R V College of Engineering', 'ECE', '77.2', '100', '0'), (8671, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '680', '520', '1200', '3.5', '101', 'Maulana Azad National Institute of Technology', 'Bioinformatics', '8.04', '10', '0'), (8672, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '158', '326', '4', '112', 'VIT University', 'EEE', '8.9', '10', '0'), (8673, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '4', '114', 'PICT', 'Computer Engineering', '3.5', '4', '0'), (8674, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '170', '159', '329', '3', '112', 'IIT Kanpur', 'EE', '9', '10', '0'), (8675, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '1334', '530', '1864', '4', '113', 'JSS Noida', 'Computer Science and Engineering', '73.2', '100', '0'), (8676, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '168', '160', '328', '4.5', '119', 'None', 'ECE', '9.8', '100', '24'), (8677, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '115', 'MU', 'electronics engineering', '70', '100', '0'), (8678, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '159', '161', '320', '4', '116', 'R V College of Engineering', 'Information Science', '76', '100', '0'), (8679, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4.5', 'None', 'MU', 'Computer Engineering', '71', '100', '0'), (8680, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', 'Computer Science', '0', '0', '12'), (8681, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '560', '1360', '3.5', '108', 'VTU', 'E&C;', '82.6', '100', '0'), (8682, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '760', '670', '1430', '5.5', '287', 'University of Mumbai', 'Computer Science', '66', '100', '0'), (8683, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (8684, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', 'None', '110', 'BITS Pilani', 'Computer Science', '7.52', '10', '0'), (8685, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '700', '1500', '3', '116', 'VTU', 'electronics & communication', '82', '100', '0'), (8686, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '3', '113', 'NIT Nagpur', 'Computer Science', '9.49', '10', '0'), (8687, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '116', 'Madras Institute of Technology', 'Aerospace Engineering', '8.3', '10', '0'), (8688, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '162', '329', '5', 'None', 'Madras Institute of Technology', 'Computer Science', '8.8', '100', '36'), (8689, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '101', 'BITS Goa', 'Computer Science', '8.76', '10', '0'), (8690, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2014', '170', '159', '329', '3.5', '103', 'PEC University of Technology', 'Electronics Engineering', '7.1', '10', '0'), (8691, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (8692, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '750', '620', '1370', '4.5', '100', 'VESIT', 'Electronics and Telecomm.', '78', '100', '0'), (8693, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2013', '169', '152', '321', '4', '115', 'IIT Roorkee', 'Industrial Engineering-B.Tech', '0', '0', '0'), (8694, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '167', '336', '4', '116', 'IIITDM Kancheepuram', 'Computer Engineering', '8.96', '10', '0'), (8695, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '780', '600', '1380', '4.5', '116', 'SSN College of Engineering', 'Computer Science and Engineering', '8.41', '10', '0'), (8696, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '160', '330', '4.5', '110', 'IIITDM Kancheepuram', 'Eledctronics Design and Manufacturing', '9.25', '10', '18'), (8697, '14', 'Admit', 'MS', 'Industrial Design', 'Fall ', '2014', '168', '158', '326', '4.5', '105', 'IIT Roorkee', 'Mechanical Engineering', '6.8', '10', '0'), (8698, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '108', 'JNTU', 'CSE', '76', '100', '0'), (8700, '14', 'Admit', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '540', '1340', '3', '107', 'University of Mumbai', 'Electronics', '73.08', '100', '0'), (8701, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '117', 'SSN College of Engineering', 'CSE', '81', '100', '0'), (8702, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '168', '161', '329', '3.5', '117', 'MU', 'Production Engineering', '74.8', '100', '0'), (8703, '14', 'Admit', 'MS', 'Computer Networking', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'Manipal Institue of Technology', 'Electronics', '8.7', '10', '0'), (8705, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '610', '1410', '4', '115', 'SSN College of Engineering', 'ECE', '80.2', '100', '0'), (8706, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '420', '1210', '4.5', '108', 'Maharashtra Institute of Technology', 'Mechanical', '65.33', '100', '0'), (8707, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '170', '159', '329', '4', '112', 'Model Engineering College', 'Computer Science and Engineering', '76.3', '100', '0'), (8708, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '5', '116', 'BITS Pilani', 'Computer Science', '7.9', '10', '0'), (8709, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '166', '334', '4', '113', 'RGPV', 'Computer Science', '75.7', '100', '0'), (8710, '14', 'Admit', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '155', '146', '301', '2.5', '105', 'R V College of Engineering', 'Biotechnology', '8.57', '10', '0'), (8711, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '155', '325', '4.5', '105', 'Delhi College Of Engineeing', 'Electronics and Communication', '67.5', '100', '0'), (8712, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '590', '1390', '3.5', '113', 'Sardar Patel College of Engineering', 'Electronics Engineering 2009 Batch (old syllabus)', '73.7', '100', '0'), (8713, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '4.5', '114', 'IIT Kharagpur', 'Elctronics and Communication', '9.35', '10', '0'), (8715, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '155', '319', '4', '112', 'BITS Goa', 'Electronics and Instrumentation', '9.313', '10', '0'), (8716, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '166', '158', '324', '3.5', '114', 'Maharaja Agrasen Institute Of Technology', 'ECE', '72.6', '100', '2'), (8718, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '166', '161', '327', '4.5', '110', 'IIT Madras', 'Mechanical', '6.68', '10', '0'), (8719, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '109', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'Information & Communication Technology', '9.35', '10', '0'), (8720, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '165', '155', '320', '3.5', '118', 'NITK Surathkal', 'Electronics and communication', '9.01', '10', '0'), (8721, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2014', '170', '155', '325', '3.5', '109', 'Institute of Engineering and Technology Lucknow', 'Computer science', '74.4', '100', '0'), (8722, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (8723, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '750', '570', '1320', '3', '102', 'Jaypee Institute of Information Technology', 'CSE/IT', '6.62', '10', '0'), (8724, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '167', '157', '324', '5', '113', 'VIT', 'Electrical and Electronics Engineering', '8.65', '10', '1'), (8725, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '520', '1290', '3.5', '107', 'R V College of Engineering', 'Electronics and communication', '84', '100', '0'), (8726, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '155', '149', '304', '3.5', '89', 'VTU', 'Biotechnology', '71', '100', '0'), (8727, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '155', '316', '4', '106', 'NIT Surat', 'Civil Engineering', '8.31', '10', '0'), (8728, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '760', '640', '1400', '3.5', '113', 'MU', 'Elec and Telecom', '67.1', '100', '0'), (8729, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '106', 'IIT Madras', 'Electrical Engineering', '9.13', '10', '0'), (8730, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2008', '780', '640', '1420', '4.5', '102', 'Anna University', 'CSE', '81', '100', '0'), (8731, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '72.9', '100', '0'), (8732, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '161', '321', '4', '113', 'KSRCT Anna university', 'Biotechnology', '86', '100', '0'), (8733, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '710', '420', '1130', '3.5', '106', 'Padmashree Dr D Y Patil University', 'Dept. of Biotechnology and Bioinformatics', '68.1', '100', '0'), (8734, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2012', '710', '660', '1370', '4.5', '111', 'VIT University', 'Bioinformatics', '8.83', '10', '0'), (8735, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '157', '325', '4', '110', 'BITS Pilani', 'Electrical and Electronics', '8.86', '10', '0'), (8736, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '161', '325', '4', '109', 'BPUT', 'Electrical Engineering', '9.03', '10', '0'), (8737, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (8738, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '3', '108', 'MIT', 'CSE', '9', '10', '0'), (8739, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '4', '117', 'SSN College of Engineering', 'Electronics & Communications', '82', '100', '0'), (8740, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3.5', '107', 'Thapar University', 'Computer Engineering', '8.15', '10', '0'), (8741, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '158', '322', '3.5', '111', 'GGSIPU', 'ECE', '79.22', '100', '0'), (8743, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '4', '110', 'BITS Pilani', 'CS', '9.18', '10', '0'), (8744, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '600', '1400', '4', '110', 'COEP', 'Mechanical', '6.97', '10', '0'), (8745, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '630', '1430', '4', '115', 'VTU', 'ECE', '77', '100', '0'), (8747, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '800', '560', '1360', '3.5', '108', 'R V College of Engineering', 'Electronics and Communication', '9.54', '10', '0'), (8748, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'NITK Surathkal', 'Computer Science', '8.82', '10', '0'), (8749, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '520', '1290', '3', '104', 'PSG College of Technology', 'EEE', '9.12', '10', '0'), (8750, '14', 'Admit', 'MS', 'Textile Science & Technology', 'Fall ', '2012', '740', '300', '1040', '2', 'None', 'Osmania University', 'Textile Technology', '9.02', '10', '0'), (8751, '14', 'Admit', 'MS', 'Operations Research', 'Spring ', '2012', '790', '430', '1220', '4', '107', 'Anna University', 'ECE', '88', '100', '0'), (8752, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '165', '332', '4.5', '113', 'University of Pune', 'Electronics and Telecommunication', '63.33', '100', '0'), (8753, '14', 'Admit', 'MS', 'Telecommunication', 'Fall ', '2014', '164', '161', '325', '4', '116', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '65.48', '100', '0'), (8754, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '156', '322', '4', '106', 'IIT', 'EE', '9.1', '10', '48'), (8755, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', '4', '111', 'MU', 'EXTC', '70', '100', '0'), (8756, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '106', 'Govt. College of Technology Coimbatore (Anna University)', 'Computer Science and Engineering', '8.6', '10', '0'), (8757, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '690', '1440', '4.5', '113', 'VTU', 'ECE', '8.77', '10', '0'), (8758, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '109', 'NITK Surathkal', 'Mechanical Engg', '8.4', '10', '0'), (8759, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '151', '316', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication Engineering', '9.6', '10', '0'), (8760, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '4', '106', 'None', '0', '8.7', '10', '0'), (8761, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '114', 'Jabalpur Engineering College (Govt.)', 'Information Technology', '71.5', '100', '0'), (8762, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '162', '332', '3.5', '109', 'Delhi College Of Engineeing', 'Mechanical', '79.02', '100', '0'), (8763, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '560', '1360', '4', '111', 'DCE', 'EC', '80', '100', '0'), (8764, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2013', '160', '168', '328', '4', '110', 'VIT', 'CS', '8.1', '10', '0'), (8765, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '560', '1360', '4', '108', 'MU', 'Computer', '58.7', '100', '0'), (8766, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '500', '1290', '3', '105', 'VJTI', 'IT', '8.4', '10', '0'), (8767, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '4', '111', 'NIT Surathkal', 'ECE', '8.15', '10', '0'), (8768, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '160', '323', '4', '109', 'Amity School of Engineering and Technology', 'Computer Science and Engineering', '7.56', '10', '0'), (8770, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2012', '800', '480', '1280', '4', '109', 'TSEC', 'Chem Engg', '72', '100', '0'), (8771, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '157', '326', '4.5', '118', 'VIT University', 'ECE', '9.28', '10', '2'), (8773, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '800', '570', '1370', '3.5', '113', 'VIT', 'Computer Science and Engineering', '8.61', '10', '0'), (8774, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '560', '1350', '4', '4', 'CEG', 'Manufacturing', '8.61', '10', '0'), (8775, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2013', '166', '161', '327', '4', '111', 'D J Sanghvi', 'Chemical Engineering', '6', '10', '0'), (8776, '14', 'Admit', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (8778, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '165', '146', '311', '3', '101', 'MANIT (NIT) Bhopal', 'Bioinformatics', '7.13', '10', '25'), (8779, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4.5', '117', 'IIT Bombay', 'Computer Science', '7.84', '10', '0'), (8780, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8781, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '690', '1480', '3.5', 'None', 'University of Texas at Austin', 'ECE', '3.64', '4', '0'), (8782, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3.5', 'None', 'VIT', 'Information Technology', '9.25', '10', '0'), (8783, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '165', '332', '4', '118', 'MU', 'Computer Engineering', '67.6', '100', '0'), (8784, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '166', '169', '335', '4', '113', 'IIT Guwahati', 'ECE', '8.37', '100', '0'), (8785, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '157', '320', '3', '106', 'Jaypee Institute of Information Technology', 'CS', '7.4', '10', '0'), (8786, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '630', '1380', 'None', '114', 'PESIT', 'Information Science', '8.1', '10', '0'), (8787, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '710', '1510', '4', '115', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '75.5', '100', '0'), (8788, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '660', '1460', '4.5', '118', 'MU', 'Electronics and Telecommunication', '80.66', '100', '0'), (8789, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '108', 'VIT University', 'EE', '8.7', '10', '0'), (8790, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '155', '318', '4', '116', 'MSRIT', 'Electronics and Communication', '9.22', '10', '0'), (8791, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'IIT Roorkee', 'Architecture', '8.2', '10', '0'), (8792, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4.5', '113', 'UPTU', 'CSE', '78.7', '100', '0'), (8793, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '770', '670', '1440', '3', '113', 'SGSITS', 'Information Technology', '75.6', '100', '0'), (8794, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '730', '1530', '5', '119', 'MU', 'Electronics and Telecommunication', '71.9', '100', '0'), (8795, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '4', '110', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73', '100', '0'), (8796, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '160', '325', '4', '117', 'SJCE', 'E&C;', '9.5', '10', '0'), (8797, '14', 'Admit', 'MS', 'Electronics and Communication', 'Spring ', '2016', '170', '162', '332', '4', '110', 'BITS Pilani', 'Electronics and Communication', '9.43', '10', '3'), (8799, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'SRM', 'Civil Engineering', '9.66', '10', '0'), (8800, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '710', '1490', '4', '111', 'Thadomal Shahani Engineering College', 'Computer Engineering', '67', '100', '0'), (8801, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '610', '1390', '4', '108', 'PESIT', 'Computer Science', '69.56', '100', '0'), (8802, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '106', 'COEP', 'Computer Engineering & Information Technology', '8.27', '10', '0'), (8803, '14', 'Admit', 'MS', 'Embedded systems', 'Fall ', '2013', '166', '158', '324', '3.5', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.8', '10', '0'), (8804, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '1420', '116', 'IIT Roorkee', 'ECE', '8.026', '10', '0'), (8805, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '560', '1360', '3', '98', 'D j Sanghvi', 'EXTC', '71', '100', '0'), (8806, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2011', '800', '690', '1490', '4.5', '115', 'DA-IICT', 'Information and Communication Technology', '8.29', '10', '0'), (8807, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '163', '333', '3.5', '113', 'NITK Surathkal', 'ECE', '8.17', '100', '0'), (8808, '14', 'Admit', 'MS', 'Information Security', 'Fall ', '2012', '158', '151', '309', '4.5', '110', 'Nagpur University', 'Electronics and Communication', '76', '100', '0'), (8809, '14', 'Admit', 'MS', 'Civil and Environmental Engg', 'Fall', 'None', '169', '165', '334', '4.5', '114', 'IIT Bombay', 'Chemical Engineering', '7.43', '10', '0'), (8810, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2010', '800', '590', '1390', '4', '112', 'University of Mumbai', 'Chemical Engineering', '0', '0', '0'), (8811, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '157', '326', '4', '116', 'BITS Pilani', 'EEE', '8.83', '10', '0'), (8812, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '112', 'NIT Tirchy', 'CS', '8.81', '10', '0'), (8813, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '5', '113', 'Delhi College Of Engineeing', 'Computer Engineerring', '63', '100', '0'), (8814, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8815, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2011', '790', '470', '1260', '4.5', '110', 'VTU', 'biotechnology', '7.9', '10', '0'), (8816, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2013', '157', '150', '307', '3', '106', 'DY Patil University Navi Mumbai', 'Bioinformatics', '71', '100', '0'), (8817, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '155', '320', '4.5', '110', 'SASTRA', 'ECE', '9.1', '10', '0'), (8819, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2011', '790', '640', '1430', '4', '109', 'K J Somaiya College of Engiineering', 'Mechanical Engineering', '60', '100', '0'), (8821, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '500', '1300', '4.5', '283', 'IP University Delhi', 'CSE', '81.61', '100', '0'), (8822, '14', 'Admit', 'MS', 'Industrial Engineering', 'Spring ', '2008', '800', '600', '1400', '4', '112', 'University of Kerala', 'Mechanical', '73', '100', '0'), (8823, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall', 'None', '153', '148', '301', '3.5', '101', 'VTU', 'Computer science and engineering', '72.07', '100', '0'), (8824, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '1300', 'None', '1300', 'None', '100', 'BITS Pilani', 'Electrical and electronics', '7.5', '10', '0'), (8825, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '166', '335', '3.5', '113', 'NIT', 'Civil Engineering', '9.22', '10', '0'), (8826, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '154', '322', '4', '110', 'Nagpur University', 'Electrical engineering', '74.4', '100', '0'), (8827, '14', 'Admit', 'MS', 'Electrical Engineering', 'Spring ', '2012', '800', '620', '1420', '1420', '105', 'RAIT', 'ECE', '72', '100', '0'), (8828, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '460', '1250', '3.5', '107', 'SSN College of Engineering', 'Electronics and Communication Engineering', '86', '100', '0'), (8829, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '160', '162', '322', '4', '114', 'R V College of Engineering', 'Computer Science and Engineering', '9.18', '10', '0'), (8830, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '730', '1520', '3.5', '109', 'VTU', 'CSE', '82.5', '100', '0'), (8831, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '550', '1350', '3.5', '109', 'MU', 'Computer', '75.2', '100', '0'), (8832, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '154', '323', '4.5', '111', 'MU', 'Electronics and telecommunication', '80', '100', '0'), (8833, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '600', '1370', '5', 'None', 'Toronto', 'EE', '3.6', '4', '0'), (8834, '14', 'Admit', 'MS', 'Operations Research', 'Fall ', '2012', '800', '480', '1280', '4', '115', 'IIT Madras', 'Electrical Engineering', '7.3', '10', '0'), (8835, '14', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8836, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '770', '690', '1460', '4.5', '116', 'None', 'Computer Science', '8.48', '10', '0'), (8837, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8838, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '690', '1490', '5', '114', 'VTU', 'Electronics and Communication', '9.85', '10', '0'), (8839, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall', 'None', 'None', 'None', '0', '3', 'None', 'IIT BHU', 'Biomedical Engineering', '7.83', '10', '0'), (8840, '14', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2011', '760', '350', '1110', '3.5', '96', 'VTU', 'Mechanical', '67', '100', '0'), (8841, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '161', '327', '4.5', '107', 'MSRIT', 'Electronics and Communication Engineering', '9.22', '10', '0'), (8843, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '770', '650', '1420', '4', '115', 'Anna University', 'computer science', '80', '100', '0'), (8844, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '750', '610', '1360', '3.5', '109', 'Velammal Engineering College', 'Computer Science and Engineering', '8.8', '10', '0'), (8845, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '157', '322', '4.5', '118', 'University of Pune', 'CS', '68', '100', '0'), (8846, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '108', 'K J Somaiya College of Engiineering', 'Electronics and Telecommunication', '75.26', '100', '0'), (8847, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '5', '119', 'MVJ College of Engineering', 'Computer Science', '75.2', '100', '0'), (8848, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '104', 'DCE', '0', '74', '100', '0'), (8849, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (8850, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '570', '1320', '3', '106', 'UA', 'Electronics And Communication', '75.7', '100', '0'), (8851, '14', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2014', '159', '154', '313', '3.5', '107', 'KIIT', 'Civil Engineering', '7.85', '10', '1'), (8852, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '800', '620', '1420', '4', '110', 'IIT Guwahati', 'Design', '8.04', '10', '0'), (8853, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '800', '740', '1540', '4.5', '293', 'D J Sanghvi', 'Computer Engg.', '72.91', '100', '0'), (8854, '14', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '164', '155', '319', '4', '109', 'R V College of Engineering', 'Computer Science and Engineering', '9.4', '10', '0'), (8855, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '162', '327', '4', '111', 'NIT Calicut', 'ECE', '9.04', '10', '17'), (8856, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '165', '333', '4', '117', 'BITS Pilani', 'Computer Science', '9.12', '10', '14'), (8857, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '710', '1490', '4.5', '111', 'VJTI', 'Electronics', '9.1', '10', '0'), (8858, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '157', '320', '5', '114', 'VTU', 'ECE', '73.74', '100', '0'), (8859, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '163', '163', '326', '4.5', '118', 'VTU', 'Telecommunication', '8.38', '10', '0'), (8860, '14', 'Admit', 'MS', 'Bioinformatics', 'Fall ', '2009', '740', '510', '1250', '3.5', '108', 'Amity University', 'Bioinformatics', '7.88', '10', '0'), (8861, '14', 'Admit', 'MS', 'Urban Design', 'Fall ', '2015', '156', '155', '311', '4.5', '110', 'University of Mumbai', 'Sir J J College of Architecture', '74', '100', '36'), (8862, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '5', '111', 'SSN College of Engineering', 'Electronics and Communication Engineering', '87', '100', '0'), (8863, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '155', '321', '3.5', '113', 'YMCA', 'EIC', '8.17', '10', '0'), (8864, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '800', '510', '1310', '4', '112', 'BITS Pilani', '0', '9.91', '10', '0'), (8865, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '620', '1420', '4.5', '116', 'Jadavpur University', 'Electrical Engineering', '8.82', '10', '0'), (8866, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', '164', '157', '321', '4', '111', 'SSN College of Engineering', 'ECE', '8.705', '10', '0'), (8867, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '166', '161', '327', '4', '117', 'University of Mumbai', 'Electronics and Telecom', '72', '100', '0'), (8869, '14', 'Admit', 'MS', 'civil', 'Fall ', '2012', '163', '155', '318', '3.5', '107', 'Jadavpur University', 'construction engg', '8.56', '10', '0'), (8870, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '680', '1480', '5', '114', 'MU', 'Como Sc', '71', '100', '0'), (8871, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '163', '165', '328', '4.5', '115', 'Anna University', 'CSE', '96.4', '100', '0'), (8872, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '156', '323', '4', '110', 'VIT', 'Electrical and Electronics', '8.51', '10', '0'), (8873, '14', 'Admit', 'MS', 'Chemical Engineering', 'Fall ', '2013', '169', '157', '326', '3.5', 'None', 'M.N.I.T. JAIPUR', 'CHEMICAL ENGINEERING', '8.65', '10', '0'), (8874, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2010', '770', '560', '1330', '4.4', '116', 'UIIT HPU', '0', '67', '100', '0'), (8875, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'MU', 'EXTC', '71', '100', '0'), (8876, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2014', '169', '160', '329', '3.5', '114', 'Pune University', 'E&TC;', '64.47', '100', '0'), (8877, '14', 'Admit', 'MS', 'statistics', 'Fall ', '2015', '166', '165', '331', '3.5', '110', 'IIT Roorkee', 'Chemistry', '7.4', '10', '0'), (8878, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '169', '161', '330', '4.5', '117', 'None', 'Computer Science & Engineering', '8.92', '10', '0'), (8879, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (8881, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '5.5', '115', 'VTU', 'Computer Science & Engineering', '78', '100', '0'), (8882, '14', 'Admit', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '114', 'Sardar Patel College of Engineering', 'Computer Science', '70', '100', '0'), (8883, '14', 'Admit', 'MS', 'Electrical and Electronics', 'Fall ', '2013', '168', '152', '320', '4', 'None', 'Thiagarajar College of engineering', 'electrical and electronics', '9.53', '10', '0'), (8884, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '160', '322', '4', '112', 'Bangalore University', 'electrical', '70', '100', '0'), (8885, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8886, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '157', '327', '4', '108', 'MU', 'Electronics and Telecommunication', '59.7', '100', '0'), (8887, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '730', '490', '1220', '4', '110', 'Jaypee Institute of Information Technology', 'CSE', '8.7', '10', '0'), (8888, '14', 'Admit', 'MS', 'CS', 'Fall ', '2013', '166', '164', '330', '5', '119', 'CoE Trivandrum', 'Electronics and Communication Engg', '8.5', '10', '0'), (8889, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2012', '700', '430', '1130', '3', '91', 'Andal Alagar College of Engineering', 'EEE', '79.3', '100', '0'), (8890, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall', 'None', '780', '570', '1350', '3.5', '114', 'BITS Dubai', 'Mechanical Engineering', '9.64', '10', '0'), (8891, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '720', '1520', '4', '118', 'Sardar Patel College of Engineering', 'Electrical Engineering', '68', '100', '0'), (8892, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '700', '1490', '4', '116', 'R V College of Engineering', 'electrical', '80.11', '100', '0'), (8893, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '114', 'NITK Surathkal', 'IT', '8.8', '10', '0'), (8894, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '151', '321', '3', '104', 'BITS Goa', 'Mechanical', '8.32', '10', '0'), (8895, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', '167', '155', '322', '4', '116', 'MU', 'EXTC', '77', '100', '0'), (8896, '14', 'Admit', 'MS', 'electronics', 'Fall ', '2012', '800', '680', '1480', '4', '101', 'University of Mumbai', 'Electronics', '80.44', '100', '0'), (8897, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '3.5', '113', 'NITK Surathkal', 'ECE', '8.4', '10', '0'), (8898, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2012', '158', '152', '310', '4', '106', 'Sri Venkateswara College of Engineering', 'ECE', '79', '100', '0'), (8899, '14', 'Admit', 'MS', 'Human Computer Interaction', 'Fall', 'None', '800', '660', '1460', '3.5', '110', 'University of Mumbai', 'Information Technology', '78.48', '100', '0'), (8900, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '106', 'NIT Jalandhar', 'Computer Science', '74', '100', '0'), (8901, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '4', '115', 'Anna University', 'ECE', '79', '100', '0'), (8902, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '530', '1300', '4', '108', 'Anna University', 'ECE', '78.74', '100', '0'), (8903, '14', 'Admit', 'MS', 'Robotics', 'Fall ', '2011', '800', '710', '1510', '4.5', '111', 'Coimbatore Insitute of Technology', 'Computer Science', '8.8', '10', '0'), (8904, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '149', '319', '3', '103', 'International Institute of Information Technology Hyderabad', 'Computer Science and Engineering', '8.36', '10', '0'), (8905, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '157', '323', '4', '114', 'PSG College of Technology', 'Electronics and Communication Engineering', '9.7', '10', '0'), (8907, '14', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '163', '156', '319', '4', '109', 'MU', 'Electronics and telecommunication', '76.5', '100', '0'), (8908, '14', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '155', '322', 'None', '112', 'SASTRA', 'ECE', '0', '0', '0'), (8909, '14', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '161', '325', '5', '118', 'NIT Calicut', 'Electronics and Communication Engineering', '5.9', '10', '0'), (8910, '14', 'Admit', 'MS', 'Finance', 'Fall ', '2011', '50', '34', '84', '4.5', '103', 'IIT Madras', 'Biotechnology', '7.37', '10', '0'), (8912, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '120', 'PICT', 'Information Technology', '4.92', '5', '24'), (8913, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '159', '152', '311', 'None', 'None', 'MU', 'EXTC', '66.4', '100', '0'), (8914, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '680', '1440', '4', '114', 'VESIT', 'Electronics and Telecom', '76', '100', '0'), (8915, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '730', '690', '1420', '4', '109', 'SSN College of Engineering', 'EEE', '79', '100', '0'), (8916, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4', '110', 'BITS Pilani', 'Computer Science', '8.5', '10', '0'), (8917, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4.5', '110', 'NIT Karnataka', 'Computer Science and Engineering', '8.32', '10', '0'), (8918, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '720', '560', '1280', '3.5', '108', 'Model Engineering College', 'Computer science', '75', '100', '0'), (8919, '14', 'Admit', 'MS', 'Structural', 'Fall ', '2013', '164', '154', '318', '4', '104', 'NIT Srinagar', 'Civil Engineering', '9.603', '10', '0'), (8920, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '4', '115', 'CEG', 'Computer Science', '8.3', '10', '0'), (8921, '14', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '164', '334', '4', '113', 'NIT Warangal', 'ECE', '8.64', '10', '0'), (8922, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '790', '700', '1490', '4.5', 'None', 'None', '0', '80', '100', '0'), (8923, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '4.5', '115', 'MNM Jain Engineering College', 'CSE', '75.1', '100', '0'), (8924, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2013', '770', '650', '1420', '4', '111', 'VESIT', 'Electronics and Tele communications', '70', '100', '0'), (8925, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '4', '116', 'SRM', 'Information Technology', '9.8', '10', '0'), (8926, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '4', '113', 'VIT Pune', 'Comp Engg', '8.83', '10', '0'), (8927, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall', 'None', '170', '157', '327', '4', '102', 'BITS Pilani', 'EEE', '9.94', '10', '0'), (8928, '14', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '5', '116', 'University of Mumbai', 'Electronics and Telecommunication', '70.57', '100', '0'), (8929, '14', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '152', '322', 'None', '110', 'SASTRA', 'ECE', '8.1', '10', '24'), (8930, '14', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '5', '116', 'VJTI', 'Computer Engineering', '8.5', '10', '0'), (8931, '14', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', 'None', '790', '660', '1450', '4', '111', 'University of Pune', 'Mechanical Engineering', '63', '100', '0'), (8932, '14', 'Admit', 'MS', 'environmental engineering', 'Fall ', '2011', '800', '670', '1470', '4.5', '113', 'Delhi College Of Engineeing', 'Environmental Engineering', '74.54', '100', '0'), (8933, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '145', '313', '3', '109', 'NITK Surathkal', 'ECE', '8.97', '10', '26'), (8934, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (8935, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '470', '1240', '3.5', '106', 'BMSCE', 'Telecommunication', '70', '100', '0'), (8936, '14', 'Reject', 'MS', 'Electrical Engineering and Computer Science', 'Fall ', '2015', '168', '164', '332', '4', '119', 'University of Mumbai', 'Electronics and Telecommunication', '83', '100', '0'), (8937, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '150', '313', '3.5', '100', 'R V College of Engineering', 'Mechanical', '9.19', '10', '0'), (8938, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3.5', '108', 'Sri Bhagawan Mahaveer Jain College of Engineering', 'Information Science', '73', '100', '0'), (8939, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '170', '150', '320', '3', '104', 'BITS Goa', 'Mechanical', '6.32', '10', '48'), (8940, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '158', '324', '3.5', '105', 'Manipal Institue of Technology', 'Mechatronics', '7.1', '10', '0'), (8941, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '99', '91', '190', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.6', '10', '0'), (8942, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (8943, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '4', '117', 'None', 'EEE', '8.9', '10', '0'), (8944, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '163', '156', '319', '4', '113', 'MU', 'Computer Engineering', '67', '100', '0'), (8945, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (8946, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '156', '324', '4', '112', 'NIT Allahabad', 'CSE', '9.13', '10', '0'), (8947, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Spring ', '2015', '167', '150', '317', '3', '102', 'COEP', 'Instrumentation & Control Engineering', '8.03', '10', '0'), (8948, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '110', 'Vidyalankar Institute of Technology', 'Electronics', '72', '100', '0'), (8949, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '3.5', '103', 'Rajiv Gandhi Technical University', 'Electronics and Communication', '73', '100', '0'), (8950, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '156', '315', '4', '112', 'Cochin University of Science and Technology', 'INFORMATION TECHNOLOGY', '84.15', '100', '63'), (8951, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '158', '156', '314', '3', '109', 'MSRIT', 'Telecommunication', '8.52', '10', '0'), (8952, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', 'None', 'Anna University', 'Production', '8.57', '10', '0'), (8953, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '450', '1250', '4.5', '112', 'Dr. Ambedkar Institute of Technology', 'Computer Science', '75', '100', '0'), (8954, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '660', '1440', '4', '111', 'MU', 'Computer Enginnering', '69', '100', '0'), (8955, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '109', 'BITS Pilani', 'Mechanical', '7.99', '10', '0'), (8956, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', 'None', 'None', '0', 'None', 'None', 'VTU', 'Computer Science', '76', '100', '0'), (8957, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '158', '152', '310', '3.5', '98', 'Shri Ramdeobaba Engineering College', 'Industrial Engineering', '77', '100', '0'), (8958, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '161', '154', '315', '4', '109', 'SRM', 'Civil Engineering', '8.95', '10', '0'), (8959, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '113', 'Galgotias College Of Engineering & Technology', 'CSE', '68.7', '100', '0'), (8960, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '166', '157', '323', '3.5', '111', 'IIT (BHU) Varanasi', 'Metallurgical Engineering', '8.37', '10', '0'), (8961, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '169', '152', '321', '3.5', '97', 'VIT', 'ECE', '89.3', '100', '0'), (8962, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '105', 'University of Pune', 'Computer Engineering', '65', '100', '0'), (8963, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', 'None', 'None', '0', 'None', '117', 'Symbiosis Institute of Technology', 'Mechanical', '3.511', '4', '0'), (8964, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VTU', 'Electronics and Communication', '61', '100', '0'), (8965, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '660', '1430', '3', '111', 'Motilal Nehru National Institute of Technology', 'ECE', '8.65', '10', '0'), (8966, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '790', '690', '1480', '4', '109', 'Sardar Patel College of Engineering', 'Electrical Engineering', '59.3', '100', '0'), (8967, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '710', '1500', '3.5', '107', 'COEP', 'Computers', '6.89', '10', '0'), (8968, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', 'None', '107', 'Thapar University', 'Computer Science', '7.44', '10', '0'), (8969, '14', 'Reject', 'MS', 'CS', 'Fall ', '2012', '800', '700', '1500', '4', 'None', 'University of Mumbai', 'Computer', '64', '100', '0'), (8970, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '570', '1350', '4', '117', 'PESIT', 'Telecommunication Engineering', '8.68', '10', '0'), (8971, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (8972, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (8973, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '152', '315', '3.5', '111', 'Siddaganga Institue of Technology', 'Telecommunication Engineering', '9.17', '10', '0'), (8974, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '111', 'BITS Pilani', 'ENI', '8.42', '10', '0'), (8975, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '3', '106', 'University Vishweriah College of Engineering', 'Computer Science', '75.1', '100', '0'), (8976, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '800', '540', '1340', '4', '119', 'Anna University', 'IT', '74', '100', '0'), (8977, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (8978, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '152', '316', '3.5', '102', 'University of Pune', 'Information Technology', '71.44', '100', '0'), (8979, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '530', '1320', '3.5', '102', 'Sinhgad College of Engineering', 'Computer', '53', '100', '0'), (8980, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '153', '314', '3.5', '108', 'PESIT', 'Electronics and Communication', '69.6', '100', '14'), (8981, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '3.5', '104', 'D J Sanghvi', 'Information Technology', '74', '100', '0'), (8982, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall', 'None', '170', '153', '323', '4', '110', 'IIT', '0', '8.4', '10', '0'), (8983, '14', 'Reject', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (8985, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '157', '324', '3.5', '102', 'Sardar Vallabhbhai National Institute of Technology', 'Production Department', '7.66', '10', '34'), (8986, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '156', '322', '3.5', '114', 'GITAM', 'CSE', '8.04', '100', '0'), (8987, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '109', 'PSG College of Technology', 'ECE', '8.4', '10', '0'), (8988, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '800', '520', '1320', '5', '287', 'D J Sanghvi', 'Computer Engineering', '62', '100', '0'), (8989, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (8990, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '450', '1230', '3.5', 'None', 'Walchand College Of Engineering', 'Electronics', '76', '100', '0'), (8991, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '164', '153', '317', '3.5', '104', 'COEP', 'Civil Engineering', '7.52', '10', '0'), (8992, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3.5', '107', 'Nagpur University', 'electronics', '69', '100', '0'), (8993, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '750', '590', '1340', '3', '107', 'JNTU', 'Electronics and Communication', '74', '100', '18'), (8994, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '3.5', 'None', 'Guru Gobind Singh Indraprashta University', 'ECE', '76.59', '100', '0'), (8995, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (8996, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '166', '334', '5', '116', 'IIT BHU', '0', '8.4', '10', '0'), (8997, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '4', '100', 'DTU', 'IT', '71', '100', '0'), (8998, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '152', '317', '4', '99', 'CEG', 'Information Technology', '9.1', '10', '0'), (8999, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '550', '1350', '5', '111', 'Osmania University', 'Mechanical Engineering', '83', '100', '0'), (9000, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '690', '1490', '4.5', '113', 'TCET MU', 'Computer Engineering', '69', '100', '0'), (9001, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '770', '570', '1340', '4', '113', 'Cochin University of Science and Technology', 'Computer Science & Engineering', '68', '100', '0'), (9002, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '580', '1380', '3.5', '106', 'PICT', 'Computer Engg', '3.56', '4', '0'), (9003, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '170', '157', '327', '4.5', '114', 'Jamia Millia Islamia', 'Electronics and Communication', '8.89', '10', '3'), (9004, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '4', '110', 'D J Sanghvi', 'Computer Engg', '69', '100', '21'), (9005, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '157', '320', '4.5', '117', 'Shiv Nadar University', 'Computer Science', '9.15', '10', '0'), (9006, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '107', 'VTU', 'Telecommunication', '77', '100', '0'), (9007, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (9008, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '510', '1250', '3.5', '100', 'PSG College of Technology', 'Computer Science and Engineering', '8.94', '10', '0'), (9009, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '161', '329', '4', '110', 'BITS Pilani', 'El', '8.7', '10', '0'), (9010, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '108', 'MU', 'Computer Engineering', '69.47', '100', '12'), (9011, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '169', '162', '331', '4', '113', 'Visvesvaraya NIT Nagpur', 'Mechanical Engineeing', '7.94', '10', '0'), (9012, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '160', '148', '308', '3.5', '99', 'BIT Mesra', 'Electronics and Communication', '80.8', '100', '0'), (9013, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '3', '108', 'FRCRCE-Mumbai University', 'Information Technology', '67.2', '100', '0'), (9014, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '156', '319', '3.5', '104', 'MU', 'Computers', '67.72', '100', '0'), (9015, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '152', '320', '3.5', '106', 'Maharashtra Institute of Technology', 'electronics and telecommunication', '70', '100', '0'), (9016, '14', 'Reject', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (9017, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'University school of chemical technology GGS Indraprastha University Delhi', '0', '79', '100', '0'), (9018, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '158', '326', '4', '107', 'Veermata Jijabai Technological Institute', 'Electronics Engineering', '8.7', '10', '14'), (9019, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '148', '311', '4.5', '111', 'GITAM', 'CSE', '9.25', '10', '0'), (9020, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '159', '323', '5', '116', 'Amrita School of Engineering', 'Computer Science and Engineering', '8.6', '10', '0'), (9021, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '157', '319', '4', '115', 'BMSCE', 'CS', '9.3', '10', '24'), (9022, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '166', '156', '322', '4', '106', 'Thapar University', 'Computer Science', '7.1', '10', '24'), (9023, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4', '114', 'CoE Trivandrum', 'Computer Science', '7.64', '10', '0'), (9024, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2006', '7990', '650', '8640', '5', '297', 'MVSR', 'Mechanical Engg', '79.6', '100', '0'), (9025, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '156', '318', '3.5', '110', 'UPTU', 'Electronics', '64.74', '100', '42'), (9027, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '156', '317', '3.5', '105', 'Vishwakarma Institute of Technology', 'Computer Engineering', '75', '100', '0'), (9028, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '143', '300', '3.5', '91', 'MU', 'Computer', '60.89', '100', '0'), (9029, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '152', '322', '3.5', '98', 'Guru Gobind Singh Indraprashta University', 'TOOL ENGINEERING', '79.47', '100', '18'), (9030, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '169', '161', '330', '4.5', '112', 'B M S College of Engineering', 'Mechanical', '9.14', '10', '0'), (9031, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '3.5', '107', 'BITS Pilani', 'Information Systems', '8.53', '10', '0'), (9032, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (9033, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '108', 'Delhi College Of Engineeing', 'Department of Computer Science', '71.4', '100', '0'), (9035, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '170', '155', '325', '4', '101', 'NIT Goa', 'CSE', '8.1', '10', '14'), (9036, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2015', '166', '161', '327', '3.5', 'None', 'CoE Trivandrum', 'ELECTRONICS AND COMMUNICATION', '6.95', '10', '0'), (9037, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '420', '1200', '3.5', '105', 'SRM', 'Computer Science and Engineering', '9.28', '10', '0'), (9038, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', '3', '103', 'Punjab Engineering College', 'Computer Science', '9.25', '10', '0'), (9039, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '3.5', '106', 'BIT Mesra', 'Information Technology', '7.34', '10', '0'), (9040, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '154', '150', '304', '4', '97', 'CEG', 'Media Sciences', '8.235', '10', '0'), (9041, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '164', '327', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Electronics and Communication engineering', '81.94', '100', '0'), (9042, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2014', '168', '154', '322', '3.5', '105', 'PSG College of Technology', 'Electrical and Electronics Engineering', '9.23', '10', '0'), (9043, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '111', 'K J Somaiya College of Engiineering', 'Computer Engineering', '75.12', '100', '0'), (9044, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '530', '1270', '3', '105', 'Pune University', 'IT', '68', '100', '0'), (9045, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3.5', '107', 'VJTI', 'IT', '7.8', '10', '0'), (9046, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '3', '102', 'thakur mumbai university', 'computer engg', '62.6', '100', '0'), (9047, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '167', '335', '4', '105', 'VNIT Nagpur', 'ECE', '7.13', '10', '0'), (9048, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '104', 'VNIT Nagpur', 'Electrical and Electronics Engg.', '8.52', '10', '0'), (9049, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (9050, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '157', '327', '4', 'None', 'LNMIIT', 'COMPUTER SCIENCE', '8.2', '10', '0'), (9051, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '151', '314', '3', '94', 'Amravati University', 'Mechanical Engineering', '72.35', '100', '0'), (9052, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2013', '160', '152', '312', 'None', '100', 'Jaypee Institute of Information Technology', 'ECE', '6.8', '10', '0'), (9053, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '156', '326', '3', 'None', 'Thapar University', 'Mechanical', '7.65', '10', '23'), (9054, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '610', '1410', 'None', '108', 'MU', 'Electronics Engineering', '63', '100', '0'), (9055, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '154', '167', '321', '3', '108', 'Veermata Jijabai Technological Institute', 'Information Technology', '8.6', '10', '0'), (9056, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2013', '160', '151', '311', '4', '109', 'R.D. National College', 'IT', '70', '100', '0'), (9057, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '4', '111', 'Maharaja Surajmal Institute of Technology', 'Computer Science', '0', '0', '30'), (9058, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '157', '322', '3', '104', 'NIT Calicut', 'Production Engineering', '8.5', '10', '0'), (9059, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '153', '316', '3', '112', 'VIT', 'electronics', '8.86', '10', '0'), (9060, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '163', '330', '4', 'None', 'NITK Surathkal', 'Mechanical Engineering', '8.92', '10', '29'), (9061, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '164', '327', '4.5', '106', 'Nationl Institute of Technology Jamshedpur', 'Electronics and Communication Engineering', '9.42', '10', '0'), (9062, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '660', '1460', '4', '107', 'Nagpur University', 'Electronics Engineering', '69', '100', '0'), (9063, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '4', '112', 'IIITD', 'Computer Science', '8.67', '10', '0'), (9064, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '780', '690', '1470', 'None', 'None', 'SSN College of Engineering', 'ECE', '83', '100', '0'), (9065, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '620', '1400', '4', '110', 'NIT Durgapur', 'Computer Science and Engineering', '8.29', '10', '0'), (9066, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (9067, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '151', '314', '4', '98', 'University of Mumbai', 'Electronics & Telecommunication', '75.56', '100', '0'), (9068, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '560', '1300', '3', '100', 'YCCE', 'Electronics', '74', '100', '0'), (9069, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '107', 'K J Somaiya College of Engiineering', 'Computer Engineering', '68.6', '100', '0'), (9070, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '109', 'NIT Calicut', 'ECE', '8.1', '10', '0'), (9071, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '163', '147', '310', '3.5', '106', 'SJCE', 'Electronics and Communication', '9.01', '10', '0'), (9072, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '106', 'IIIT Jabalpur', 'Computer Science', '8.4', '10', '0'), (9073, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '4', '105', 'CSVTU', 'Electronics and Telecommunications', '71.1', '100', '18'), (9074, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (9075, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '145', '310', '3', '100', 'IIT', 'Information Technology', '8.28', '10', '48'), (9076, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '770', '680', '1450', '3', '99', 'BMSCE', 'EC', '85', '100', '0'), (9077, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '169', '153', '322', '4', '115', 'IIT Kharagpur', 'ECE', '9.28', '10', '0'), (9078, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '148', '313', '2.5', '97', 'NIT Allahabad', 'Mechanical Engineering', '7.26', '10', '0'), (9079, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (9080, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '4', '104', 'VTU', 'Computer Science', '81.3', '100', '0'), (9081, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (9082, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '610', '1350', '3.5', '92', 'MU', 'Computers', '70.58', '100', '0'), (9083, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall', 'None', '800', '440', '1240', '3', '97', 'MU', 'mech', '71', '100', '0'), (9084, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '152', '320', '3.5', '103', 'KIIT', 'Computer Science', '9', '10', '0'), (9085, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '3', '104', 'MU', 'Electronics and telecommunication', '78', '100', '0'), (9086, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '151', '312', '3', 'None', 'University of Pune', 'Computer Engg..', '60', '100', '0'), (9087, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '148', '318', '3', '112', 'NIT Delhi', 'CSE', '8.23', '10', '0'), (9089, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '550', '1350', '3.5', '107', 'Jaypee Institute of Information Technology', 'ECE', '7.6', '10', '0'), (9090, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (9091, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '106', 'Jaypee Institute of Information Technology', 'Computer Science and Engineering', '7.5', '10', '0'), (9092, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '570', '1360', '4', '110', 'PESIT', 'Telecommunications', '8.33', '10', '0'), (9093, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '520', '1320', '4.5', '112', 'VTU', 'ECE', '75', '100', '0'), (9094, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '111', 'MU', 'Electronics & Telecommunication', '72.34', '100', '0'), (9095, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '4.5', '112', 'University of Kerala', 'Electronics and Communication Engineering', '84', '100', '0'), (9096, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '165', '162', '327', '3', '109', 'NIT Silchar', '0', '6.96', '10', '54'), (9097, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '160', '326', '4', '108', 'Bhilai Institute of Technology', 'Computer Science', '7.81', '10', '0'), (9098, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '167', '328', '3.5', '109', 'RNSIT', '0', '78.23', '100', '0'), (9099, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '108', 'IIT Roorkee', 'Industrail Eng', '7.1', '100', '0'), (9100, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '149', '308', '3.5', '100', 'VIT Pune', 'I. T', '8.5', '10', '0'), (9101, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'NIT Kurukshetra', 'Electronics and Communication', '8.847', '10', '12'), (9102, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '151', '317', '3.5', '95', 'VJTI', 'CS', '7.6', '10', '0'), (9103, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (9104, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '163', '153', '316', '3.5', '114', 'Jabalpur Engg College', 'EE', '8.21', '10', '0'), (9105, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '154', '323', '4', '115', 'None', '0', '0', '0', '0'), (9106, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2011', '760', '440', '1200', '3.5', '110', 'Pune University', 'Computer Science', '70.66', '100', '0'), (9107, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '160', '146', '306', '3.5', '107', 'Sir MVIT', 'TELECOMMUNICATION', '82.54', '100', '0'), (9108, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '157', '323', '3.5', '115', 'PESIT', 'Electronics and Communication', '9.03', '10', '0'), (9109, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '660', '1460', '3.5', '104', 'None', '0', '7.22', '10', '0'), (9110, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '660', '1380', '4', '107', 'Anna University', 'Information Technology', '7.5', '10', '0'), (9111, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '155', '318', '3', '109', 'VIT University', 'Mechanical Engineering', '8.64', '10', '0'), (9112, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (9113, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '165', '333', '4.5', 'None', 'Delhi College Of Engineeing', 'ECE', '78.48', '100', '0'), (9114, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '102', 'PSG College of Technology', 'IT', '9.36', '10', '0'), (9115, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '690', '1490', '3.5', '113', 'NIT-Trichy', 'EEE', '8.61', '10', '0'), (9116, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '160', '323', '4', '117', 'Thadomal Shahani Engineering College', 'Computer Engineering', '64.96', '100', '0'), (9117, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '158', '153', '311', '3', '97', "St Joseph's College of Engineering", 'Mechanical engineering', '74', '100', '0'), (9118, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '162', '152', '314', '4', '105', 'L D College Of Engineering', 'Civil Engineering', '7.9', '10', '0'), (9119, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '3.5', '110', 'University of Mumbai', 'Computer Engineering Department', '61', '100', '0'), (9120, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '158', '318', '4.5', '116', 'Amrita School of Engineering', 'ECE', '7.73', '10', '0'), (9121, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4.5', '114', 'MU', 'IT', '76.5', '100', '0'), (9122, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '161', '331', '4.5', '115', 'BITS Pilani', 'Electrical and Electronics', '8.04', '10', '0'), (9123, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'None', 'Computer Science', '9.06', '10', '0'), (9124, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3.5', '113', 'NIT Calicut', 'ECE', '7.27', '10', '24'), (9125, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3.5', '110', 'NIT Hamirpur', 'Computer Science and Engineering', '8.64', '10', '0'), (9126, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '170', '151', '321', '4', '106', 'IIT Kharagpur', 'Mechanical Engineering B.Tech and M.Tech dual degree (5 yr)', '8.84', '10', '0'), (9127, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '150', '313', '4', 'None', 'DA-IICT', 'Information and Communication Technology', '9.26', '10', '15'), (9128, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '162', '330', '3', '111', 'BIT Mesra', 'Electronics and Communication', '7.72', '10', '0'), (9129, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '109', 'VTU', 'Mechanical Engineering', '81', '100', '0'), (9130, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '161', '154', '315', '3', '103', 'PESIT', 'Telecommunicaiton', '7.95', '10', '0'), (9131, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '163', '156', '319', '4', '115', 'BITS Pilani', 'Chemical Engineering', '8.4', '10', '0'), (9132, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2015', '161', '154', '315', '3.5', '111', 'SASTRA', 'CSE', '8.75', '10', '0'), (9133, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '550', '1350', '3', '107', 'University of Mumbai', 'ELECTRONICS AND TELECOMMUNICATIONS', '67', '100', '0'), (9134, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '157', '324', '3.5', '116', 'Amrita Vishwa Vidhyapeetham', 'ECE', '7.55', '10', '0'), (9135, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '161', '325', '5', '111', 'Sir MVIT', 'Information Science and Engineering', '74.34', '100', '24'), (9136, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '110', 'Thadomal Shahani Engineering College', 'Computers', '75.2', '100', '0'), (9138, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '3.5', '109', 'Pune University', 'Computer Engineering', '77', '100', '24'), (9139, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '159', '329', '4.5', '113', 'MSRIT', 'EC', '9.1', '10', '0'), (9140, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '4.5', '117', 'Don Bosco Institute of Technology', 'Computer Science', '75.5', '100', '14'), (9141, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '3', '105', 'Uttarakhand Technical University', 'Computer Science and Engineering', '72', '100', '0'), (9142, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '165', '157', '322', '3.5', '110', 'None', 'Civil Engineering', '8.19', '10', '0'), (9143, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '160', '157', '317', '3.5', '113', 'Amrita School of Engineering', 'EEE', '8.64', '10', '0'), (9144, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '540', '1340', '4', '112', 'RNSIT', 'Electronics and Communication', '75', '100', '0'), (9145, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '580', '1300', 'None', 'None', 'IIT Guwahati', 'CSE', '6.55', '10', '0'), (9146, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '112', 'MDU', 'Computer Science', '75', '100', '41'), (9147, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9149, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '680', '1450', '3.5', '101', 'Anna University', 'Production Engg', '8.6', '10', '0'), (9150, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (9151, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '460', '1260', '3.5', '99', 'Mahatma Gandhi University Kerala', 'Electronics & Communication', '79.5', '100', '0'), (9152, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '760', '580', '1340', '3.5', '105', 'RMK Engineering College', 'B.E Computer Science', '74', '100', '0'), (9153, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '162', '328', '3', '102', 'BITS Pilani', 'Electronics & Communication', '9.73', '10', '0'), (9154, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2008', '800', '560', '1360', '5.5', '117', 'University of Calicut', 'Electronics and Communication Engg', '79', '100', '0'), (9155, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '4', '110', 'Pune University', 'Computer Science', '65', '100', '0'), (9156, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '800', '460', '1260', '4', '109', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '71.33', '100', '0'), (9157, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '157', '327', '3.5', '109', 'IIT Roorkee', 'Mechanical Engineering', '8.06', '10', '0'), (9158, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '660', '1460', '3.5', '117', 'Madras Institute of Technology', 'Aerospace engineering', '9.46', '10', '0'), (9159, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '165', '332', '4', '107', 'NIT Calicut', 'Electrical and Electronics Engineering', '7.54', '10', '0'), (9160, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '163', '324', '4', '116', 'D J Sanghvi', 'Computers', '75.8', '100', '24'), (9161, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '163', '154', '317', '4', '100', 'BITS Hyderabad', 'Mechanical Engineering', '9.35', '10', '0'), (9162, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '170', '153', '323', '3.5', '107', 'Jadavpur University', 'Electrical Engineering', '8.56', '10', '0'), (9163, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '156', '321', '3', '106', 'NSIT', 'Computer Engineering', '78.88', '100', '32'), (9165, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '600', '1400', '4', '105', 'VIT', 'EEE', '9.28', '10', '0'), (9166, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '170', '142', '312', '3', '92', 'NIT Surat', 'Mechanical engineering', '7.32', '10', '0'), (9167, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '161', '151', '312', '3.5', '104', 'Pune University', 'Computer Engineering', '57.5', '100', '0'), (9168, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '162', '332', '3', '107', 'IIT Mandi', 'Computer Science', '6.74', '10', '16'), (9170, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '114', 'R V College of Engineering', 'electrical and Electronics', '8.76', '10', '0'), (9171, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '760', '580', '1340', '4', '111', 'CEG', 'ECE', '8.47', '10', '0'), (9172, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '107', 'BITS Pilani', 'CS', '8.5', '10', '44'), (9173, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '490', '1240', '4', '114', 'Amrita School of Engineering', 'Electronics and Instrumentation Engineering', '8.2', '10', '0'), (9174, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '110', 'SRM', 'Mechatronics', '8.57', '10', '0'), (9175, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '164', '153', '317', '4', '112', 'SSN College of Engineering', 'ECE', '8.72', '10', '0'), (9176, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '750', '550', '1300', '3', '89', 'Coimbatore Insitute of Technology', 'Mechanical', '8.34', '10', '0'), (9177, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '640', '1440', '5', '114', 'COEP', 'Production Engineering', '7.88', '10', '0'), (9178, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '114', 'BITS Pilani', 'Computer Science and Information systems', '7.23', '10', '0'), (9179, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'KIIT', 'Electrical engineering', '7.64', '10', '0'), (9180, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '151', '315', '4', '110', 'SJCE', 'Industrial and Production Engineering', '9.34', '10', '0'), (9181, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '630', '1430', '4.5', '114', 'VTU', 'ECE', '84.8', '100', '0'), (9182, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '169', '152', '321', '4', '109', 'MU', 'Information Technology', '62.47', '100', '28'), (9183, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '107', 'Sardar Patel College of Engineering', 'Computer', '76', '100', '0'), (9184, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '167', '160', '327', '4', '115', 'BITS Goa', 'Physics + Electronics and Electrical', '8.05', '10', '3'), (9185, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2014', '161', '156', '317', '4', '108', 'VTU', 'Biotechnology', '84', '100', '0'), (9186, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '800', '590', '1390', '3', '109', 'Biju Patnaik University of Technology', 'Electronics and Instrumentation', '8.85', '10', '0'), (9187, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '720', '1520', '5', '280', 'PESIT', 'Electronics and Communication', '86', '100', '0'), (9188, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '380', '1160', '3.5', '101', 'SSN College of Engineering', 'Electronics and communication engineering', '78', '100', '0'), (9189, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '4', '111', 'SSN College of Engineering', 'B.E. Mechanical Engineering', '79', '100', '30'), (9190, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '166', '163', '329', '4', '117', 'Medicaps Institute of Science & Technology Indore', 'ECE', '80.4', '100', '24'), (9191, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '660', '1460', '3.5', '112', 'VTU', 'ECE', '0', '0', '0'), (9192, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '113', 'NIT Calicut', 'Mechanical Engineering', '6.67', '10', '0'), (9193, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '700', '1500', '4', '112', 'University of Pune', 'Electronics & Telecommunications', '61', '100', '0'), (9194, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '156', '318', '4', '112', 'VTU', 'Instrumentation Technology', '9.57', '10', '0'), (9195, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '164', '150', '314', '3', '100', 'Dharamsinh Desai University', 'Computer Engineering', '7.87', '10', '0'), (9196, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '115', 'BITS Pilani', 'Computer Science', '8.13', '10', '0'), (9198, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '161', '158', '319', '5', '112', 'VJTI', 'Electronics', '82', '100', '0'), (9199, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '160', '324', '4.5', '113', 'SSN College of Engineering', 'ECE', '8.8', '10', '0'), (9200, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '149', '310', '3.5', '102', 'Manipal Institue of Technology', 'Computer Science', '8.96', '10', '0'), (9201, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '157', '323', '4', '119', 'BITS Goa', 'Computer Science', '8.48', '10', '0'), (9202, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '155', '314', '3.5', '111', 'GGSIPU', 'IT', '72', '100', '0'), (9203, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '530', '1280', '4.5', '110', 'VTU', 'Computer Science', '82', '100', '0'), (9204, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '107', 'GECA', 'Information Technology', '7.3', '10', '0'), (9205, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '155', '324', '4', '111', 'Delhi College Of Engineeing', 'Production and Industrial Engineering', '69', '100', '0'), (9206, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '4', '116', 'NIT Calicut', 'ECE', '8.15', '10', '0'), (9207, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '790', '760', '1550', '4', '116', 'University College of Engineering Osmania University', 'ECE', '3.2', '4', '0'), (9208, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2012', '170', '156', '326', '5', 'None', 'Jadavpur University', 'Instrumentation and Electronics Engineering', '8.948', '10', '0'), (9209, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '670', '1470', '4', '116', 'MU', 'Electronics', '66.7', '100', '0'), (9210, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4.5', '113', 'JNTU', 'Computer Science and Information Technology', '77', '100', '0'), (9211, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '550', '1350', '4', '107', 'IIIT Hyderabad', 'ECE', '9.12', '10', '0'), (9212, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '105', 'IIT Kharagpur', 'Aerospace', '8.66', '10', '0'), (9213, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '720', '610', '1330', '3.5', '107', 'MSRIT', 'ELEC & COMM', '8.74', '10', '0'), (9214, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '109', 'Anna University', 'Mech', '7.41', '10', '0'), (9215, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '560', '1340', '4', '112', 'B M S College of Engineering', 'Telecommunication', '9.1', '10', '0'), (9217, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '155', '319', '4.5', '115', 'VJTI', 'PRODUCTION', '8.3', '10', '0'), (9218, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '710', '1470', '3.5', '100', 'Pune University', 'I.T', '61.3', '100', '0'), (9219, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '760', '600', '1360', '4', '112', 'SIT', 'Mech', '71', '100', '0'), (9220, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '152', '316', '3.5', '104', 'Sir MVIT', 'E&CE;', '8.305', '10', '0'), (9221, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '510', '1260', '4', '108', 'Amrita Vishwa Vidhyapeetham', 'Computer Science and Engineering', '8.36', '10', '0'), (9222, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '560', '1340', '3', '89', 'Jadavpur University', 'Chemical Engineering', '74', '100', '0'), (9223, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2014', '165', '161', '326', '3.5', '113', 'VTU', 'Chemical Engineering', '7.59', '10', '0'), (9224, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '590', '1340', '4', '109', 'SVCE', 'CS', '8.2', '10', '0'), (9225, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '109', 'NIT Calicut', 'CSE', '9.25', '10', '0'), (9226, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '156', '324', '3.5', '113', 'NITK Surathkal', 'ECE', '8.3', '10', '0'), (9227, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '154', '318', '4', '111', 'Gujarat Technological University', 'ECE', '76.82', '100', '0'), (9228, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '750', '460', '1210', '3.5', '113', 'Manipal Institue of Technology', 'E&C;', '8.7', '10', '0'), (9229, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '154', '320', '3.5', '111', 'University of Mumbai', 'Electrical Engineering', '70.6', '100', '0'), (9230, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3.5', '109', 'MU', 'Electronics', '73', '100', '0'), (9231, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4', '99', 'Sardar Patel College of Engineering', 'Electronics', '69', '100', '0'), (9233, '14', 'Reject', 'MS', 'Systems and Control', 'Fall ', '2014', '165', 'None', '165', '3.5', '104', 'NIT Surat', 'Electrical Engineering', '8.18', '10', '0'), (9234, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '800', '600', '1400', '4', '103', 'MU', 'Information Technology', '72', '100', '0'), (9235, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2009', '780', '680', '1460', '4', '110', 'U.P. Technical University', 'CS', '67', '100', '0'), (9236, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '168', '149', '317', '4', '107', 'University of Pune', 'Electronics and Tele-Communication', '63.445', '100', '0'), (9237, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '169', '159', '328', '3', '113', 'MSRIT', 'E & C', '9.23', '10', '0'), (9238, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '4', '112', 'None', '0', '8.36', '10', '0'), (9239, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '530', '1300', '3', '106', 'MU', 'CS', '72.48', '100', '0'), (9240, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '152', '319', '4', '104', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '76.56', '100', '0'), (9241, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '580', '1360', '4', '110', 'COEP', 'Computer and Information Tehnology', '8.39', '10', '0'), (9242, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '111', 'IIT Roorkee', 'Metallurgical and Materials Engineering', '9.112', '10', '0'), (9243, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2010', '800', '570', '1370', '3.5', '116', 'NITK Surathkal', 'ECE', '8.56', '10', '0'), (9245, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '710', '1510', '4.5', '111', 'NIT Tirchy', 'Mechanical Engg', '8.59', '10', '0'), (9246, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '167', '148', '315', '4', '106', 'Veermata Jijabai Technological Institute', 'Electronics and Telecommuniaction', '8.1', '10', '0'), (9247, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '630', '1410', '3', '112', 'University of Mumbai', 'Computer Engg', '70', '100', '0'), (9248, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '169', '153', '322', '4.5', '114', 'MDU', 'Applied Electronics and Instrumentation', '74.32', '100', '0'), (9249, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '800', '800', '1600', '4', '110', 'Thapar University', 'Mechanical Engineering', '9.35', '10', '0'), (9250, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '159', '166', '325', '4.5', '110', 'Anna University', 'EEE', '7.5', '10', '0'), (9251, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '160', '321', '4', '110', 'NIT Delhi', 'EEE', '8.38', '10', '0'), (9253, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '640', '1400', '4', '112', 'NIT Calicut', 'ECE', '7.84', '10', '0'), (9254, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (9255, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '156', '320', '4', '110', 'MITCOE University of Pune', 'IT', '56.57', '100', '0'), (9256, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '167', '153', '320', '4.5', '113', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT (Information and Communication Technology)', '6.4', '10', '23'), (9257, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '400', '1200', '4', '105', 'CEG', '0', '9.2', '10', '0'), (9258, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '159', '157', '316', '4', '111', 'NITK Surathkal', 'Computer Engineering', '7.7', '10', '0'), (9259, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (9260, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Spring ', '2015', '160', '147', '307', '3', '92', 'MU', 'Mechanical Engineering', '60', '100', '0'), (9261, '14', 'Reject', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (9262, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3', '112', 'Manipal Institue of Technology', 'Computer Science', '8.01', '10', '0'), (9263, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2014', '318', '157', '475', '4.5', '113', 'The LNM Institute of Information Technology', 'Electronics and Communication', '8.75', '10', '0'), (9264, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '104', 'K J Somaiya College of Engiineering', 'MECH', '72.14', '100', '0'), (9265, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '155', '323', '4', '116', 'MU', 'Information Technology', '79.37', '100', '36'), (9266, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '108', 'VTU', 'Electronics', '8.84', '10', '0'), (9267, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '326', '156', '482', '4', '113', 'VTU', 'CSE', '82.64', '100', '12'), (9268, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '166', '155', '321', '3', '107', 'NIT- Surat', 'Civil Engineering', '9.38', '10', '0'), (9269, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '800', '640', '1440', '4', '104', 'None', '0', '8.83', '10', '0'), (9270, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '162', '329', '3.5', '113', 'COEP', 'Computer Engineering', '7.06', '10', '0'), (9271, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '570', '1340', '4', '108', 'MU', 'Comp Engg', '62', '100', '0'), (9272, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '115', 'BITS Goa', 'Chemical Engineering', '7.34', '10', '0'), (9273, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '151', '316', '4', '103', 'J.N.T. University Hyderabad', 'Electronics and Communication Engineering', '81.85', '100', '0'), (9274, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '156', '317', '5', '115', 'PESIT', 'Information Science and Engineering', '8.5', '10', '0'), (9275, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2014', '162', '153', '315', '3.5', '97', 'VTU', 'Electronics and Communications', '83', '100', '0'), (9276, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '162', '148', '310', '3', '104', 'VESIT', 'CompEngg', '66', '100', '15'), (9277, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '155', '325', '3.5', '111', 'MU', 'Information Technology', '64', '100', '17'), (9278, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '168', '336', '5', '118', 'Madras Institute of Technology', 'Computer Science', '8.65', '10', '24'), (9279, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3', '104', 'K J Somaiya College of Engiineering', 'Computer', '69', '100', '0'), (9280, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '600', '1340', '4', '115', 'MU', 'Computer Science', '57', '100', '0'), (9281, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9282, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4', '115', 'None', '0', '8.74', '10', '0'), (9283, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', 'None', 'None', '0', 'None', '100', 'Pune University', 'Mechanical Engineering', '72.4', '100', '0'), (9284, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', '4', '112', 'VTU', 'Information Science and Engineering', '77', '100', '0'), (9285, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '153', '319', '4', '103', 'IIT Kanpur', 'M.Tech in Laser Technology', '10', '10', '0'), (9287, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '151', '316', '4', '109', 'Rajiv Gandhi Institute Of Technology', 'Computers', '65', '100', '0'), (9288, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '4', '111', 'MU', 'Computer Engineering', '67', '100', '0'), (9289, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '161', '154', '315', '4', '108', 'VIT', 'ECE', '8.78', '10', '0'), (9290, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '161', '145', '306', '3', '104', 'Anna University', 'Mechanical Engineering', '8.41', '10', '0'), (9291, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '154', '318', '3.5', '109', 'MU', 'Information Technology', '69.82', '100', '30'), (9292, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3', '101', 'Nirma Institute of Technology', 'Computer engineering', '8.68', '10', '0'), (9293, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '3', '112', 'Rajasthan Technical University', 'Computer Science', '67.15', '100', '0'), (9294, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '149', '315', '3.5', '100', 'Nirma Institute of Technology', 'Information Technology', '7.63', '10', '30'), (9295, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '158', '323', '3.5', 'None', 'MU', 'computer', '68', '100', '4'), (9296, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '161', '149', '310', '3', '104', 'Malaviya NIT Jaipur', 'Electronics and Communication', '8.63', '10', '0'), (9297, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '470', '790', '1260', '3.5', '112', 'Madras Institute of Technology', 'Electronics and Communication engineering', '8', '10', '0'), (9299, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '162', '162', '324', '3', '109', 'VTU', 'Civil Engineering', '8.12', '10', '12'), (9300, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '800', '530', '1330', '3', '99', 'NMIMS', 'Electronics & Telecommunication', '2.73', '4', '0'), (9301, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (9302, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '158', '323', '4.5', '115', 'SRM', 'Electrical & electronics engineering', '8.881', '10', '0'), (9303, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '162', '323', '4', '114', 'VTU', 'CSE', '9.23', '10', '0'), (9304, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '680', '1480', '3.5', '109', 'Osmania University', 'CSE', '86.2', '100', '0'), (9305, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '165', '161', '326', '3', '105', 'VTU', 'ECE', '87', '100', '0'), (9306, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '151', '316', '3', '103', 'NIT Allahabad', 'Computer Science and Engineering', '8.7', '10', '36'), (9307, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '800', '710', '1510', '4', '116', 'D J Sanghvi', 'Electronics', '58.5', '100', '16'), (9308, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '163', '164', '327', '4', '115', 'Anna University', 'Aeronautical Engg.', '8.73', '10', '0'), (9309, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '670', '1450', '3.5', '108', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9310, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '166', '333', '4.5', '118', 'None', 'Computer Science', '7.84', '10', '0'), (9311, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '168', '165', '333', '4', '117', 'PESIT', 'ECE', '9.7', '10', '0'), (9312, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '157', '326', '3.5', '110', 'TU', 'Computer Science', '9.9', '10', '0'), (9313, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', '95', 'KIIT', 'ELECTRICAL ENGINEERING', '7.74', '10', '0'), (9314, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (9315, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '104', 'MU', 'Electronics & Telecommunication', '71', '100', '0'), (9316, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '162', '321', '3.5', '107', 'NIT Kurukshetra', 'Civil Engineering', '8.84', '10', '24'), (9317, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '160', '150', '310', '4', '105', 'Sri Jayachamarajendra College of Engineering', 'ECE', '9.06', '10', '0'), (9318, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '170', '153', '323', '3.5', '105', 'NIT Tirchy', 'Production Engg', '7.77', '10', '34'), (9320, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '740', '550', '1290', '4', '107', 'University of New Orleans', 'Electrical Engineering', '3.74', '4', '0'), (9321, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '770', '580', '1350', '3', '107', 'PSG College of Technology', 'Production Engineering', '9.32', '10', '0'), (9322, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '169', '336', '4.5', '117', 'BITS Pilani', 'Manufacturing Engineering', '7.97', '10', '12'), (9323, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2015', '168', '160', '328', 'None', 'None', 'Anna University', 'Electrical and Electronics', '81', '100', '18'), (9324, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '155', '317', '4', '113', 'Anna University', 'EEE', '9', '10', '0'), (9325, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (9326, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '650', '1450', '3.5', '116', 'D J Sanghvi', 'Comps', '67', '100', '0'), (9327, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '4', '105', 'GGSIPU', 'CSE', '69', '100', '0'), (9328, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '170', '154', '324', '4', '114', 'Manipal Institue of Technology', 'Electronics and Communication', '9.53', '10', '0'), (9329, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '430', '1170', '3.5', '100', 'Amrita School of Engineering', 'eee', '6.3', '10', '0'), (9330, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2015', '165', '153', '318', '3', '98', 'D J Sanghvi', 'Electronics', '70', '100', '0'), (9331, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (9332, '14', 'Reject', 'MS', 'Chemistry', 'Fall ', '2013', '800', '520', '1320', '3', '96', 'Institute of Chemical Technology', 'Dept. of Dyestuff Technology', '7', '10', '0'), (9333, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '112', 'GGSIPU', 'ECE', '66', '100', '0'), (9334, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '600', '1350', '4', '106', 'Anna University', 'ECE', '84', '100', '0'), (9335, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '600', '1380', '4', '102', 'VJCET (MG University)', 'CSE', '80.34', '100', '0'), (9336, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '3', '103', 'IIT Jabalpur', 'CS', '7.35', '10', '0'), (9337, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (9338, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '162', '159', '321', '3.5', '108', 'PSG College of Technology', 'Electrical and electronics engineering', '9.4', '10', '0'), (9339, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '520', '1320', '4.5', '105', 'VTU', 'E&C;', '80.44', '100', '0'), (9340, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3.5', '105', 'BVCOE', 'IT', '75', '100', '0'), (9341, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '168', '153', '321', '4', '116', 'University of Mumbai', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9342, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '580', '1380', '3.5', '102', 'C.I.T.M M.D.U Rohtak', 'Mechanical Engineering', '70', '100', '0'), (9343, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '161', '320', '3', '106', 'Anna University', 'Information Technology', '74', '100', '0'), (9344, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '450', '1220', '4', '103', 'VTU', 'Computer Sciece', '73.5', '100', '0'), (9345, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2014', '170', '150', '320', '3.5', '103', 'IIT Bhubaneswar', 'Electrical Engineering', '9.47', '10', '0'), (9346, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', '97', 'VTU', 'Computer Science', '80.5', '100', '0'), (9347, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '155', '151', '306', '4', '115', 'Amrita School of Engineering', 'ECE', '8.1', '10', '0'), (9348, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '4.5', '116', 'MU', 'Computer Engineering', '72.95', '100', '0'), (9349, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '168', '155', '323', '4.5', '108', 'The LNM Institute of Information Technology', 'Electronics and Communication Engineering', '8.51', '10', '4'), (9350, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '590', '1380', '3', '104', 'Amrita Vishwa Vidhyapeetham', 'ECE', '8.6', '10', '0'), (9351, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '162', '158', '320', '4', '101', 'COEP', 'Electrical', '7.4', '10', '36'), (9352, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '152', '316', '4', '106', 'R V College of Engineering', 'TELECOMMUNICATIONS', '8.75', '10', '0'), (9353, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2014', '166', '154', '320', '4', '112', 'Delhi College Of Engineeing', 'Computers', '70', '100', '0'), (9354, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '164', '332', '4', '110', 'TSEC', 'Electronics and Telecommunication', '64.8', '100', '0'), (9355, '14', 'Reject', 'MS', 'Automotive Engineering', 'Fall ', '2010', '740', '730', '1470', '1470', '112', 'Thapar University', 'Mechanical Engineering', '8.13', '10', '0'), (9356, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2013', '162', '158', '320', '3', '113', 'RAIT', 'Electronics', '61', '100', '0'), (9357, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '163', '331', '4', '118', 'Government Rajiv Gandhi Institute of Technology', 'Mechanical Engineering', '78.4', '100', '81'), (9359, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '161', '157', '318', '4', '109', 'Manipal Institue of Technology', 'Electronics and Communication', '8.78', '10', '0'), (9360, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '640', '1430', '3', '105', 'JNNCE / VTU', 'Computer Science', '78', '100', '0'), (9361, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '170', '160', '330', '4', '112', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '8.6', '10', '0'), (9362, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2015', '164', '155', '319', '4', '110', 'None', 'Biomedical Engineering', '9.04', '10', '0'), (9363, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '166', '331', '4', '113', 'Madras Institute of Technology', 'ECE', '9.1', '10', '0'), (9364, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '110', 'Galgotias College of Engineering and Technology', 'Electronics and Instrumentation', '79.26', '100', '0'), (9365, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '460', '1250', '4', '109', 'MU', 'Computer Science', '73.25', '100', '0'), (9366, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '640', '1400', '3.5', '103', 'GITAM', 'COMPUTER SCIENCE', '9.25', '10', '0'), (9367, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '148', '310', '3.5', '107', 'BITS Dubai', 'Ece', '9.68', '10', '0'), (9368, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2006', '800', '600', '1400', '4', '267', 'Andhra University', 'Chemical Engg', '83.2', '100', '0'), (9369, '14', 'Reject', 'MS', 'Telecommunication', 'Fall ', '2012', '790', '520', '1310', '3.5', '99', 'MU', 'Electronics and Telecommunication', '75.34', '100', '0'), (9370, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '540', '1280', '4', '111', 'MU', 'Computer Engineering', '69', '100', '0'), (9371, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '790', '740', '1530', '4', '112', 'NIT Nagpur', 'Metallurgical and Materials Engineering', '9.39', '10', '0'), (9372, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '157', '321', '3.5', '111', 'CEG', 'Manufacturing', '8.96', '10', '0'), (9373, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '151', '318', '3.5', '95', 'NIT Calicut', 'ECE', '7.88', '10', '24'), (9374, '14', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '163', '155', '318', '3', '112', 'BITS Dubai', 'ECE', '9.45', '10', '0'), (9375, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '160', '150', '310', '3.5', '108', 'NIT Tirchy', 'Instrumentation and Control Engg', '8.3', '10', '0'), (9376, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '157', '322', '3.5', '108', 'MIT', 'instrumentation', '8.7', '10', '0'), (9377, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '590', '1360', '3.5', '111', 'VTU', 'ISE', '74.5', '100', '0'), (9378, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2016', '164', '155', '319', '3.5', '101', 'Dharamsinh Desai University', 'Instrumentation And Control', '9.05', '10', '0'), (9379, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '152', '162', '314', '3', '107', 'Amrita School of Engineering', 'Computer Science', '8.68', '10', '0'), (9380, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '320', '1100', '3', '97', 'Osmania University', 'EEE', '4', '100', '0'), (9381, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '570', '1360', '3.5', '113', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (9382, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '155', '323', '3.5', '110', 'NIT Kurukshetra', 'Computer Science', '9.16', '10', '0'), (9383, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '560', '1340', '3.5', '108', 'NIT', 'ECE', '9.02', '10', '0'), (9384, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Spring ', '2014', '165', '158', '323', '3.5', '100', 'Osmania University', 'electrical and electronics engineering', '72', '100', '0'), (9385, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '155', '318', '4', '104', 'IIIT Jabalpur', 'ECE', '8', '100', '0'), (9386, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '510', '1280', '3', '113', 'Anna University', 'ECE', '76.3', '100', '0'), (9387, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '680', '1450', '3', '100', 'Vidyalankar Institute of Technology', 'Electronics and Telecommunication', '70.04', '100', '0'), (9388, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '164', '334', '4', '112', 'Delhi College Of Engineeing', 'Electronics And Communication', '64.09', '100', '0'), (9389, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '510', '1310', '3.5', '103', 'NIT Warangal', 'Computer science', '7.2', '10', '0'), (9390, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '600', '1380', '3', '97', 'Panjab University', 'Electronics and communication', '72.49', '100', '0'), (9391, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '590', '1370', '3', '97', 'Sri Venkateswara College of Engineering', 'Computer Science', '8.2', '10', '0'), (9392, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '152', '320', '4', '106', 'SASTRA', 'CSE', '9.37', '10', '12'), (9393, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '157', '325', '3', '106', 'PESIT', 'Computer Science', '8.59', '10', '9'), (9394, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '165', '332', 'None', '107', 'JNTU', 'EEE WES GPA : 3.9/4.0', '78', '100', '0'), (9395, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '154', '318', '4', '109', 'IIIT Allahabad', 'Information Technology', '8.54', '10', '0'), (9396, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '530', '1330', '3', '93', 'PICT', 'IT', '3.55', '4', '0'), (9397, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '790', '510', '1300', '4', '114', 'NIT Rourkela', 'Electronics and Communication Department', '9.45', '10', '0'), (9398, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '720', '560', '1280', '5', '108', 'VJTI', 'Electrical Engineering', '7.4', '10', '0'), (9399, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '780', '580', '1360', '4', '106', 'Anna University', 'Electronics and Communication', '74', '100', '0'), (9401, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '164', '331', '4.5', '117', 'R V College of Engineering', 'Electrical and Electronics', '85', '100', '55'), (9402, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '105', 'Anna University', 'C.S.E', '7.613', '10', '0'), (9403, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '165', '157', '322', '4.5', '116', 'Nanyang Technological University', 'EEE', '4.48', '5', '0'), (9404, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '167', '329', '5', '115', 'SRM', 'Computer science', '8.9', '10', '0'), (9405, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '155', '316', '3.5', '108', 'University of Calicut', 'Computer Science', '63', '100', '0'), (9406, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', '0', 'None', '152', '3', '155', '0', '101', 'BITS Pilani', 'EEE', '8', '10', '0'), (9407, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2013', '165', '157', '322', '3', '111', 'P.U.', 'UIET B.E.-Biotechnology', '72.3', '100', '0'), (9408, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2009', '800', '670', '1470', '4', '115', 'NIT Calicut', 'Electrical and Electronics Engg', '8.4', '10', '0'), (9409, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '660', '1430', '4', '112', 'VIT University', 'Computer science engineering', '9.1', '10', '0'), (9410, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '660', '1450', '4.5', '109', 'VIT', 'Computer Science Engineering', '9.33', '10', '0'), (9411, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '110', 'Nirma Institute of Technology', 'Information Technology', '7.87', '10', '0'), (9412, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '720', '1520', '3.5', '108', 'D J Sanghvi', 'Chemical Engineering', '67', '100', '0'), (9413, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '540', '1330', '3', '96', 'Bangladesh University of Engineering & Technology', 'Industrial & Production Engineering', '3.84', '4', '0'), (9414, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.53', '10', '0'), (9415, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '167', '337', '4', '116', 'BITS Pilani', 'Electronics and Communication', '9.47', '10', '0'), (9416, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (9417, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2012', '154', '144', '298', '3', '98', 'Anna University', 'CSE', '75', '100', '0'), (9418, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3.5', '101', 'D j Sanghvi', 'computer engineering', '69', '100', '0'), (9419, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3', '105', 'PESIT', 'Information Science and Engg', '8.8', '10', '0'), (9420, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '153', '313', '3.5', '109', 'None', 'Information Technology', '9.19', '10', '0'), (9421, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Madras Institute of Technology', 'ECE', '8.2', '10', '0'), (9422, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall', 'None', '169', '165', '334', '3.5', '120', 'None', 'Electronics and Comm', '8.19', '10', '0'), (9423, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '107', 'BITS Hyderabad', 'Information Systems', '7.98', '10', '0'), (9424, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '166', '336', '3.5', '114', 'IIT Madras', 'Electrical Engineering', '6.7', '10', '7'), (9425, '14', 'Reject', 'MS', 'software engineering', 'Fall ', '2012', '760', '590', '1350', '3.5', '110', 'VTU', 'Computer Science and Engineering', '80', '100', '0'), (9426, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (9427, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '740', '1540', '4', '112', 'Pune University', 'Instrumentation and Control', '64', '100', '0'), (9428, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2012', '164', '153', '317', '4', '112', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.87', '10', '0'), (9429, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '450', '1250', '3.5', '97', 'NIT Tirchy', 'INSTRUMENTATION & CONTROL ENGG', '7.98', '10', '0'), (9430, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (9431, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '154', '315', '4', '104', 'VTU', 'Computer Science', '76.65', '100', '46'), (9432, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', 'None', 'Pune University', 'Computer Science', '70', '100', '0'), (9433, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '580', '1360', '3', '110', 'K J Somaiya College of Engiineering', 'electronics', '63.45', '100', '0'), (9434, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '560', '1360', '3.5', '110', 'VTU', 'Computer Science', '72', '100', '0'), (9435, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', 'None', '105', 'MSRIT', 'Computer Science', '75', '100', '0'), (9436, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3.5', '110', 'IIT Guwahati', 'Computer Science', '7.1', '10', '0'), (9437, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '5', '112', 'RNSIT', 'Information Science', '75', '100', '0'), (9438, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '600', '1400', '4', '111', 'Jaypee Institute of Information Technology', 'Electronics and Communications', '8.7', '10', '0'), (9439, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '760', '540', '1300', '3.5', 'None', 'NIT Warangal', 'ECE', '7.83', '10', '0'), (9440, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '144', '313', '4', '102', 'Chulalongkorn', 'Mechanical Engineering', '3.34', '4', '0'), (9441, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '690', '1490', '3.5', '110', 'VITS', 'ECE', '82', '100', '0'), (9442, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '660', '1440', '4', '113', 'MU', 'Information Technology', '67', '100', '22'), (9443, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (9444, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '159', '327', '4', '108', 'The Maharaja Sayajirao University', 'Electronics', '3.7', '4', '0'), (9445, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '166', '155', '321', '2.5', '98', 'BITS Goa', 'Mechanical', '8.36', '10', '0'), (9446, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '800', '630', '1430', '3.5', '108', 'Thapar University', 'Chemical Engineering Department', '7.1', '10', '0'), (9447, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '149', '319', '3.5', '101', 'YMCA', 'Mechanical Engineering', '7.734', '10', '0'), (9448, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '157', '324', '4', '105', 'Shah And anchor Kutchhi Engineering College', 'IT', '72.71', '100', '0'), (9449, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '146', '308', '4', '105', 'SSN College of Engineering', 'Information Technology', '82', '100', '0'), (9450, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '4', '113', 'Sri Sairam Engineering College', 'Information technology', '90', '100', '0'), (9451, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '158', '325', '5', '117', 'GGSIPU', 'Computer Science', '82', '100', '41'), (9452, '14', 'Reject', 'MS', 'Electronics Engineering', 'Fall ', '2013', '170', '159', '329', '3', '112', 'MU', 'Electronics', '74', '100', '0'), (9453, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '400', '1200', 'None', '91', 'BITS Goa', 'Computer Science', '7.59', '10', '0'), (9454, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '660', '1440', '4', '117', 'Amrita School of Engineering', 'Electronics and Communication Engineering', '78', '100', '0'), (9455, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '3.5', '113', 'D J Sanghvi', 'computer engineering', '73.5', '100', '0'), (9456, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '157', '324', '4', '116', 'Delhi College Of Engineeing', 'Electrical Engg', '75.4', '100', '0'), (9457, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4.5', '110', 'Gujarat Technological University', 'Electrical and Electronics', '75.6', '100', '0'), (9458, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '590', '1390', '3', '102', 'GITAM', 'Electronics and Communication', '9.02', '10', '0'), (9459, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '103', 'Khon Kaen University', 'Computer Engineering', '3.86', '4', '0'), (9460, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2016', '167', '154', '321', '3.5', '112', 'Motilal Nehru National Institute of Technology', 'Electronics and Communication Engineering', '9.17', '10', '49'), (9461, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '3', 'None', 'IIT Guwahati', 'Mathematics and Computing', '7.56', '10', '0'), (9462, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '154', '321', '4', '113', 'univ of kerala', 'ec', '8.8', '10', '0'), (9463, '14', 'Reject', 'MS', 'Mechanical And Aerospace', 'Fall ', '2014', '163', '160', '323', '4.5', '113', 'University of Pune', 'Mechanical Engineering', '72', '100', '0'), (9464, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '630', '1410', '4.5', '109', 'MU', 'Electronics and Telecommunication', '68.03', '100', '0'), (9465, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '158', '318', '4', '117', 'Pune University', 'Computer Engineering', '3.23', '4', '0'), (9466, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3.5', '108', 'Sikkim Manipal Institute of Technology', 'CSE', '8.38', '10', '0'), (9467, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '159', '323', '4', '116', 'NIT Tirchy', 'CSE', '8.72', '10', '34'), (9468, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '160', '330', '4.5', '115', 'NIT Calicut', 'Computer Science and Engineering', '8.29', '10', '15'), (9469, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2011', '780', '540', '1320', '3', '93', 'NIT Jalandhar', 'Chemical Engineering', '7.3', '10', '0'), (9470, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '580', '1360', 'None', 'None', 'CEG', 'CS', '8', '10', '0'), (9471, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '162', '152', '314', '3.5', '115', 'PSG College of Technology', 'Mechanical', '8.34', '100', '0'), (9472, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '148', '318', '4', '108', 'SJCE', 'Electronics and Communication', '9.63', '10', '32'), (9473, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '166', '159', '325', '3', '107', 'IIT Indore', 'Electrical Engineering', '8.64', '10', '0'), (9474, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '800', '530', '1330', '3.5', '110', 'NITK Surathkal', 'Mechanical Engineering', '8.34', '10', '0'), (9475, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '770', '610', '1380', '4', '105', 'Gujarat Technological University', 'Computer Engg.', '81', '100', '0'), (9476, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '650', '1440', '4.5', '114', 'KIIT', 'ECE', '9.13', '10', '0'), (9477, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '145', '315', '3', '108', 'Thapar University', 'Electronics and Communication', '8.52', '10', '0'), (9478, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '490', '1250', '3', '103', 'WBUT', 'MCA', '8', '10', '0'), (9479, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '153', '315', '3', '109', 'PSG College of Technology', 'IT', '9.09', '10', '19'), (9480, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '160', '156', '316', '4', '112', 'Panjab University', 'Computer Science and Engineering', '72', '100', '28'), (9481, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '168', '157', '325', '3.5', '110', 'VNIT Nagpur', 'ECE', '9.1', '10', '0'), (9482, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', '107', 'Sri Venkateswara College of Engineering', 'Mechanical Engineering', '78', '100', '0'), (9483, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '165', '331', '5.5', '112', 'Manipal Institue of Technology', 'Information Technology', '7.99', '10', '0'), (9484, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '112', 'MU', 'Electronics', '70', '100', '0'), (9485, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '167', '153', '320', '3.5', '110', 'Panjab University', 'Electronics and communication', '8.16', '10', '0'), (9486, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '166', '158', '324', '4.5', '113', 'NIT Calicut', 'Mechanical Engineering', '8.03', '10', '0'), (9487, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '150', '314', '3', '98', 'KLUniversity', 'Computer science and engineering', '8.67', '10', '0'), (9488, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3.5', '104', 'SSN College of Engineering', 'Computer Science', '82.81', '100', '0'), (9489, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '570', '1370', '4', '103', 'NIT', 'Electrical Engineering', '65.2', '100', '0'), (9490, '14', 'Reject', 'MS', 'Nuclear Engineering', 'Fall ', '2011', '760', '660', '1420', '4.5', '114', 'NIT Bhopal', 'Electrical Engineering', '7.3', '10', '0'), (9491, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '162', '152', '314', '3', '96', 'Sardar Patel University', 'Electronics and Telecommunication', '8.34', '10', '0'), (9492, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '159', '327', '3.5', '104', 'University of Calicut', 'Computer Science', '70.1', '100', '30'), (9493, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '164', '157', '321', '3.5', '111', 'BIT Mesra', 'Electronics and Communication Engineering', '8.91', '10', '0'), (9494, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '170', '145', '315', '4', '110', 'PEC University of Technology', 'ECE', '9.2', '10', '0'), (9495, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4.5', '114', 'Manipal Institue of Technology', 'Computer Science', '9.46', '10', '12'), (9496, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '156', '321', '4.5', '112', 'MU', 'Computer Engineering', '71', '100', '30'), (9497, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '160', '150', '310', '3.5', '100', 'MSRIT', 'Civil Engineering', '9.17', '10', '0'), (9498, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '600', '1400', '3.5', '102', 'NIT Tirchy', 'ELECTRONICS AND COMMUNICATION ENGINEERING', '8.53', '10', '0'), (9499, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '660', '1450', '4', '115', 'RNSIT', 'Electronics/communication', '77', '100', '0'), (9500, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '740', '610', '1350', '4', '108', 'Thiagarajar College of engineering', 'Mechanical Engineering', '8.7', '10', '0'), (9501, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '520', '1300', '3.5', '108', 'PSG College of Technology', 'ECE', '9.17', '10', '0'), (9502, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (9503, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '450', '1250', '4', '102', 'CEG', 'Computer Science', '8.8', '10', '0'), (9504, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '104', 'Madras Institute of Technology', 'Production engg', '8.4', '10', '0'), (9505, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '152', '317', '4', '98', 'R V College of Engineering', 'ECE', '9.11', '10', '0'), (9506, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '162', '152', '314', '4', '110', 'VIT', 'Electronics and Communication Engineering', '8.89', '10', '0'), (9507, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '159', '325', '3.5', '116', 'BITS Pilani', 'Electrical & Electronics Engineering', '7.58', '10', '0'), (9508, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '162', '327', '3', '109', 'Sri Venkateswara College of Engineering', 'EEE', '7.11', '10', '0'), (9509, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '770', '620', '1390', '3.5', '112', 'Amrita School of Engineering', 'ECE', '7.24', '10', '0'), (9510, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '350', '1130', '3.5', '93', 'University of Mumbai', 'Instrumentation', '70', '100', '0'), (9511, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '580', '1380', '3', '104', 'VIT University', 'Electronics & Instrumentation', '9.01', '10', '0'), (9512, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '156', '149', '305', '3', '81', 'Walchand College Of Engineering', 'Computer sci and engg', '58.03', '100', '0'), (9513, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '780', '610', '1390', '3.5', '111', 'GTU', 'Electronics and Communication', '65', '100', '0'), (9514, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '151', '321', '3.5', '109', 'BITS Pilani', 'EEE', '7.49', '10', '15'), (9515, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '580', '1380', '4', '112', 'Pune University', 'IT', '67.63', '100', '0'), (9516, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '146', '313', 'None', '88', 'Madras Institute of Technology', 'information technology', '8.6', '10', '0'), (9518, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (9519, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '150', '315', '3.5', '100', 'COEP', 'I.T.', '7.65', '10', '54'), (9520, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '161', '151', '312', '4', '107', 'MSRIT', 'Civil Engineering', '9.35', '10', '0'), (9521, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '109', 'BITS Hyderabad', 'Mechanical Engineering', '7.25', '10', '0'), (9522, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', '4.5', '114', 'BITS Pilani', 'EEE', '8.46', '10', '9'), (9523, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '111', 'BITS Pilani', 'Computer Science', '8.7', '10', '0'), (9524, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '165', '331', '4', '112', 'K.S. Institute of Technology', 'Computer Science and Engineering', '75.5', '100', '23'), (9525, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (9526, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '158', '153', '311', '4', '117', 'VTU', 'Information Science and Engineering', '75', '100', '0'), (9527, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'Cochin University of Science and Technology', 'Computer Science', '79', '100', '0'), (9528, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '152', '316', '3.5', '106', 'NIT Calicut', 'Mechanical Engineering', '8.48', '10', '48'), (9529, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '159', '321', '3.5', '109', 'MIT', 'EEE', '8.85', '10', '0'), (9530, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '640', '1440', '4', '111', 'NITK Surathkal', 'ECE', '8.78', '10', '0'), (9531, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2012', '750', '630', '1380', '3.5', '110', 'SRM', 'ECE', '7.03', '10', '0'), (9532, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '760', '590', '1350', '3', '98', 'S.V Engineering College', 'Electrical & Electronics Engg', '7.2', '10', '0'), (9533, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '155', '325', '3.5', 'None', 'IIT (BHU) Varanasi', 'Electrical', '7.91', '10', '0'), (9534, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '4', '109', 'Thadomal Shahani Engineering College', 'Information Technology', '64', '100', '0'), (9535, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '159', '324', '5', '111', 'Amrita School of Engineering', 'Computer Science', '8.93', '10', '0'), (9536, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4', '119', 'NIT Karnataka', 'Electronics & Communication', '8.9', '10', '21'), (9537, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '3', '106', 'Sri Venkateswara College of Engineering', 'Information Technology', '78', '100', '0'), (9538, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '154', '152', '306', '3.5', '105', 'D J Sanghvi', 'IT', '72', '100', '36'), (9539, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '157', '322', '3', 'None', 'None', '0', '8.68', '10', '0'), (9540, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '157', '319', '4', '113', 'BIT Mesra', 'Mechanical', '8.5', '10', '0'), (9541, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '165', '155', '320', '4', 'None', 'VIT University', 'B.Tech Electronics and Communication', '8.99', '10', '0'), (9542, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '14', '162', '168', '330', '4', 'None', 'MU', 'Computers', '64.5', '100', '0'), (9543, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '156', '321', '4', '114', 'VTU', 'ece', '76', '100', '0'), (9544, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '4', '109', 'BESU Shibpur', 'Information Technology', '89', '100', '0'), (9545, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '164', '157', '321', '3.5', '104', 'IIT Guwahati', 'Mechanical', '6.23', '10', '0'), (9546, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', '4', '113', 'MU', 'Computer Engineering', '60.28', '100', '0'), (9547, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '170', '155', '325', '3.5', '110', 'BITS Hyderabad', 'Electronics & Communication', '9.26', '10', '0'), (9548, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3', '110', 'Mukesh Patel School of Technology Management and Engineering', 'Information Technology', '3.22', '4', '0'), (9549, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '730', '1500', '4', '113', 'CoE Trivandrum', 'Computer science', '71', '100', '0'), (9550, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2013', '800', '670', '1470', '4', '114', 'University of Pune', 'Computer', '59', '100', '0'), (9551, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '168', '156', '324', '4.5', '114', 'University of Pune', 'Mechanical Engg.', '77.35', '100', '12'), (9552, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '780', '370', '1150', '5', '270', 'College of Technology Pantnagar', 'Electronics and Communication Engineering', '7.922', '10', '0'), (9553, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '168', '156', '324', '4', '103', 'IIT', 'ECE', '7.4', '10', '36'), (9554, '14', 'Reject', 'MS', 'Computer Networks', 'Spring ', '2014', '167', '150', '317', '3.5', '97', 'CEG', 'Electronics and communication engineering', '7.84', '10', '0'), (9555, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '156', '319', '3', 'None', 'Coimbatore Insitute of Technology', 'CSE', '8.1', '10', '0'), (9556, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '150', '313', '3', '107', 'VIT University', 'EEE', '8.68', '10', '0'), (9557, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', '165', '162', '327', '5', '114', 'NITK Surathkal', 'EEE', '7.57', '10', '0'), (9558, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '3.5', '113', 'SASTRA', 'ICT', '8.32', '10', '24'), (9559, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '151', '316', '4.5', '110', 'VTU', 'Computer Science', '79', '100', '0'), (9560, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '167', '163', '330', '4', '111', 'BITS Pilani', 'BE EEE', '8.3', '100', '24'), (9561, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '153', '322', '3.5', '100', 'Thiagarajar College of engineering', 'ECE', '8.78', '10', '0'), (9563, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '163', '330', '5.5', '116', 'VIT University', 'ECE', '8.81', '10', '0'), (9564, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '610', '1400', '3', '108', 'JNTU', 'Information Technology', '79', '100', '0'), (9565, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '150', '315', '3.5', '104', 'BITS Hyderabad', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (9566, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '154', '320', '4.5', '108', 'NIT Allahabad', 'Computer Science and Engineering', '7.67', '10', '0'), (9567, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '630', '1430', '4', '110', 'IIT Madras', 'Metallurgical and Materials Engineering', '7.47', '10', '0'), (9568, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '151', '315', '3.5', '105', 'Shah And anchor Kutchhi Engineering College', 'Computer Engineering', '76.2', '100', '0'), (9569, '14', 'Reject', 'MS', 'Information Management', 'Fall ', '2015', '166', '159', '325', '4', '114', 'EEC', 'IT', '8.34', '10', '12'), (9571, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'R V College of Engineering', 'Computer Science', '78', '100', '0'), (9572, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '157', '319', '4', '108', 'VTU', 'Computer Science', '79.33', '100', '0'), (9573, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', '108', 'Anna University', 'Computer Science and Engineering', '81', '100', '0'), (9574, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '160', '327', '4', '112', 'MU', 'CS', '68.64', '100', '0'), (9575, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '152', '161', '313', '3', '105', 'PSG College of Technology', 'Computer Science & Engineering', '8.9', '10', '60'), (9576, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (9577, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Spring ', '2014', '166', '165', '331', '4', '112', 'NIT Calicut', 'Mechanical Engineering', '8.12', '10', '0'), (9578, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '149', '310', '3', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.52', '10', '0'), (9579, '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2011', '780', '570', '1350', '3.5', '112', 'Bapatla Engineering College', 'Civil Engineering', '89.9', '100', '0'), (9580, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '105', 'NIT Warangal', 'Electronics and Communication Engineering', '8.88', '10', '36'), (9581, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '153', '314', 'None', '112', 'Coimbatore Insitute of Technology', 'Computer technology and Applications', '80', '100', '0'), (9582, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2014', '159', '149', '308', '3', '103', 'SASTRA', 'Computer Science', '7.5', '10', '0'), (9583, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '102', 'Madras Institute of Technology', 'Computer Science', '8.9', '10', '0'), (9584, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '114', 'SIES Graduate School of Technology', 'Computer engineering', '70.68', '100', '0'), (9585, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '530', '1320', '3', '100', 'VTU', 'Information Science & Engineering', '68.09', '100', '0'), (9586, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '104', 'CHARUSAT', 'Computer Engineering', '8.58', '10', '0'), (9587, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '144', '301', '3.5', '97', 'MU', 'Computer Engineering', '75', '100', '0'), (9588, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '162', '154', '316', '3.5', '114', 'VTU', 'Electronics and Communication', '8.31', '10', '0'), (9589, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2014', '163', '142', '305', '3.5', '102', 'G. H. Patel College of Engineering and Technology', 'Mechatronics', '8.06', '10', '0'), (9590, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3.5', '110', 'None', '0', '75', '100', '24'), (9592, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '3', '105', 'ISM Dhanbad', 'Computer Science & Engineering', '7.83', '10', '0'), (9593, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '168', '154', '322', '4', '112', 'L D College Of Engineering', 'Electronics & Communication', '8.75', '10', '0'), (9594, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '160', '321', '4', '113', 'BITS Dubai', 'Computer Science', '9.07', '10', '0'), (9595, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '151', '317', '3.5', '101', 'VRSEC', 'CSE', '86', '100', '0'), (9596, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '155', '323', '3.5', '111', 'IIITDM Jabalpur', 'ECE', '8.8', '10', '0'), (9597, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '3', '102', 'Pune University', 'Computer Science and engineering', '69.2', '100', '0'), (9598, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '169', '158', '327', '4.5', 'None', 'R V College of Engineering', 'ECE', '85.2', '100', '0'), (9599, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '530', '1270', '3', '108', 'PICT', 'Information Technology', '72.36', '100', '0'), (9600, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '780', '590', '1370', '4', '103', 'Thadomal Shahani Engineering College', 'EXTC', '0', '0', '0'), (9601, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'VTU', 'Computer Science', '82', '100', '0'), (9602, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', 'None', 'NIT Tirchy', 'Production Engineering', '8.96', '10', '0'), (9603, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '156', '324', '3', '98', 'SNIST', 'E.C.E', '81', '100', '0'), (9604, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '4', '105', 'Siddaganga Institue of Technology', 'information science and engg', '9.34', '10', '0'), (9605, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '159', '321', '4', '115', 'VTU', 'Comp Science', '79', '100', '0'), (9606, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '550', '1350', '4.5', '109', 'MSRIT', 'CSE', '9.07', '10', '0'), (9607, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '152', '314', '3.5', '114', 'Vidyalankar Institute of Technology', 'computer science', '67', '100', '36'), (9608, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '580', '1370', '3', '107', 'PSG College of Technology', 'B.E (CSE)', '8.8', '10', '0'), (9609, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '660', '1440', '3', '114', 'MU', 'electronics and telecomm', '71', '100', '0'), (9611, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '800', '550', '1350', '3', '108', 'NITK Surathkal', 'ECE', '8.2', '10', '0'), (9612, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '163', '333', '4.5', '112', 'Netaji Subhas Institute of Technology', 'Information Technology', '72', '100', '36'), (9613, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '153', '321', '3.5', '106', 'Manipal Institue of Technology', 'ECE', '8.62', '10', '0'), (9614, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3', '100', 'Jaypee Institute of Information Technology', 'ECE', '7', '10', '0'), (9615, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '157', '165', '322', '3.5', 'None', 'VTU', 'Information Science', '76', '100', '0'), (9616, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '169', '153', '322', '3.5', '108', 'NSIT', 'Maufacturing and Automation', '73', '100', '0'), (9617, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '162', '329', '4', '100', 'Delhi University', 'Electronics and Communication', '73', '100', '0'), (9618, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (9619, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '3.5', '107', 'ANU', 'Computer Science', '85', '100', '0'), (9620, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2006', '790', '680', '1470', '5', '293', 'Model Engineering College', 'Electronics And Communication', '82', '100', '0'), (9621, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (9622, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '161', '153', '314', '4', '111', 'Sri Venkateswara College of Engineering', 'EEE', '8.8', '10', '0'), (9623, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', 'None', 'SASTRA', 'Computer science and engineering', '8.48', '10', '0'), (9624, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '590', '1380', '4', '113', 'GGSIPU', 'Electronics and Communication', '76', '100', '0'), (9625, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '153', '316', '3.5', '110', 'VTU', 'Computer Science', '8.86', '10', '0'), (9626, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (9627, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '3.5', '104', 'Pune University', 'Computer', '66', '100', '0'), (9628, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '158', '325', '4.5', '108', 'VIT Pune', 'Mechanical', '8.69', '10', '0'), (9629, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '360', '1160', '3', '103', 'MU', 'Electronics and Communicatiion', '71.28', '100', '0'), (9630, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (9631, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '630', '1430', '4', '104', 'Anna University', 'ECE', '9.02', '10', '0'), (9632, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '790', '580', '1370', '4.5', '114', 'VIT University', 'School Of Electrical Engineers', '8.85', '10', '0'), (9633, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '650', '1430', '3', '110', 'MU', 'IT', '74', '100', '0'), (9634, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '670', '1460', '5', '112', 'MU', 'Computer', '61', '100', '0'), (9635, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '167', '336', '4', '119', 'Sardar Patel University', 'Computer Engineering', '8.14', '10', '32'), (9636, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '147', '309', '3', '110', 'SJCE', 'CSE', '8.86', '10', '0'), (9637, '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2012', '790', '600', '1390', '4', '109', 'MU', 'Chemical Engineering', '70', '100', '0'), (9638, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '168', '156', '324', '5', '115', 'VTU', 'Information Science & Engineering', '8.66', '10', '0'), (9639, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '710', '1510', '4', '115', 'None', 'Electronics & Communication', '70', '100', '0'), (9640, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '159', '155', '314', '4', '110', 'None', 'E&Tc;', '64', '100', '0'), (9641, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2013', '790', '600', '1390', '3', 'None', 'Shri Guru Gobind Singhji Institute of Engineering And Technology', 'Electronics and Telecommunication', '7.7', '10', '0'), (9642, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '160', '322', '3.5', '113', 'Pune University', 'Computer Engineering', '3.36', '4', '31'), (9643, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '155', '321', '4', '117', 'MU', 'CS', '68', '100', '0'), (9644, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '400', '1190', '3.5', '100', 'Anna University', 'CS', '76', '100', '0'), (9645, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '540', '1340', '3.5', '108', 'Manipal Institue of Technology', 'Mechanical', '8.73', '10', '0'), (9646, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '166', '327', '4', '114', 'SSN College of Engineering', 'Computer Science Engineering', '8.06', '10', '0'), (9647, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '157', '324', '4', '102', 'SASTRA', 'CSE', '6.9', '10', '0'), (9648, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '164', '153', '317', 'None', '101', 'BITS Goa', 'Electrical & Electronics', '6.6', '10', '0'), (9649, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '690', '1460', '3', '105', "Vivekanand Educational Society's Institute Of Technology Mumbai", 'Electronics and Telecommunication', '65', '100', '0'), (9650, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '410', '1190', 'None', '90', 'R V College of Engineering', 'Information Science & Engg', '78', '100', '0'), (9651, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '660', '1410', '3.5', '107', 'Anna University', 'EEE', '81', '100', '0'), (9652, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '760', '480', '1240', '3.5', '104', 'Padmashree Dr D Y Patil University', 'Biotechnology', '68', '100', '0'), (9653, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '149', '313', '3', '104', 'Nirma Institute of Technology', 'Electronics and Communication Engineering', '8.1', '10', '0'), (9654, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3', 'None', 'VIT', 'Electrical and Electronics Engineering', '7.97', '10', '0'), (9655, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '530', '1310', '3.5', '109', 'MU', 'Electronics', '70.5', '100', '0'), (9656, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (9657, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '150', '319', '3.5', '110', 'NITK Surathkal', 'Information Technology', '8.92', '10', '0'), (9658, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'PESIT', 'ISE', '8.55', '10', '0'), (9659, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '168', '157', '325', '4', '116', 'IIT Roorkee', 'Mechanical & Industrial', '8', '10', '0'), (9660, '14', 'Reject', 'MS', 'Electronics and electrical engineering', 'Fall ', '2013', '162', '160', '322', '4', '113', 'BMSCE', 'ECE', '78', '100', '0'), (9661, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '167', '146', '313', '3.5', '95', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '76', '100', '0'), (9662, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '4', '106', 'Pune University', 'computer', '67', '100', '0'), (9663, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '110', 'BVBCET', 'Computer science', '75.55', '100', '0'), (9664, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '4', '111', 'IIT BHU', 'Electrical Engineering', '8.23', '10', '0'), (9665, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '151', '313', '4.5', '108', 'Shivaji University', 'Computer Science', '67', '100', '0'), (9666, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '770', '540', '1310', '3.5', '114', 'Thadomal Shahani Engineering College', 'Computer Engineering', '68', '100', '0'), (9667, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3.5', '101', 'Mepco Schlenk Engineering College', 'Electronics and Communication', '9', '10', '0'), (9668, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4', '108', 'NIT Bhopal', 'Computer Science and Engineering', '7.95', '10', '0'), (9669, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '160', '321', '3', '109', 'MU', 'Electronics and Telecommunication', '67.21', '100', '18'), (9670, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '90', 'Reputed private institute [deemed university] equivalent in standard to a upper-middle-ranked NIT', 'Computer Science', '6', '10', '0'), (9671, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '780', '540', '1320', '4', '117', 'BITS Pilani', 'Computer Science', '8.4', '10', '0'), (9673, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '520', '1320', '4', '113', 'University of Mumbai', 'Computer', '68', '100', '0'), (9674, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '440', '1220', '3', '104', 'VIT', 'Informatin Technology', '9.72', '10', '0'), (9675, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '113', 'nitk', 'ee', '7.59', '10', '24'), (9677, '14', 'Reject', 'MS', 'None', 'Fall ', '2013', '164', '153', '317', '4', '114', 'CEG', 'Manufacturing Engineering', '8.81', '10', '0'), (9678, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '650', '1400', '3.5', '110', 'SASTRA', 'CSE', '9.1', '10', '0'), (9679, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '560', '1310', '4', '112', 'Faculty of Technology Dharmsinh Desai University', 'Computer Engineering', '68', '100', '0'), (9680, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3', '106', 'SSN College of Engineering', 'ECE', '83.7', '100', '0'), (9681, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '670', '1470', '3.5', '111', 'NIT Tirchy', 'E.C.E', '9.67', '10', '0'), (9682, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'Nirma Institute of Technology', 'Electronics and communication', '8.28', '10', '0'), (9683, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '153', '321', '3.5', '108', 'NIT Rourkela', 'Electrical', '8.74', '10', '0'), (9684, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '560', '1300', '3', '103', 'The National Institute of Engineering', 'Information Science(same as Computer science differing in terms of electives towards the last 3 semesters of engineering)', '76.55', '100', '0'), (9685, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '158', '152', '310', '3', '113', 'Goa University', 'Electronics and Telecommunications', '70', '100', '40'), (9686, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.5', '110', 'NIT Calicut', 'Mechanical Engineering', '7.11', '10', '0'), (9687, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '700', '1480', '4', '116', 'Amrita School of Engineering', 'Computer Science', '8.74', '10', '0'), (9688, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '170', '157', '327', '3.5', '112', 'IIT Madras', 'Electrical Engineering', '8.4', '10', '14'), (9689, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '540', '1310', '4', '102', 'Rajiv Gandhi Technical University', 'Computer Science', '73', '100', '0'), (9690, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '163', '149', '312', '3.5', '98', 'Manipal Institue of Technology', 'Industrial and production', '9.01', '10', '0'), (9691, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '154', '315', '4.5', '106', 'MU', 'Information Technology', '67.23', '100', '24'), (9692, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '156', '326', '3.5', '109', 'BITS Pilani', 'Computer Science', '7.6', '10', '0'), (9693, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '165', '150', '315', '3.5', '107', 'PEC University of Technology', 'Electronics', '9.6', '10', '0'), (9694, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (9695, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '720', '1520', '3.5', '106', 'DU', 'EE', '71', '100', '0'), (9696, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '158', '321', '3', '115', 'VIT', 'Computer Science', '8.8', '10', '0'), (9697, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '166', '167', '333', '4.5', '113', 'Punjab Engineering College', 'Mechanical Engineering', '7.74', '10', '0'), (9698, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '570', '1330', '4', '107', 'RMK Engineering College', 'Computer science', '70', '100', '0'), (9699, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '164', '150', '314', '4', 'None', 'CEG', 'Computer Science', '8.99', '10', '0'), (9700, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (9701, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '680', '1450', '4.5', '116', 'MU', 'Computers', '64', '100', '0'), (9702, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '580', '1380', '4', '111', 'COEP', 'Electronics and Telecommunication', '8.52', '10', '0'), (9703, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '116', 'COEP', 'Computer Engineering', '9.16', '10', '0'), (9704, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '730', '1530', '4.5', '118', 'Jaypee Institute of Information Technology', 'Information Technology', '8', '10', '0'), (9705, '14', 'Reject', 'MS', 'Electronics & Communication', 'Fall ', '2013', '162', '151', '313', '4', '99', 'VIT', 'Electronics & Communication', '8.76', '10', '0'), (9706, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2011', '800', '610', '1410', '3', '112', 'IIT Kanpur', 'Civil Engineering', '8.4', '10', '0'), (9707, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (9708, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '116', 'Anna University', 'IT', '8.97', '10', '0'), (9709, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (9710, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '158', '157', '315', '4.5', '110', 'Moscow Aviation Institute(National Research University) Moscow Russia', 'Aerospace', '4.3', '5', '0'), (9711, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '156', '149', '305', '4', '108', 'MSRIT', 'Computer Science', '9.67', '10', '0'), (9712, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '113', 'MANIT Bhopal', 'Computer Science and Engineering', '8.89', '10', '0'), (9713, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '152', '315', '3.5', '104', 'BIT Mesra', 'COMPUTER SCIENCE', '8.7', '10', '0'), (9714, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '156', '320', '3', '107', 'BITS Pilani', 'Computer Science', '8.19', '10', '24'), (9715, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '113', 'VTU', 'CS', '80', '100', '0'), (9716, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '157', '325', '4.5', '115', 'R V College of Engineering', 'Electronics and Communication', '9.06', '10', '0'), (9717, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '158', '319', '4', '119', 'MU', 'Information Technology', '60', '100', '0'), (9719, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '158', '323', '4', '113', 'VIT', 'Computer Science', '8.92', '10', '0'), (9720, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '157', '314', '4', '113', 'PICT', 'I.T.', '60', '100', '0'), (9721, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '500', '1260', '4', '98', 'Xavier Institute of Engineering University of Mumbai', 'Computer Engineering', '60.084', '100', '0'), (9722, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '170', '152', '322', '4', '110', 'VIT University', 'Energy Division', '8.62', '10', '0'), (9723, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '570', '1360', '4', '103', 'MU', 'Computer', '66', '100', '0'), (9724, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '108', 'BITS Pilani', 'Computer Science', '6.8', '10', '0'), (9725, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '163', '151', '314', '4.5', '108', 'Sri Jayachamarajendra College of Engineering', 'EEE', '9.4', '10', '17'), (9726, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '157', '324', '3.5', '102', 'None', 'Mechanical', '80', '100', '29'), (9727, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '150', '164', '314', '3', '102', 'Shah And anchor Kutchhi Engineering College', 'Computers', '59.27', '100', '0'), (9728, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '159', '148', '307', '3', '101', 'University of Pune', 'Mechanical', '68', '100', '0'), (9729, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '158', '323', '3.5', '112', 'Dharamsinh Desai University', 'computer engineering', '8.3', '10', '12'), (9730, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '670', '1430', '3.5', '107', 'JNTU', 'ECE', '78', '100', '0'), (9731, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (9732, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '490', '1260', '3.5', '107', 'NIT Karnataka', 'IT', '8.98', '10', '0'), (9733, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '790', '560', '1350', '4.5', '110', 'Sinhgad College of Engineering', 'Mechanical Engineering', '66', '100', '0'), (9734, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '170', '156', '326', '3', '107', 'IIT Bombay', 'Electical Engineering', '7.81', '10', '0'), (9735, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (9736, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '790', '520', '1310', '3', '99', 'BITS Pilani', 'Electronics & Instrumentation', '8', '10', '0'), (9737, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '166', '160', '326', '4.5', '110', 'NIT Karnataka', 'Electronics and Communication Engineering', '7.75', '10', '0'), (9738, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '780', '530', '1310', '3.5', '109', 'Jaypee Institute of Information Technology', 'ECE', '8.2', '10', '0'), (9740, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3.5', '103', 'NIT Rourkela', 'Computer Science and Engineering', '8.54', '10', '0'), (9741, '14', 'Reject', 'MS', 'Data Informatics', 'Fall ', '2015', '158', '151', '309', '4', '109', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.28', '10', '0'), (9742, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '4', '112', 'LNMIIT', 'CSE', '7.49', '10', '0'), (9743, '14', 'Reject', 'MS', 'Data Science', 'Fall ', '2015', '167', '154', '321', '4', '117', 'VTU', 'ISE', '69', '100', '0'), (9744, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '162', '150', '312', '4', '102', 'Sardar Patel College of Engineering', 'Electronics', '80.58', '100', '0'), (9745, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '790', '570', '1360', '3.5', '116', 'JNTU', 'Electronics and Communication', '81', '100', '0'), (9746, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '3.5', 'None', 'University of Kerala', 'Computer Science and Engineering', '8.1', '10', '0'), (9747, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '168', '168', '336', '4', '111', 'Sardar Patel College of Engineering', 'Electronics', '75.87', '100', '0'), (9748, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '162', '326', '4', '114', 'MU', 'IT', '76', '100', '24'), (9749, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '162', '330', '4', '113', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes & Automation', '72', '100', '46'), (9750, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '153', '319', '4.5', '108', 'MU', 'Computer Engineering', '67', '100', '0'), (9751, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '166', '156', '322', '3.5', '109', 'Veermata Jijabai Technological Institute', 'Computer Technology', '8.3', '10', '22'), (9753, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '157', '150', '307', '3.5', '101', 'Siddaganga Institue of Technology', 'Electrical and Electronics Engineering', '9.2', '10', '0'), (9754, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '160', '154', '314', '3.5', '109', 'SASTRA', 'ECE', '7.704', '10', '0'), (9755, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '165', '155', '320', '3.5', '113', 'None', '0', '3.2', '4', '44'), (9756, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (9757, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '4', 'None', 'JNTU', 'Computer Science', '73.6', '100', '0'), (9758, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '161', '159', '320', '4', '117', 'Datta Meghe College of Engineering', 'Mechanical Engineering', '70.5', '100', '0'), (9759, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '460', '1260', '3.5', 'None', 'MU', 'Computer Engineering', '72.12', '100', '0'), (9760, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2013', '770', '540', '1310', '4', '109', 'VTU', 'Civil Engineering', '7.46', '10', '0'), (9761, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '450', '1170', '3.5', '107', 'VTU', 'Computer Science', '71', '100', '0'), (9762, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (9763, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '640', '1440', '4.5', '114', 'COEP', 'Computer Engineering', '9.31', '10', '0'), (9764, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '800', '410', '1210', '4', '104', 'NITK Surathkal', 'Electrical and Electronics', '8.01', '10', '0'), (9765, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2012', '780', '570', '1350', '3.5', '95', 'Jaypee Institute of Information Technology', 'ECE', '8.5', '10', '0'), (9766, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '780', '610', '1390', '3.5', '108', 'Pune University', 'Computer engg', '8.54', '10', '0'), (9768, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '160', '325', '4.5', '108', 'VTU', 'CSE', '8.46', '10', '0'), (9770, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '4', '107', 'S.P.I.T. Mumbai University', 'Computer Engineering', '78.98', '100', '0'), (9771, '14', 'Reject', 'MS', 'Mech and Elec', 'Fall ', '2012', '800', '570', '1370', '4', 'None', 'None', '0', '8.07', '10', '0'), (9772, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (9773, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '154', '311', '4.5', '115', 'Anna University', 'CSE', '80', '100', '0'), (9774, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '166', '150', '316', '3', '100', 'MU', 'Electronics and Telecommunication', '68', '100', '0'), (9775, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '158', '322', '4', '113', 'NIT Bhopal', 'Information Technology', '8.58', '10', '0'), (9776, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '149', '317', '4', '109', 'MU', 'Computers', '75.9', '100', '0'), (9777, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '159', '155', '314', '3.5', '102', 'Sardar Patel University', 'Electronics & Communication', '3.45', '4', '0'), (9778, '14', 'Reject', 'MS', 'Electronics & Communication', 'Spring ', '2014', '170', '144', '314', '3.5', '94', 'GCET V.V.Nagar', 'Electronics & Communication', '7.6', '10', '0'), (9779, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2010', '760', '520', '1280', '4', '107', 'Anna University', 'EEE', '87.3', '100', '0'), (9780, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '148', '309', '3', '107', 'PESIT', 'Electronics and Communication', '8.94', '10', '31'), (9781, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '650', '1420', '4', '110', 'Birla Vishvakarma Mahavidyalaya', 'CS', '9.19', '10', '0'), (9782, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '570', '1370', '4', '117', 'Osmania University', 'I.T.', '82.3', '100', '0'), (9783, '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2013', '161', '164', '325', '3.5', '111', 'Sathyabama University', 'Biotechnology', '81', '100', '0'), (9784, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '153', '322', '4', '118', 'NITK Surathkal', 'ECE', '8.84', '10', '0'), (9785, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '162', '330', '4', 'None', 'GGSIPU', 'ECE', '68', '100', '42'), (9786, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '3.5', '113', 'University of Alberta', 'Computing Science', '3.8', '4', '0'), (9787, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '157', '319', '5', '115', 'NIT', 'Computer Engineering', '7.5', '10', '0'), (9788, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (9789, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '157', '324', '4', '108', 'Anna University', 'ECE', '9', '10', '0'), (9790, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '168', '155', '323', '4.5', '105', 'BITS Pilani', 'Electrical & Electronics', '7.81', '10', '0'), (9791, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3.5', '96', 'Gautam Buddh Technical University', 'Information Technology', '73.52', '100', '0'), (9792, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '600', '1400', '3', '104', 'Thapar University', 'ECE', '8.77', '10', '0'), (9793, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2013', '163', '156', '319', '4', '109', 'VIT University', 'Mechanical', '8.98', '10', '0'), (9794, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '157', '159', '316', '3.5', '108', 'MU', 'I.T.', '72', '100', '0'), (9795, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '154', '316', '3.5', '116', 'None', 'IT', '9.47', '10', '0'), (9796, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '500', '1290', '3.5', '91', 'MU', 'Electronics and Telecommunication', '3.97', '4', '0'), (9797, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '156', '321', '3', '114', 'BMSCE', 'Telecom', '9.5', '10', '18'), (9798, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '4', '105', 'SSN College of Engineering', 'Information technology', '8.73', '10', '0'), (9799, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '550', '1280', '4', '104', 'MU', 'Computer Science', '67', '100', '0'), (9801, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4', '114', 'Thapar University', 'Electronics(Instrument &Contol;)', '7.95', '10', '0'), (9802, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '480', '1260', '3.5', '105', 'JNTU', 'EIE', '82.75', '100', '0'), (9803, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '162', '152', '314', '3', '90', 'B V Bhoomaraddi College of Engg & Tech (Affiliated to VTU)', 'Electronics and Communication', '9.1', '10', '0'), (9804, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '103', 'AISSMS College of Engineering Pune', 'Electronics', '64.91', '100', '0'), (9805, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '166', '148', '314', '4', '104', 'SJCE', 'CS', '8.73', '10', '0'), (9806, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '112', 'FCRIT', 'EXTC', '66.47', '100', '0'), (9807, '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2013', '160', '154', '314', '3.5', '103', 'SASTRA', 'Mechatronics', '8.79', '10', '0'), (9808, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '160', '328', '3.5', '106', 'Institute of Technology Nirma University', 'Instrumentation & Control', '7.81', '10', '0'), (9809, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '3.5', '99', 'IIITM', 'IT', '8.58', '10', '0'), (9810, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '630', '1430', '3.5', '106', 'Bangalore Institute of Technology', 'Information Science', '70', '100', '0'), (9811, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3.5', '110', 'Guru Gobind Singh Indraprashta University', 'Computer Science', '79', '100', '0'), (9812, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2010', '800', '630', '1430', '4', '109', 'NIT Durgapur', 'ECE', '7.93', '10', '0'), (9813, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '550', '1330', '3.5', '105', 'CEG', 'I.T', '8.45', '10', '0'), (9814, '14', 'Reject', 'MS', 'statistics', 'Fall ', '2014', '169', '153', '322', '3', '107', 'Bangalore Institute of Technology', 'ECE', '73', '100', '0'), (9815, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '164', '330', '4.5', '117', 'IIT BHU', 'Electronics', '7.92', '10', '0'), (9816, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '159', '321', '3', '104', 'U.P.Technical University', 'Information Technology', '68', '100', '0'), (9817, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '720', '610', '1330', '4', '104', 'SASTRA', 'Mechanical Engineering', '9.04', '10', '0'), (9818, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '151', '315', '3', '102', 'MU', 'Electrical', '79.8', '100', '0'), (9819, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '630', '1400', '4', '103', 'PSG College of Technology', 'IT', '8.71', '10', '0'), (9820, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (9821, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '166', '152', '318', '4', '110', 'MU', 'Electronics and telecommunication', '67', '100', '0'), (9822, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '165', '153', '318', '4', '119', 'CEG', 'Electronics and Communication Engineering', '9.26', '10', '0'), (9823, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3.5', '101', 'R V College of Engineering', 'Information science and engineering', '82.25', '100', '0'), (9824, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '680', '1480', '4', '105', 'Manipal Institue of Technology', 'Electronics and Communication', '9.06', '10', '0'), (9825, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '170', '145', '315', '3', '106', 'BMSCE', 'Electronics and Communication Engineering', '9.83', '10', '9'), (9826, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '168', '155', '323', '5', '115', 'MU', 'Computer Engineering', '76.5', '100', '0'), (9827, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '164', '331', '4.5', '112', 'Jadavpur University', 'Mechanical Engineering', '8.56', '10', '24'), (9828, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '102', 'CEG', 'IT', '8.95', '10', '0'), (9829, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '152', '318', '4', '112', 'MU', 'Electronics and Telecommunication', '62.96', '100', '0'), (9830, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '168', '153', '321', '3.5', '104', 'University of Pune', 'E&TC;', '69', '100', '0'), (9831, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '149', '319', '3.5', '114', 'NIT Warangal', 'Computer Science and Engineering', '8.5', '10', '0'), (9832, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '165', '163', '328', '5', '118', 'VTU', 'Electrical and Electronics Engineering', '73.7', '100', '0'), (9833, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '630', '1420', '3.5', '101', 'GGSIPU', 'Electronics', '72', '100', '0'), (9834, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '164', '334', '4', 'None', 'University of Mumbai', 'Electronics and Telecommunication', '68', '100', '12'), (9835, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '167', '159', '326', '3.5', '103', 'Anna University', 'AERONAUTICAL', '7.9', '10', '1'), (9836, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '540', '1340', '3', '105', 'K J Somaiya College of Engiineering', 'Information Technology', '73', '100', '0'), (9837, '14', 'Reject', 'MS', 'Electrical and computer engineering electrical engineering telecommunications engineering', 'Fall ', '2014', '167', '145', '312', '3', '99', 'Keshav memorial Institute of Technology Hyderabad', 'ECE', '79', '100', '0'), (9838, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '154', '324', '4', '114', 'MDU', 'EECE', '83.4', '100', '24'), (9839, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3.5', '91', 'GHRCE Nagpur', 'Electronics and Telecommunication', '73', '100', '0'), (9840, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '590', '1390', '3.5', '105', 'Nagpur University', 'Mechanical', '71', '100', '0'), (9841, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '550', '1350', '2.5', '108', 'JNTU', 'CSE', '81', '100', '0'), (9842, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '520', '1320', '3.5', '97', 'IET DAVV', 'Information Technology', '80', '100', '0'), (9843, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2008', '780', '470', '1250', '4.5', '111', 'Nagpur University', 'Electronics Engineering', '69.5', '100', '0'), (9844, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '158', '320', '3.5', '112', 'MU', 'Computer', '65', '100', '0'), (9845, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '600', '1390', '3', '101', 'SASTRA', 'Computer Science', '7.98', '10', '0'), (9846, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '169', '161', '330', '3', '108', 'VNIT Nagpur', 'ECE', '9.36', '100', '24'), (9847, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (9848, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '740', '560', '1300', '4.5', '113', 'Pune University', 'Computer Engineering', '70.15', '100', '0'), (9849, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '165', '148', '313', '3', '109', 'None', 'Electronics', '8.7', '10', '24'), (9850, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '500', '1290', '3', '96', 'R V College of Engineering', 'Computer Science', '72', '100', '0'), (9851, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '164', '149', '313', '4', '102', 'UPTU', 'Electronics and Communication Engineering', '72.48', '100', '0'), (9852, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '470', '1270', '3.5', '100', 'MU', 'I.T.', '61', '100', '0'), (9853, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '3.5', '113', 'Delhi College Of Engineeing', 'IT', '76', '100', '0'), (9854, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2015', '167', '155', '322', '4', '108', 'Visvesvaraya NIT Nagpur', 'Chemical Engineering', '8.33', '10', '2'), (9855, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '610', '1390', '3', '96', 'PICT', 'Electronics & Telecommunications', '66', '100', '0'), (9856, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '3', '111', 'MU', 'Electronics and Telecommunication Engineering', '80', '100', '0'), (9857, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (9858, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '520', '1270', '3.5', '116', 'Pune University', 'Computer Science', '59.9', '100', '0'), (9859, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '610', '1410', '4', '111', 'BITS Pilani', 'Computer Science', '8.3', '10', '0'), (9860, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2011', '800', '610', '1410', '3.5', '103', 'BITS Pilani', 'Electronics and Instrumentation', '9.4', '10', '0'), (9861, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '151', '318', '3', '99', 'K J Somaiya College of Engiineering', 'Computers', '65', '100', '0'), (9862, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '165', '158', '323', '4', '110', 'MU', 'Electronics', '64.96', '100', '0'), (9863, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '590', '1340', '3.5', 'None', 'Kerala University', 'Electronics and communication', '78', '100', '0'), (9864, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '163', '156', '319', '3.5', 'None', 'Datta Meghe College of Engineering', 'Mechanical', '68', '100', '0'), (9865, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '520', '1320', '3.5', '109', 'SSN College of Engineering', 'Electronics and Communication', '80.02', '100', '0'), (9866, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '159', '327', '3', '105', 'CEG', 'ECE', '9.32', '10', '24'), (9867, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '154', '314', '3', '107', 'Gujarat Technological University', 'Computer Engineering', '81.61', '100', '0'), (9868, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '610', '1400', '3', '105', 'VIT', 'Computer Science', '8.95', '10', '0'), (9869, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '163', '151', '314', '3.5', '111', 'R V College of Engineering', 'Electronics & Communication', '9.26', '10', '0'), (9870, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '163', '152', '315', '3', '103', 'PSG College of Technology', 'Production Engineering (SW)', '8.04', '10', '0'), (9871, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '161', '152', '313', '4', '107', 'Sri Sairam Engineering College', 'Electronics and Instrumentation', '7.95', '10', '0'), (9872, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '153', '315', '4.5', '114', 'NSIT', 'Computer Engineering', '82.97', '100', '0'), (9873, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '106', 'MU', 'Computer Engineering', '73', '100', '0'), (9874, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '750', '570', '1320', '3.5', '93', 'MU', 'Electronics and Telecommunication', '70.08', '100', '0'), (9875, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '145', '310', '3', '98', 'Anna University', 'Information Technology', '7.8', '10', '0'), (9876, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '690', '1490', '4', '116', 'MU', 'Mechanical Engineering', '64.42', '100', '0'), (9877, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '620', '1420', '3.5', '101', 'BITS Pilani', 'E.E.E', '8.3', '10', '0'), (9878, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '163', '150', '313', '3', '102', 'Sri Jayachamarajendra College of Engineering', 'Electronics and communications', '9.17', '10', '0'), (9879, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '155', '322', 'None', 'None', 'NIT Warangal', 'Civil', '8.14', '10', '0'), (9880, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '680', '1450', '4', '115', 'RAIT', 'Electronics', '68.42', '100', '0'), (9881, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '169', '156', '325', '3.5', '114', 'Thapar University', 'ECE', '8.56', '10', '0'), (9882, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '113', 'R V College of Engineering', 'Information Science', '82', '100', '43'), (9883, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '430', '1180', 'None', '106', 'MU', 'Electronics and TeleCommuincation', '72', '100', '0'), (9884, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '4', '109', 'D J Sanghvi', 'IT', '68.9', '100', '0'), (9885, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '590', '1360', 'None', '105', 'Model Engineering College', 'Computer Science', '73', '100', '0'), (9886, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '3', '107', 'Nirma Institute of Technology', 'Computer Engineering', '8.2', '10', '0'), (9887, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '162', '162', '324', '3.5', '111', 'Anna University', 'Mechanical Engineering', '78', '100', '44'), (9888, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2014', '169', '152', '321', '4.5', '100', 'BITS Pilani', 'BE (Civil)', '6.31', '10', '0'), (9889, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '153', '322', '3', '98', 'NIT Warangal', 'ece', '8.05', '10', '0'), (9890, '14', 'Reject', 'MS', 'Information Security', 'Fall ', '2011', '800', '430', '1230', '3.5', '94', 'Amrita School of Engineering', 'INFORMATION TECHNOLOGY', '7.22', '10', '0'), (9891, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '430', '1230', '4', '113', 'BITS Goa', 'Electrical and Electronics', '8.3', '10', '0'), (9892, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '500', '1300', '5', '116', 'BITS Pilani', 'EEE', '8.44', '10', '0'), (9893, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '770', '560', '1330', '3.5', '108', 'NIT Bhopal', 'Electrical Engineering', '8.61', '10', '0'), (9894, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '163', '161', '324', '4.5', '107', 'MU', 'Electrical Engineering', '73.4', '100', '0'), (9895, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '610', '1360', '4', '112', 'MSRIT', 'Computer Science and Engineering', '9.31', '10', '0'), (9896, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '700', '1500', '3.5', '111', 'NIT Kurukshetra', 'Mechanical Engineering', '9.255', '10', '0'), (9897, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '520', '1320', '3', '95', 'University of Mumbai', 'Electronics and Telecommunication', '68.87', '100', '0'), (9898, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '770', '550', '1320', '3', '110', 'Anna University', 'IT', '74', '100', '0'), (9899, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '159', '321', '4.5', '113', 'NIT Durgapur', 'Information Technology', '7.81', '10', '0'), (9900, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '148', '318', '3', '100', 'NIT Warangal', 'CSE', '7.96', '10', '24'), (9901, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '167', '149', '316', '4', '106', 'IIT Madras', 'Civil Engineering', '7.3', '10', '24'), (9902, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '167', '156', '323', '3.5', '116', 'RMD Engineering College Anna University', 'ECE', '8.7', '10', '6'), (9903, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '164', '329', '4.5', '118', 'IIT X', 'CSE', '8.44', '10', '0'), (9904, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '110', 'NIT Silchar', 'CSE', '8.35', '10', '0'), (9905, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2013', '166', '152', '318', '4', '103', 'NIT Rourkela', 'B.tech in Biomedical Engineering', '9.1', '10', '0'), (9906, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '800', '550', '1350', '3.5', '109', 'Sardar Patel College of Engineering', 'Electronics And Telecommunication Engg.', '72', '100', '29'), (9907, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2013', '164', '149', '313', '3', '104', 'Manipal Institue of Technology', 'ECE', '8.51', '10', '0'), (9908, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '670', '1470', '4', '114', 'University of Mumbai', 'Electronics Engineering', '74.76', '100', '0'), (9909, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (9910, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '650', '1450', '4.5', '116', 'Pune University', 'Computer Engineering', '3.4', '4', '0'), (9911, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2011', '780', '550', '1330', '3.5', '106', 'NIT Karnataka', 'Computer Engineering', '8.05', '10', '0'), (9912, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '540', '1270', '4', '110', 'None', '0', '0', '0', '0'), (9913, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '164', '162', '326', '4', '109', 'PESIT', 'ECE', '8.45', '10', '24'), (9915, '14', 'Reject', 'MS', 'Instrumentation and Control', 'Fall ', '2013', '163', '150', '313', '3', '91', 'UPTU', '0', '64', '100', '0'), (9916, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', 'None', '105', 'JNTU', 'IT', '70', '100', '0'), (9917, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '153', '318', '3.5', '112', 'VJTI', 'Computer', '8.6', '10', '0'), (9919, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '700', '1500', '4', '112', 'Jaypee Institute of Information Technology', 'CS', '8', '10', '0'), (9920, '14', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2015', '166', '159', '325', '3.5', '111', 'International Institute of Information Technology Hyderabad', 'Computer Science Dual Degree', '8.02', '10', '36'), (9921, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '149', '313', '3', '103', 'Amrita School of Engineering', 'CSE', '7.2', '10', '0'), (9922, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '169', '155', '324', '3', '104', 'Guru Gobind Singh Indraprashta University', 'Computer Science & Engineering', '71.7', '100', '19'), (9923, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '162', '153', '315', '4', '108', 'R V College of Engineering', 'Computer Science', '74.93', '100', '0'), (9924, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '146', '316', '4.5', '111', 'IIT Guwahati', 'ECE', '8.59', '10', '0'), (9925, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '600', '1390', '4', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (9926, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '670', '1470', '4.5', '290', 'VJTI', 'Electronics', '71.1', '100', '0'), (9927, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', 'None', '107', 'COEP', 'Computer Engineering', '8.45', '10', '0'), (9928, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '800', '650', '1450', '4.5', '113', 'SSN College of Engineering', 'Mechanical', '8.1', '10', '0'), (9929, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '165', '332', '5.5', '114', 'Amrita School of Engineering', 'Computer Science', '9.41', '10', '0'), (9930, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '170', '159', '329', '4', '114', 'None', 'mechanical', '9.71', '10', '0'), (9931, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '169', '148', '317', '4', '104', 'R V College of Engineering', 'Computer Science', '81', '100', '0'), (9932, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '510', '1300', '4.5', '117', 'Model Engineering College', 'Electronics and Communication', '77.71', '100', '0'), (9933, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (9935, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4.5', '117', 'VJTI', 'Computer Science', '8.7', '10', '0'), (9936, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '165', '151', '316', '3.5', '101', 'IIT Roorkee', 'Electrical Engineering (Dual Degree)', '8.174', '10', '0'), (9937, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '160', '144', '304', '4', '101', 'MDU', 'Aeronautical Engineering', '73', '100', '0'), (9938, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '540', '1340', '3.5', '100', 'D J Sanghvi', 'Computer', '67', '100', '0'), (9939, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '470', '1220', '3', '108', 'NIT Hamirpur', 'CSE', '8.36', '10', '0'), (9940, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '154', '146', '300', 'None', 'None', 'Portland State University', 'ECE', '3.33', '4', '0'), (9941, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2014', '165', '168', '333', '3.5', '107', 'VTU', 'Electronics and Communication', '74.7', '100', '0'), (9942, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '640', '1430', '3.5', '117', 'Vishwakarma Institute of Technology', 'Computer Science', '9.65', '10', '0'), (9943, '14', 'Reject', 'MS', 'Robotics', 'Fall ', '2014', '166', '152', '318', '3.5', '105', 'Bangalore Institute of Technology', 'Electrical and Electronics', '79', '100', '0'), (9944, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '4', '105', 'PSG College of Technology', 'Theoretical Computer Science (Department of Mathematics and Computer Applications)', '9.05', '10', '0'), (9945, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '160', '326', '3.5', '111', 'VJTI', 'electronics', '8.4', '10', '0'), (9946, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2013', '167', '158', '325', '4', '118', 'Goa University', 'Mechanical Engineering', '69', '100', '0'), (9947, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (9948, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (9949, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall', 'None', '163', '147', '310', '3.5', '105', 'NIT Tirchy', 'Civil engineering', '8.6', '10', '0'), (9950, '14', 'Reject', 'MS', 'CS', 'Fall ', '2013', '800', '650', '1450', '4', '111', 'K J Somaiya College of Engiineering', 'IT', '67', '100', '0'), (9951, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '159', '325', '3', '108', 'KIIT', 'Electrical Engineering', '8.28', '10', '44'), (9952, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '580', '1350', '3.5', '96', 'Pune University', 'Computer Science', '63', '100', '0'), (9953, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '156', '317', '3.5', '108', 'University of Pune', 'Mechanical engineering', '67.3', '100', '0'), (9954, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '155', '317', '4', '111', 'R V College of Engineering', 'Information Science And Engineering', '9.62', '10', '0'), (9955, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '141', '301', '3', '95', 'Coimbatore Insitute of Technology', 'Computer Science', '8.5', '10', '0'), (9956, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '160', '319', '3.5', '109', 'VTU', 'Civil Engineering', '80.5', '100', '0'), (9957, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '4', '110', 'Anna University', 'Information Technology', '8.252', '10', '0'), (9958, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '167', '153', '320', '3.5', '109', 'SSN College of Engineering', 'ECE', '8.3', '10', '0'), (9959, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '163', '153', '316', '4', '117', 'BITS Pilani', 'Electronics', '7.59', '10', '16'), (9961, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '162', '327', '4.5', '119', 'University of Mumbai', 'Computer Engg', '65', '100', '0'), (9962, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '168', '163', '331', '5', '118', 'University of Pune', 'Mechanical Engineering', '73', '100', '0'), (9963, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '154', '320', '3', '106', 'M.V.S.R Engineering College', 'Information Technology', '90.8', '100', '0'), (9964, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '3', '110', 'RGPV', 'Electronics and Telecommunication Engineering', '74.08', '100', '0'), (9965, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '148', '314', '3', '110', 'BIT Mesra', 'Computer Science and Engineering', '7.68', '10', '0'), (9966, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall', 'None', 'None', 'None', '0', 'None', 'None', 'University of Petroleum and Energy studies', 'EEE', '3.46', '4', '0'), (9967, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '800', '570', '1370', '3', '107', 'JNTU', 'ece', '80.6', '100', '0'), (9968, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '167', '152', '319', '4', '107', 'Sardar Patel College of Engineering', 'Electronics Engineering', '73.5', '100', '0'), (9969, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '163', '152', '315', '4', '98', 'Coimbatore Insitute of Technology', 'ECE', '8.78', '10', '26'), (9970, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '159', '158', '317', '4', '116', 'MU', 'Production Engineering', '74', '100', '0'), (9971, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '780', '610', '1390', '4', '106', 'MU', 'Information Technology', '55', '100', '0'), (9972, '14', 'Reject', 'MS', 'Electrical and computer science', 'Fall ', '2011', '780', '700', '1480', '4.5', '108', 'VIT', 'Electronics and Communication Engineering', '8.74', '10', '0'), (9973, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '800', '670', '1470', '3.5', '102', 'None', '0', '72.5', '100', '0'), (9974, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2014', '165', '161', '326', '4', '115', 'Visvesvaraya NIT Nagpur', 'Metallurgical and Materials Engineering', '8.34', '10', '0'), (9975, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '550', '1310', '3.5', '105', 'Amity University', 'CS', '7.9', '10', '0'), (9976, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2010', '790', '750', '1540', '4', '111', 'K J Somaiya College of Engiineering', 'Electronics', '66', '100', '0'), (9977, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '167', '150', '317', '3', '99', 'International Institute of Information Technology Hyderabad', 'Computer Science', '8.7', '10', '0'), (9978, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '153', '146', '299', '3', '84', 'PTU', 'ECE', '71.1', '10', '0'), (9979, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '161', '150', '311', '3.5', '102', 'Manipal Institue of Technology', 'EEE', '8.6', '10', '0'), (9980, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '690', '1490', '4.5', '118', 'BITS Pilani', 'Electronics and Instrumentation', '0', '0', '0'), (9981, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '146', '310', '3', '107', 'Sir MVIT', 'computer science', '78', '100', '0'), (9982, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '790', '590', '1380', '3', '107', 'University of Pune', 'Computer Science', '70', '100', '0'), (9983, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '670', '1470', '5', '117', 'JNTU', 'Electronics and Communication Engineering', '85.9', '100', '0'), (9984, '14', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (9985, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '157', '319', '4', '116', 'Bangalore Institute of Technology', 'Computer Science', '82', '100', '21'), (9986, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '161', '328', '4', '116', 'None', 'Mechanical', '9.17', '10', '0'), (9987, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '570', '1350', '3', '114', 'MSRIT', 'Computer Science', '9.12', '10', '0'), (9988, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '153', '317', '3', '100', 'Sathyabama University', 'Mech & Prod', '82', '100', '24'), (9989, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '740', '550', '1290', '3', '95', 'MU', 'Electronics', '62', '100', '0'), (9990, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '3', '109', 'University of Mumbai', 'computer', '75', '100', '0'), (9991, '14', 'Reject', 'MS', 'Electronic and Telecommunication Engineering', 'Fall ', '2012', '790', '620', '1410', '3.5', '108', 'MU', 'Electronics and Telecommunication', '69', '100', '0'), (9992, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '164', '157', '321', '4', '114', 'NITK Surathkal', 'Mechanical', '8.86', '10', '24'), (9993, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '670', '1450', '5', '116', 'MU', 'Computer Science', '66.22', '100', '0'), (9994, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '164', '164', '328', '4', '112', 'Manipal Institue of Technology', 'Computer Sceince', '8.1', '10', '26'), (9995, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '740', '660', '1400', '3.5', '111', 'NED University Karachi', 'Electronic Engineering', '83', '100', '0'), (9996, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '149', '314', '3', '112', 'UPTU', 'CSE', '73.78', '100', '0'), (9997, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2013', '161', '149', '310', '3.5', '105', 'Gujarat Technological University', 'Electronics and Communication', '8.83', '10', '0'), (9998, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '156', '322', '3.5', '112', 'NIT Raipur', 'Information Technology', '8.34', '10', '0'), (9999, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '164', '146', '310', '3', '110', 'BITS Goa', 'Mechanical', '6.7', '10', '0'), (10000, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '152', '315', '3.5', '109', 'CEG', 'Computer Science and Engineering', '8.58', '10', '0'), (10001, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '162', '148', '310', '3.5', '99', 'IIT Hyderabad', 'Mechanical Engineering', '8', '10', '0'), (10002, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '159', '318', '4', '115', 'JNTU', 'Computer Science and Enigneering', '77.43', '100', '0'), (10003, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '160', '161', '321', '3', '112', 'University of Pune', 'Electronics and Telecommunications', '59.07', '100', '42'), (10004, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '550', '1310', '3', '108', 'Jaypee Institute of Information Technology', 'CSE', '7.5', '10', '0'), (10005, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '157', '323', '4', '104', 'NIT Warangal', 'Computer Science & Engineering', '8.76', '10', '54'), (10006, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '750', '570', '1320', '4.5', '110', 'VTU', 'COMPUTER SCIENCE', '82.75', '100', '0'), (10007, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '600', '1350', '3.5', '107', 'Fr. Conceicao Rodrigues College of Engineering', 'Computers', '62.72', '100', '0'), (10008, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '154', '320', '4.5', '109', 'Sardar Patel College of Engineering', 'Computer Engineering', '73.58', '100', '0'), (10009, '14', 'Reject', 'MS', 'Civil Engineering', 'Spring ', '2015', '161', '151', '312', '3.5', '102', 'Sardar Patel College of Engineering', 'Civil', '72', '100', '24'), (10010, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '500', '1280', '2.5', '96', 'University of Mumbai', 'Information Technology', '60.49', '100', '0'), (10011, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '162', '324', '4', '117', 'Siliguri Institute of Technology', 'Computer Science', '8.81', '10', '0'), (10012, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '3.5', '111', 'MU', 'IT', '65.6', '100', '37'), (10013, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '152', '319', '3', '106', 'MU', 'Mech', '76', '100', '0'), (10014, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '158', '317', '3.5', '113', 'Sri Venkateswara College of Engineering', 'CSE', '7.99', '10', '0'), (10015, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'MU', 'COMPUTER SCIENCE', '69.3', '100', '0'), (10016, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '166', '156', '322', '3.5', '107', 'PSG College of Technology', 'Electrical Engineering', '9.51', '10', '0'), (10018, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '450', '1200', '3', '96', 'VTU', 'CS', '75', '100', '0'), (10019, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '530', '1290', '3.5', '114', 'Amrita Vishwa Vidhyapeetham', 'Computer Science & Engineering', '7.2', '10', '0'), (10020, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '157', '321', '4', 'None', 'Pune University', 'Computer Engineering', '71', '100', '0'), (10021, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '620', '1420', '3', '112', 'The LNM Institute of Information Technology', 'Communication and computer engg', '9.19', '10', '0'), (10022, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '640', '1400', '3.5', '110', 'SASTRA', 'ECE', '8.54', '10', '0'), (10023, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '650', '1450', '4', '115', 'VNIT Nagpur', 'ECE', '9.12', '10', '0'), (10024, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '164', '153', '317', '3.5', '108', 'VIT', 'Electronics and instrumentation', '8.58', '10', '0'), (10025, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '168', '159', '327', '3.5', '112', 'Bangladesh University of Engineering & Technology', 'Electrical and Electronic Engineering', '3.94', '4', '0'), (10026, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '730', '600', '1330', '4', '113', 'BMSCE', 'telecommunication engineering', '9.4', '10', '0'), (10027, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10028, '14', 'Reject', 'MS', 'Electrical and Electronics', 'Fall ', '2012', '800', '530', '1330', '3', '105', 'MU', 'Electronics and Telecommunication', '71.37', '100', '0'), (10029, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '400', '1180', '3.5', '103', 'MU', 'Electronics and telecommunication', '73', '100', '0'), (10030, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '167', '154', '321', '4', '111', 'IIT Madras', 'Mechanical Engineering', '8.66', '10', '0'), (10031, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '640', '1440', '4', '112', 'COEP', 'Electronics and Telecommunication', '9.32', '10', '0'), (10032, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '740', '530', '1270', '3.5', '111', 'VIT University', 'Biomedical', '9.04', '10', '0'), (10033, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '154', '322', '3.5', '111', 'IIT (BHU) Varanasi', 'Mechanical', '8.25', '10', '12'), (10034, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '155', '323', '3.5', '110', 'IIT Allahabad', 'Computer Science', '8.9', '10', '0'), (10035, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '720', '570', '1290', '3.5', '116', 'MU', 'Computer Science', '78.04', '100', '0'), (10036, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '149', '312', '3.5', '111', 'JNTU', 'CSE', '78.3', '100', '12'), (10037, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '720', '500', '1220', '3.5', '105', 'VTU', 'Information Science', '82', '100', '0'), (10038, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '161', '322', '3.5', '108', 'C.S.V.T.U.', 'Computer Science and Engg', '8.56', '10', '0'), (10039, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '154', '324', '3', '97', 'ISM Dhanbad', 'Electrical Enfineering', '7.67', '10', '0'), (10040, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '790', '620', '1410', '4', '110', 'BIT Mesra', 'mechanical', '74', '100', '0'), (10041, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3', '101', 'UPTU', 'Electrical & Electronics Engineering', '77.72', '100', '0'), (10042, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '620', '1420', '4.5', '112', 'BITS Pilani', 'ComputerScience', '5.71', '10', '0'), (10043, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '640', '1420', '3.5', '108', 'Manipal Institue of Technology', 'Computer Science & Engineering', '3', '4', '0'), (10044, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '168', '154', '322', '3', '105', 'MDU', 'ECE(Hons)', '71', '100', '45'), (10045, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2011', '800', '640', '1440', '3.5', '114', 'NIT Durgapur', 'ECE', '8.05', '10', '0'), (10046, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '159', '321', '4', '109', 'PESIT', 'Information Science', '8.7', '10', '24'), (10047, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '167', '157', '324', '4', 'None', 'BITS Pilani', 'Electronics and Instrumentation', '8.14', '10', '0'), (10048, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '155', '321', '3.5', '111', 'DA-IICT', 'ICT', '8', '10', '0'), (10049, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '155', '320', 'None', 'None', 'CoE Trivandrum', 'Electrical & Electronics Engineering', '8.12', '10', '0'), (10050, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '154', '324', '4.5', '110', 'VIT University', 'Electronics And Communication', '9.21', '10', '0'), (10051, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3.5', '115', 'R V College of Engineering', 'Mechanical Engineering', '9.06', '10', '0'), (10052, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '168', '162', '330', '4', '114', 'Thapar University', 'Mechanical Engineering', '8.31', '10', '0'), (10053, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '153', '319', '3.5', '106', 'K J Somaiya College of Engiineering', 'Computers', '67', '100', '0'), (10054, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '4', '103', 'COEP', 'Computer Engineering & IT', '8.4', '10', '0'), (10055, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '800', '660', '1460', '4', '114', 'PICT', 'Information Technology', '3.51', '4', '0'), (10056, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '157', '321', '4.5', '113', 'Dr. Babasaheb Ambedkar Technological University Lonere', 'Chemical Engineering', '8.49', '10', '0'), (10057, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '800', '580', '1380', '3.5', '109', 'CEG', 'Computer Science & Engineering', '9.32', '10', '24'), (10058, '14', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '158', '317', 'None', 'None', 'Madras Institute of Technology', 'Computer Science', '7.762', '10', '0'), (10059, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '560', '1310', '5', '114', 'Kolhapur Institute of Technology', 'Computer Science and Engg', '65', '100', '0'), (10060, '14', 'Reject', 'MS', 'Sustainable enrgy and environment', 'Fall ', '2014', '168', '156', '324', '3', '116', 'IIT Roorkee', 'Mechanical Engineering', '8.5', '10', '0'), (10061, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10062, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '730', '480', '1210', '4', '114', 'MU', 'Electronics and Telecommunication', '64.87', '100', '0'), (10063, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '560', '1290', '3', '113', 'SSN College of Engineering', 'CSE', '85.26', '100', '0'), (10064, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10065, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '170', '158', '328', '4', '105', 'BITS Hyderabad', 'Mechanical Engineering', '9.66', '10', '6'), (10066, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '163', '328', '3', '115', 'GGSIPU', 'CSE', '70.65', '100', '0'), (10067, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '159', '320', '4', '114', 'MU', 'Information Technology', '60', '100', '0'), (10068, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '107', 'BITS Pilani', 'Computer science', '7.5', '10', '0'), (10069, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall', 'None', '164', '146', '310', '3', '97', 'VIT', 'ECE', '9.1', '10', '50'), (10070, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '156', '324', '4.5', '102', 'MIT College of Engineering', 'Information Technology', '63.12', '100', '0'), (10071, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2013', '165', '152', '317', '3', '108', 'NMIMS', 'Electronics And Telecommunications', '3', '4', '0'), (10072, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '170', '147', '317', '4', '99', 'Anna University', 'Electronics & Instrumentation Engineering', '8.98', '10', '0'), (10073, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '165', '150', '315', '3.5', '104', 'MU', 'Electronics and Telecommunication', '76', '100', '0'), (10074, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '4', '112', 'PICT', 'IT', '3.8', '4', '0'), (10075, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '550', '1330', '3.5', '114', 'NITAllahabad', 'Electrical', '8.54', '10', '0'), (10076, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '163', '330', '3.5', '113', 'NIT Srinagar', 'ECE', '8.57', '10', '0'), (10078, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2011', '780', '690', '1470', '3', '98', 'CEG', 'electrical and electronics', '6.25', '10', '0'), (10079, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '790', '600', '1390', '4', '112', 'NIT Silchar', 'Computer Science', '7.92', '10', '0'), (10080, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '580', '1380', '4.5', '115', 'NITT', 'Instrumentation and Control Engg', '8.55', '10', '0'), (10081, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '650', '1440', 'None', 'None', 'MSRIT', 'ECE', '9.39', '10', '0'), (10082, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '770', '530', '1300', '3', '92', 'PSG College of Technology', 'ECE', '9.26', '10', '0'), (10083, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '152', '320', '4', '109', 'Anna University', 'Information Technology', '78', '100', '0'), (10084, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '163', '145', '308', '4', '100', 'VIT Pune', 'Industrial Engineering', '8.97', '10', '0'), (10085, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '780', '680', '1460', '4', '110', 'Anna University', 'Mechanical', '85', '100', '0'), (10087, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '157', '325', '4.5', '119', 'MU', 'Electronics', '66.95', '100', '0'), (10088, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '161', '323', '3.5', '114', 'None', 'Mechanical Engineering', '7.8', '10', '0'), (10089, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', 'None', 'Netaji Subhas Institute of Technology', 'Manufacturing Processes and Automation Engineering', '77.9', '100', '0'), (10090, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '790', '600', '1390', '3.5', '100', 'Sardar Patel College of Engineering', 'Electronics and Telecommunication', '70', '100', '0'), (10091, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '161', '159', '320', '3.5', '111', 'VIT University', 'ECE', '8.58', '10', '0'), (10092, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '4', '106', 'Osmania University', 'Information Technology', '84', '100', '18'), (10093, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '148', '312', '3', '103', 'D J Sanghvi', 'Chemical Engineering', '70', '100', '0'), (10094, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '170', '161', '331', '4.5', '115', 'West Bengal University Of Technology', 'ECE', '8.66', '10', '12'), (10095, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '167', '146', '313', '3.5', '105', 'VIT', 'BTech CSE', '9.22', '10', '0'), (10096, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10097, '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '167', '156', '323', '3.5', '105', 'Government College of Engineering Amravati', 'Computer Science', '8.73', '10', '0'), (10098, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '800', '620', '1420', '3.5', '105', 'Osmania University', 'Mech', '8.47', '10', '0'), (10099, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Spring ', '2015', '159', '150', '309', '3.5', '104', 'VTU', 'Electronics & Telecommunication', '80', '100', '42'), (10100, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '159', '328', '4.5', '102', 'BITS Pilani', 'Electrical and Electronics Engineering', '8.04', '10', '2'), (10101, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '155', '322', '3.5', '116', 'BNMIT', 'ISE', '75', '100', '15'), (10102, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '165', '155', '320', '3', '103', 'BITS Pilani', 'Information Systems', '7.19', '10', '0'), (10103, '14', 'Reject', 'MS', 'Industrial Engineering', 'Spring ', '2013', '164', '154', '318', 'None', 'None', 'NIT Surat', 'Mechanical Engineering', '8.3', '10', '0'), (10104, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '164', '160', '324', '4', '116', 'VIT', 'Mechanical Engineering', '9.16', '10', '0'), (10105, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '149', '309', '3.5', '100', 'BITS Pilani', 'M.Sc(Tech) Information Systems', '7.17', '10', '0'), (10107, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '4.5', '99', 'Anna University', 'CSE', '81', '100', '0'), (10108, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '580', '1370', '3', '102', 'IIIT Hyderabad', 'Computer Science', '8.67', '10', '0'), (10109, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '158', '159', '317', '3', '109', "Lingaya's University", 'ECE', '7.98', '10', '0'), (10110, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '740', '540', '1280', '4', '105', 'NIT Warangal', 'Metallurgical and Materials Engineering', '9.01', '10', '0'), (10111, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '700', '460', '1160', '4', '101', 'Sri Venkateswara College of Engineering', 'ECE', '74', '100', '0'), (10112, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '166', '156', '322', '4', '99', 'PSG College of Technology', 'Mechanical Engineering', '8.86', '10', '0'), (10113, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '800', '580', '1380', '3', '109', 'PSG College of Technology', 'ECE', '9.29', '10', '0'), (10114, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '680', '1480', '4.5', '113', 'VIT University', 'Electronics and Instrumentation', '8.98', '10', '0'), (10115, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '152', '317', '3.5', '99', 'IITB MTech', 'CSE', '9.33', '10', '0'), (10116, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10117, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '159', '329', '3.5', '110', 'NIT Nagpur', 'Electronics and Communication', '8.93', '10', '42'), (10118, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '161', '331', '3.5', '118', 'National Institue of Technology Karnataka', 'Computer Science and engineering', '8.72', '10', '0'), (10119, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '650', '1450', '4', '112', 'MU', 'ELECTRONICS ENGINEERING', '76.01', '100', '0'), (10120, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '156', '142', '298', '3', '101', 'GITAM', 'Information Technology', '8.6', '10', '0'), (10121, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '167', '160', '327', '4.5', '115', 'Pune University', 'mechanical', '63', '100', '42'), (10122, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10123, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '157', '323', '4', '107', 'Madras Institute of Technology', 'Information Technology', '8.66', '10', '0'), (10124, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '800', '580', '1380', '4', '117', 'Anna University', 'Electronics and Instrumentation', '9.7647', '10', '0'), (10125, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '570', '1310', '4', '105', 'Rajiv Gandhi Univ of Tech', 'Mechanical Engineering', '75.38', '100', '0'), (10126, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2016', '164', '149', '313', '4', '100', 'Anna University', 'Computer Science', '8.89', '10', '21'), (10127, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '144', '302', '3.5', '103', 'JNTU', 'Electronics and Instrumentation', '78.87', '100', '0'), (10128, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2012', '770', '700', '1470', '4', 'None', 'SASTRA', 'mechanical', '7.55', '100', '0'), (10129, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '650', '1450', '4', '112', 'SSN College of Engineering', 'Electronics and Communication', '9', '10', '0'), (10130, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10131, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2010', '800', '550', '1350', '4', '98', 'PSG College of Technology', 'Electronics and Communications', '8.89', '10', '0'), (10132, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '790', '550', '1340', '4.5', '112', 'ITM Gurgaon', 'Electronics and Communication', '73.3', '100', '0'), (10133, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2014', '156', '147', '303', '3', '95', 'Osmania University', 'Mechanical', '67', '100', '69'), (10134, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '760', '600', '1360', '3.5', '114', 'VTU', 'Electronics and Communication', '80.04', '100', '0'), (10135, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '165', '153', '318', '4', '109', 'SJCE', 'Electronics and Communication', '67.2', '100', '49'), (10136, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '770', '590', '1360', '3', '102', 'PICT', 'Information Technology', '0', '0', '0'), (10137, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '157', '318', '5', '114', 'Anna University', 'CSE', '8.15', '10', '0'), (10138, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '530', '1330', '4', '102', 'Anna University', 'Electronics and Communication Engg.', '7.12', '10', '0'), (10140, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '156', '323', '3.5', '110', 'University of Mumbai', 'Computer Engineering', '68.9', '100', '0'), (10141, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '4', '105', 'HBTI', 'Computer Science & Engg', '82', '100', '0'), (10142, '14', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '660', '420', '1080', '3.5', '110', 'Amravati University', 'Electronics & Telecommunication', '3.64', '4', '0'), (10143, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '750', '610', '1360', '3', '99', 'Madras Institute of Technology', 'ECE', '8.5', '10', '0'), (10144, '14', 'Reject', 'MS', 'Electrical Engineering', 'Spring ', '2011', '800', '460', '1260', '3.5', '104', 'PSG College of Technology', 'Electrical and Electronics', '8.76', '10', '0'), (10145, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '790', '620', '1410', '4', '110', 'D J Sanghvi', 'EXTC', '73', '100', '0'), (10146, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '163', '152', '315', '3.5', '107', 'Delhi College Of Engineeing', 'ELECTRICAL ENGINEERING', '77', '100', '0'), (10147, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '161', '152', '313', '3.5', '104', 'VESIT', 'Computer Engineering', '73.55', '100', '31'), (10148, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '620', '1410', '3', '99', 'Anna University', 'CSE', '8.8', '10', '0'), (10149, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3', '102', 'University of Pune', 'Computer science', '67', '100', '0'), (10150, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '168', '332', '5', '119', 'Anna University', 'Computer Science', '8.34', '10', '19'), (10151, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '4', '117', 'MU', 'BE Information Technology', '66', '100', '0'), (10152, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '165', '152', '317', '3.5', '109', 'National Institute of Engineering', 'Mechanical', '8.9', '100', '0'), (10153, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '700', '1500', '4', '113', 'University of Pune', 'Information Technology', '62', '100', '0'), (10154, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '670', '1470', '3', '114', 'VIT Pune', 'Computer Engineering', '68', '100', '0'), (10155, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4', '105', 'NIT RKL', 'CSE', '8.51', '10', '0'), (10156, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '780', '660', '1440', '5', '102', 'Pune University', 'Electronics', '9.1', '10', '0'), (10158, '14', 'Reject', 'MS', 'Construction Management', 'Fall ', '2012', '800', '650', '1450', '4', 'None', 'BITS Pilani', 'civil', '6.54', '10', '0'), (10159, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2015', '167', '156', '323', '4', '112', 'Osmania University', 'Mechanical Engineering', '88.4', '100', '0'), (10160, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '166', '161', '327', '4', '112', 'Anna University', 'Computer Science', '8.45', '10', '0'), (10161, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '156', '326', '4', '115', 'NIT Rourkela', 'Electronics and Communication', '9.61', '10', '0'), (10162, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '600', '1300', '3.5', '110', 'MU', 'Computer Engineering', '62', '100', '0'), (10164, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '168', '150', '318', '3', '102', 'VIT University', 'Mechanical Engineering', '7.47', '10', '0'), (10165, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '630', '1420', '3.5', '104', 'VTU', 'Computer Science and Electronics', '8.47', '10', '0'), (10166, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10167, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '480', '1260', '3.5', '100', 'Sinhgad College of Engineering', 'Information Technology', '72', '100', '0'), (10168, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '170', '160', '330', '3', '113', 'VTU', 'BE MS', '8.5', '10', '18'), (10169, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '460', '1260', '4', '103', 'NIT Surat', 'Computer Engineering', '8.11', '10', '0'), (10170, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '148', '316', '3.5', '97', 'R V College of Engineering', 'ECE', '8.81', '10', '0'), (10171, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '149', '317', '3', '104', 'PICT', 'Computer Engg', '3.6', '4', '0'), (10172, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '100', 'Pune University', 'I.T.', '67.1', '100', '0'), (10173, '14', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2012', '780', '640', '1420', '4', '110', 'Sri Sairam Engineering College', 'ECE', '7.9441', '10', '0'), (10174, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '170', '155', '325', '3', '105', 'BITS Pilani', 'Electrical and Electronics', '7.23', '10', '0'), (10175, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10176, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '4', '116', 'PICT', 'Information Technology', '3.56', '4', '0'), (10177, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '153', '323', '3', '97', 'IIT Kharagpur', 'Electrical Engineering', '7.22', '10', '0'), (10178, '14', 'Reject', 'MS', 'Embedded systems', 'Fall ', '2012', '169', '162', '331', '4', '115', 'VTU', 'ECE', '8.43', '10', '0'), (10179, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '167', '157', '324', '4.25', 'None', 'IIT Ropar', 'Mechanical Engineering', '8.87', '10', '0'), (10180, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '158', '322', '3.5', '115', 'Anna University', 'Information technology', '74', '100', '0'), (10181, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '720', '1520', '4', '115', 'SSN College of Engineering', 'Computer Science and Engineering', '83', '100', '0'), (10182, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '680', '1480', '3.5', '117', 'IIT', 'ECE', '9.1', '10', '0'), (10183, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '153', '320', '4.5', '108', 'VIT Pune', 'Industrial Engineering', '8.54', '10', '24'), (10184, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '570', '1370', '3.5', '105', 'Rajiv Gandhi Technical University', 'IT', '78.69', '100', '0'), (10185, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10186, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3.5', '101', 'PICT', 'CS/IT', '3.23', '4', '0'), (10187, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '160', '155', '315', '4', 'None', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '6.8', '10', '60'), (10188, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '780', '620', '1400', '5.5', '114', 'University of Massachesetts Amherst', 'Computer Engineering', '3.63', '4', '0'), (10189, '14', 'Reject', 'MS', 'Aerospace Engineering', 'Fall ', '2012', '800', '670', '1470', '5', '115', 'Cochin University of Science and Technology', 'Mechanical Engg.', '76', '100', '0'), (10190, '14', 'Reject', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4.5', 'None', 'Amrita School of Engineering', 'Electrical and Electronics', '8.2', '10', '0'), (10191, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2008', '710', '540', '1250', '4', '267', 'University of Mumbai', 'Computers', '58.5', '100', '0'), (10192, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2014', '167', '159', '326', '3.5', '117', 'L D College Of Engineering', 'Civil Engineering', '8.49', '10', '0'), (10193, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '165', '164', '329', '4.5', '117', 'GITAM', 'Computer Science and Engineering', '7.83', '10', '0'), (10194, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '460', '1240', '4.5', '116', 'VIT', 'Information Technology', '9.36', '10', '0'), (10195, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '159', '323', '4.5', '115', 'Anna University', 'Computer Science and Engineering', '7.65', '10', '0'), (10196, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '620', '1420', '4.5', '105', 'BITS Pilani', 'Physics/EEE (Dual Degree)', '9.67', '10', '0'), (10197, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '510', '1300', '3', '105', 'Anna University', 'Computer Science', '9.3', '10', '0'), (10198, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2007', '800', '410', '1210', '5', '253', 'IT BHU', 'Electrical Engg', '8.41', '10', '0'), (10199, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '169', '161', '330', '3.5', '111', 'PSG College of Technology', 'Electronics and communication', '8.66', '10', '0'), (10201, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '161', '323', '3.5', '111', 'Pune University', 'Information Technology', '70', '100', '0'), (10202, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '3', '112', 'VNR VJIET', 'CSE', '74', '100', '0'), (10203, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '170', '149', '319', '3', '95', 'VJTI', 'Electronics', '8.22', '10', '12'), (10205, '14', 'Reject', 'MS', 'Biological Sciences Biotechnology ', 'Fall ', '2011', '800', '550', '1350', '4.5', '110', 'not IIT', 'CBE', '75', '100', '0'), (10206, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '160', '325', '3', '118', 'Thapar University', 'Computer Science', '9.61', '10', '0'), (10207, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '161', '325', '4', '114', 'Pune University', 'CS', '59', '100', '0'), (10208, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '680', '1480', '4', '107', 'NIT Nagpur', 'mechanical engg.', '8.17', '10', '0'), (10209, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10210, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '159', '329', 'None', '113', 'Lovely Professional University', 'CSE', '9.3', '10', '30'), (10211, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '159', '149', '308', '3', '104', 'Anna University', 'ECE', '79', '100', '0'), (10213, '14', 'Reject', 'MS', 'Operations Research', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Madras', 'Electrical Engineering', '7.1', '10', '0'), (10214, '14', 'Reject', 'MS', 'CS', 'Fall ', '2015', '170', '152', '322', '3', '112', 'Rajasthan Technical University', 'Computer Science', '75.7', '100', '48'), (10215, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '780', '620', '1400', '4', '96', 'SASTRA', 'ECE', '8.565', '10', '0'), (10216, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '161', '328', '4', '107', 'R V College of Engineering', 'Information Science and Engineering', '9.43', '10', '0'), (10217, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '152', '322', '3.5', '95', 'NIT Tirchy', 'CSE', '8.75', '10', '42'), (10218, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '162', '154', '316', '3.5', '110', 'MU', 'Mechanical', '73', '100', '0'), (10219, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10220, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '560', '1330', '3', '102', 'MU', 'Computer', '70.4', '100', '0'), (10222, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10223, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '162', '152', '314', '3.5', '103', 'Anna University', 'Electrical And Electronics Engineering', '7.96', '10', '0'), (10224, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2015', '169', '161', '330', '4.5', '116', 'BITS Pilani', 'Civil Engineering', '7.89', '10', '0'), (10225, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '550', '1340', '3', 'None', 'JNTU', 'Computer Science', '77.1', '100', '0'), (10226, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '800', '700', '1500', '4', '115', 'NIT Warangal', 'civil engg', '7.89', '10', '0'), (10227, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '111', 'PICT', 'Computer Science', '3.3', '4', '0'), (10228, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', 'None', 'BMSCE', 'Computer Science', '8.67', '10', '0'), (10229, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '163', '331', '4', '114', 'IIT BHU', 'Electronics Engineering', '8.04', '10', '0'), (10230, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '151', '312', '3.5', '106', 'Sardar Patel College of Engineering', 'Information Technology', '71.47', '100', '0'), (10231, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '169', '159', '328', '4', '115', 'Veermata Jijabai Technological Institute', 'Mechanical Engineering', '7.5', '10', '0'), (10232, '14', 'Reject', 'MS', 'Financial Engineering', 'Spring ', '2014', '161', '157', '318', '3.5', '99', 'Anna University', 'EEE', '82.4', '100', '0'), (10233, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '167', '155', '322', '4', '111', 'UPTU', 'Computer Science & Engineering', '68.52', '100', '0'), (10234, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '107', 'R V College of Engineering', 'Computer Science', '8.69', '10', '12'), (10235, '14', 'Reject', 'MS', 'Human Computer Interaction', 'Fall ', '2013', '165', '158', '323', '4', '115', 'VTU', 'Computer Science', '73', '100', '0'), (10236, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '800', '530', '1330', '3', '102', 'NIT Jamshedpur', 'Mechanical', '6.62', '10', '0'), (10237, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2008', '800', '550', '1350', '3', '107', 'Koneru Lakshmaiah College of Engineering', 'Electronics and Communication Engineering', '8.8', '10', '0'), (10238, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '164', '160', '324', '3', '106', 'VIT', 'ECE', '8.5', '10', '0'), (10239, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '4.5', '108', 'Anna University', 'CSE', '9.26', '10', '10'), (10240, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '3', '102', 'PESIT', 'Computer Science', '8.72', '10', '0'), (10241, '14', 'Reject', 'MS', 'Materials Science & Engineering', 'Fall ', '2011', '800', '610', '1410', '4.5', '108', 'VNIT Nagpur', 'Metallurgy and Material Science Engg', '7.72', '10', '0'), (10242, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2012', '780', '570', '1350', '3.5', '116', 'VIT', 'Mechanical', '8.23', '10', '0'), (10243, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '154', '321', '4', '114', 'SJCE', 'CS&E;', '8.69', '10', '0'), (10244, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10245, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2014', '167', '152', '319', '3', '108', 'Government College of Engineering Aurangabad', 'Mechanical', '7.976', '10', '0'), (10246, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '720', '1520', '4.5', '114', 'MU', 'Computers', '69.12', '100', '0'), (10247, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4.5', '116', 'BITS Pilani', 'Computer Science', '8.45', '10', '0'), (10248, '14', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2015', '161', '158', '319', '4', '116', 'University of Mumbai', 'Chemical Engineering', '64', '100', '10'), (10249, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '150', '315', '4', '103', 'R V College of Engineering', 'CSE', '8.95', '10', '0'), (10250, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '800', '470', '1270', '3.5', '110', 'NIT - Bhopal', 'ECE', '7.99', '10', '0'), (10251, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '154', '316', '3', '109', 'Sri Venkateswara College of Engineering', 'Computer Science Engineering', '7.7', '10', '0'), (10252, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '169', '150', '319', '4', '107', 'BITS Pilani', 'Computer Science', '7.5', '10', '0'), (10253, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2006', '800', '650', '1450', '5.5', '290', 'MVSR', 'Production Engineering', '84', '100', '0'), (10254, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '500', '1270', '3.5', '95', 'Anna University', 'cse', '84', '100', '0'), (10255, '14', 'Reject', 'MS', 'physics', 'Fall ', '2013', '164', '151', '315', '3.5', '112', 'University of Calcutta', 'Physics', '58.83', '100', '0'), (10256, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '163', '162', '325', '4', '119', 'NITC', 'Computer Science', '8.17', '10', '0'), (10257, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2011', '720', '490', '1210', '3.5', '105', 'BMSCE', 'ECE', '79', '100', '0'), (10258, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '152', '314', '3.5', '107', 'VTU', 'Computer Science and Engineering', '75', '100', '36'), (10259, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10260, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '165', '154', '319', 'None', '106', 'GGSIPU', 'IT', '78', '100', '0'), (10261, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '780', '640', '1420', '3', '104', 'NIT', 'Mechanical Engineering', '9.1', '10', '0'), (10262, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '150', '316', '3.5', '107', 'GGSIPU', 'IT', '79', '100', '0'), (10263, '14', 'Reject', 'MS', 'Information Technology', 'Fall ', '2013', '168', '161', '329', '4.5', '116', 'BMSCE', 'Telecommunication Engineering', '73.91', '100', '0'), (10264, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '770', '660', '1430', '4', '113', 'MU', 'Mechanical Engineering', '66', '100', '0'), (10265, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '78', '470', '548', '4', '108', 'SSN College of Engineering', 'ELECTRONICS AND COMMUNICATIONSW', '80', '100', '0'), (10266, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '150', '312', '3.5', '98', 'K J Somaiya College of Engiineering', 'Information Technology', '65.6', '100', '0'), (10267, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', 'None', '114', 'PESIT', 'Information Science', '9.43', '10', '0'), (10269, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '4', '113', 'VIT', 'Information Technology', '8.6', '10', '0'), (10270, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '167', '158', '325', '4', '111', 'MSRIT', 'Electrical and Electronics Enginnering', '7.84', '10', '0'), (10271, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '152', '316', '4', '111', 'SSN College of Engineering', 'Mechanical Engg', '8.539', '10', '0'), (10272, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2011', '740', '590', '1330', '3.5', '107', 'CEG', 'Mechanical engineering', '7.27', '10', '0'), (10273, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '160', '149', '309', '4', '99', 'Sri Jayachamarajendra College of Engineering', 'Electronics and Communication', '9.18', '10', '0'), (10275, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '167', '147', '314', '3', '97', 'R V College of Engineering', 'Electronics and Communication', '9.13', '10', '0'), (10277, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '152', '322', '4', '103', 'PESIT', 'computer science', '73.88', '100', '0'), (10278, '14', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '800', '560', '1360', '3.5', '108', 'CEG', 'ECE', '8.908', '10', '0'), (10279, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '800', '580', '1380', '3.5', '108', 'NIT Karnataka', 'NIT Karnataka Surathkal', '7.67', '10', '0'), (10280, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '3.5', '111', 'IIIT Allahabad', 'CS', '8.52', '10', '24'), (10281, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '162', '154', '316', '4', '104', 'NIT - Surat', 'Mechanical Engineering', '8.61', '10', '0'), (10282, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4.5', '115', 'SJCE', 'Computer Science', '8.8', '10', '41'), (10283, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '162', '151', '313', '3.5', '98', 'SSN College of Engineering', 'Electronics and Communication', '86.2', '100', '0'), (10284, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '152', '319', '3.5', 'None', 'IIT Madras', 'Mechanical', '8.7', '10', '0'), (10285, '14', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2012', '770', '570', '1340', 'None', 'None', 'Sri Venkateswara College of Engineering', 'Electronics and Communication', '6.6', '10', '0'), (10286, '14', 'Reject', 'MS', 'Chemical Engineering', 'Fall ', '2012', '780', '600', '1380', '4', '108', 'D J Sanghvi', 'Chemical Engineering', '67.34', '100', '0'), (10287, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '700', '1470', '4', '119', 'VTU', 'CS', '75', '100', '0'), (10288, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10290, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '163', '151', '314', '3.5', '104', 'VESIT', 'IT', '62', '100', '0'), (10291, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '167', '155', '322', '4', '107', 'NIT Calicut', 'Mechanical', '9.36', '10', '20'), (10292, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '152', '313', '3.5', '104', 'VTU', 'Computer Science', '82.5', '100', '0'), (10293, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2013', '166', '163', '329', 'None', '111', 'PSG College of Technology', 'Mechanical Engineering', '8.8', '10', '0'), (10295, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '161', '329', '4', '109', 'VTU', 'Information Science', '71.08', '100', '72'), (10296, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '155', '321', '3.5', '106', 'CMRIT', 'Computer Science', '73', '100', '0'), (10297, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3', '104', 'VIT University', 'Computer Science', '9.2', '10', '0'), (10298, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '144', '308', '3.5', '99', 'PESIT', 'Information Science & Engineering', '8.43', '10', '0'), (10300, '14', 'Reject', 'MS', 'Electronics and Communication', 'Spring ', '2012', '800', '570', '1370', '3', '100', 'NIT Jaipur', 'Electronics and Communication Engg.', '8.51', '10', '0'), (10301, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2012', '800', '600', '1400', '3.5', 'None', 'BITS Goa', 'Electronics and Instrumentation', '8.8', '10', '0'), (10302, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10303, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '610', '1410', '5', '102', 'VTU', 'CSE', '73', '100', '0'), (10304, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '5', '116', 'DA-IICT', 'Information and Communication Technology', '8.48', '10', '0'), (10305, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '163', '148', '311', '3', '94', 'VTU', 'Mech', '8.94', '10', '0'), (10306, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '152', '170', '322', '3.5', '107', 'VTU', 'Electronics and communication', '9', '10', '0'), (10307, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '168', '153', '321', '4', '113', 'VIT', 'CSE', '8.83', '10', '0'), (10308, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '152', '318', '4', '111', 'NITK Surathkal', 'Electronics & Communications Engg', '8.45', '10', '15'), (10309, '14', 'Reject', 'MS', 'Industrial Engineering', 'Fall ', '2013', '730', '670', '1400', '3.5', '101', 'CEG', 'Mechanical', '8.61', '10', '0'), (10310, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '4', '115', 'VIT University', 'Computer Science', '8.8', '10', '0'), (10311, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10312, '14', 'Reject', 'MS', 'Bioinformatics', 'Fall ', '2011', '730', '470', '1200', '3.5', '107', 'BITS Pilani', 'Biological Sciences and Computer Science (Dual)', '7.86', '10', '0'), (10313, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '640', '1440', '5', '113', 'MU', 'Electrical Engineering', '8.3', '10', '0'), (10314, '14', 'Reject', 'MS', 'electronics', 'Fall ', '2012', '740', '530', '1270', '3.5', '106', 'MU', 'Electronics', '68.5', '100', '0'), (10315, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '780', '660', '1440', '4.5', '109', 'MU', 'Computer Engineering', '57', '100', '0'), (10316, '14', 'Reject', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10317, '14', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '168', '151', '319', '3.5', '94', 'NIT Karnataka', 'Electronics and Communication Engineering', '8.98', '10', '34'), (10318, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10319, '14', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '164', '157', '321', '3', '103', 'NIT Kurukshetra', 'ECE', '8.41', '10', '0'), (10320, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '650', '1450', '4.5', '115', 'D j Sanghvi', 'Computer', '75.98', '100', '0'), (10321, '14', 'Reject', 'MS', 'Civil Engineering', 'Fall ', '2012', '170', '148', '318', '3.5', '101', 'IIT BHU', 'civil engineering', '7.68', '10', '0'), (10322, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '540', '1330', '3.5', '106', 'IIIT Allahabad', 'Information Technology', '8.5', '10', '0'), (10323, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '152', '316', '3.5', '107', 'VIT', 'Computer Science', '8.9', '10', '0'), (10324, '14', 'Reject', 'MS', 'Computer Science', 'Fall', 'None', '166', '155', '321', '3.5', '104', 'The LNM Institute of Information Technology', 'CSE', '7.66', '10', '0'), (10325, '14', 'Reject', 'MS', 'Computational Science and Engineering', 'Fall ', '2014', '167', '164', '331', '4', '115', 'VIT', 'Mechanical Engineering (Energy Specialization)', '8.53', '10', '0'), (10326, '14', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2012', '159', '151', '310', '3.5', '106', 'SRM', 'Electronics & Communication Engineering', '8.724', '10', '0'), (10327, '14', 'Reject', 'MS', 'Computer Engineering', 'Spring ', '2013', '800', '680', '1480', '3.5', '109', 'MU', 'Elec. and Telecommunications', '67.85', '100', '0'), (10328, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '730', '1530', '5.5', '290', 'MU', 'Computer Engg.', '63', '100', '0'), (10329, '14', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '470', '1270', '3', 'None', 'VJTI', 'Computer Technology', '9.1', '10', '0'), (10330, '14', 'Reject', 'MS', 'Mechanical Engineering', 'Fall', '2017', '170', '150', '320', '3.5', '105', 'BIT Mesra', 'Mechanical Engineering', '80.02', '100', '0'), (10331, '15', 'Admit', 'MS', 'urban and regional planning', 'Fall ', '2015', '168', '156', '324', '4.5', '118', 'School of Planning and Architecture New Delhi India', 'Architecture', '74', '100', '0'), (10332, '15', 'Admit', 'MS', 'Cell and Molecular Biology', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'NIT Calicut', 'Biotechnology', '9.1', '10', '0'), (10333, '15', 'Admit', 'MS', 'Architecture', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Harvard University', 'Graduate School of Design', '0', '0', '0'), (10334, '15', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '159', '160', '319', '4', '111', 'R V College of Engineering', 'Computer Science', '74', '100', '0'), (10335, '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'IIT Kharagpur', 'Electrical Engg', '8.42', '10', '0'), (10336, '15', 'Admit', 'MS', 'Electronics and Communication', 'Fall', 'None', '158', '149', '307', '4', 'None', 'Indian Institute of Information and Technology design and manufacturing', 'ECE', '8', '10', '0'), (10337, '15', 'Admit', 'MS', 'physics', 'Fall ', '2011', '800', '540', '1340', '4.5', '113', 'BITS Pilani', 'Department of Physics', '8.79', '10', '0'), (10338, '15', 'Reject', 'MS', 'Pharmacology', 'Fall ', '2014', '145', '159', '304', '3.5', 'None', 'Nirma Institute of Technology', 'Pharmacy', '9.16', '10', '0'), (10339, '15', 'Reject', 'MS', 'environmental engineering', 'Fall ', '2013', '163', '154', '317', '4', '113', 'ISM Dhanbad', 'Environmental Science and Engineering', '8.94', '10', '0'), (10340, '15', 'Reject', 'MS', 'Biomedical Engineering', 'Fall ', '2011', '800', '700', '1500', '4.5', '114', 'Manipal Institue of Technology', 'ECE', '9.58', '10', '0'), (10341, '15', 'Reject', 'MS', 'physics', 'Fall ', '2011', '800', '530', '1330', '4.5', '115', 'BITS Pilani', 'Physics Electrical and Electronics', '9.17', '10', '0'), (10342, '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2011', '800', '510', '1310', '3.5', '94', 'BITS Goa', 'E.E', '7.21', '10', '0'), (10344, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '780', '550', '1330', '1330', '112', 'BITS Goa', 'Information Systems', '8.6', '10', '0'), (10345, '15', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2013', '168', '162', '330', '5', '116', 'BIT Mesra', 'ECE', '9.11', '10', '0'), (10346, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '161', '158', '319', '4', '107', 'VIT University', 'B.Tech Information Technology', '8.98', '10', '0'), (10347, '15', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10348, '15', 'Reject', 'MS', 'optics', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'electronics and communication engg.', '75', '100', '0'), (10349, '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2006', '790', '560', '1350', '5.5', '283', 'Delhi College Of Engineeing', 'Electronics and Communication engg', '74', '100', '0'), (10350, '15', 'Reject', 'MS', 'Biostatistics', 'Fall ', '2011', '800', '670', '1470', 'None', '115', 'Indian Statistical Institute', 'Mathematical Statistics and Probability', '0', '0', '0'), (10351, '15', 'Reject', 'MS', 'Learning Sciences', 'Fall ', '2011', '720', '630', '1350', '3.5', '112', 'University of Delhi', 'English Hons.', '0', '0', '0'), (10352, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '165', '165', '330', '5.5', 'None', 'University of Cambridge', 'Computer Laboratory', '0', '0', '0'), (10353, '15', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani', 'EEE', '8.1', '100', '0'), (10354, '15', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '700', '1490', '5', '119', 'VTU', 'Computer Science and Engineering', '72.5', '100', '0'), (10355, '15', 'Reject', 'PhD', 'Electronics & Communication', 'Fall', '2013', '166', '152', '318', '3.5', '104', 'BITS Pilani, Pilani Campus', 'EEE', '8.1', '10', '0'), (10356, '16', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall', '2018', '155', '147', '302', '4', '101', 'R.M.K. Engineering College', 'ECE', '8.11', '10', '15'), (10357, '16', 'Admit', 'MS', 'Civil Engineering', 'Fall', '2016', '161', '148', '309', '3.5', '102', 'RV College of Engineering', 'Civil Engineering', '8.44', '10', '0'), (10358, '17', 'Reject', 'Masters', 'Computer Science', 'Fall', '2016', '166', '144', '310', '3', '92', 'Shri guru govind singh college of engineering, nanded', 'Computer Science', '8.59', '10', '0'), (10359, '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2018', '167', '152', '319', '3', '108', 'Shri Ramdeobaba College of Engineering', 'Mechanical Engineering', '8.43', '10', '18'), (10360, '18', 'Admit', 'MS', 'Industrial Engineering', 'Fall', '2015', '167', '157', '324', '0', '102', '-1', '-1', '-1', '-1', '0'), (10361, '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10362, '19', 'Reject', 'MS', 'Civil Engineering', 'Fall', '2019', '160', '143', '303', '4.5', '93', 'AP Shah Institute Of Technology, Thane', 'Civil Engineering', '7.22', '10', '6'), (10364, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '166', '156', '322', '3', '105', 'Delhi College Of Engineeing', 'Computer Science', '0', '0', '0'), (10365, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '570', '1370', '3', '100', 'GITAM', 'Computer Science', '9.21', '10', '0'), (10366, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '167', '158', '325', '4', '115', 'Maharaja Agrasen Institute Of Technology', 'CSE', '71.7', '100', '7'), (10367, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '500', '1300', '3', '97', 'Panjab University', 'BE(CS)', '67.4', '100', '0'), (10368, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '690', '1490', '4.5', '117', 'BITS Goa', 'Electronics & Instrumentation Physics', '0', '0', '0'), (10369, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '48', '34', '82', '5', '100', 'NIT Surat', 'Mech Engg', '64', '100', '0'), (10370, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '790', '660', '1450', '3.5', '108', 'Harcourt Butler Technological Institute', 'CSE', '72.2', '100', '0'), (10371, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2010', '800', '480', '1280', '4', '104', 'MU', 'Computer Dept.', '68', '100', '0'), (10372, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '760', '570', '1330', '3', '101', 'MU', 'IT', '57', '100', '0'), (10373, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '160', '322', '3', '109', 'Panjab University', 'Computer Science', '76', '100', '0'), (10374, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '640', '1440', '4.5', '114', 'IIT Roorkee', 'Electrical Engineering', '7.1', '10', '0'), (10375, '20', 'Admit', 'MS', 'CS', 'Fall ', '2015', '162', '156', '318', '3.5', '109', 'Anna University', 'CS', '7.33', '10', '0'), (10376, '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2011', '680', '470', '1150', 'None', '102', 'Himachal Pradesh University/UIIT', 'Information Technology', '73.6', '100', '0'), (10377, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '157', '321', '4', '106', 'MU', 'Computer Engg.', '68', '100', '0'), (10379, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '770', '410', '1180', '3.5', '111', 'Pune University', 'Computer Engineering', '64', '100', '0'), (10380, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '440', '1230', '3.5', '104', 'VIT', 'Information Technology', '8', '10', '0'), (10381, '20', 'Admit', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2015', '164', '155', '319', '3', '110', 'COEP', 'Electrical Engineering', '7.23', '10', '10'), (10382, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '780', '670', '1450', '4', '111', 'RAIT', 'extc', '57', '100', '0'), (10383, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '156', '319', 'None', 'None', 'Panjab University', 'Information Technology', '70.2', '100', '0'), (10384, '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '150', '148', '298', '4', '104', 'None', '0', '77', '100', '0'), (10385, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '155', '322', '4.5', '109', 'Maharaja Agrasen Institute Of Technology', 'B.Tech (Computer Science)', '76', '100', '0'), (10386, '20', 'Admit', 'MS', 'Organizational Behavior', 'Spring ', '2014', 'None', 'None', '0', 'None', 'None', 'Penn State', 'Psychology/Business', '3.9', '4', '0'), (10387, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '490', '1270', '3', '102', 'Malwa Institute', 'Computer Science', '67', '100', '0'), (10388, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '160', '329', '4.5', '111', 'NIT-Trichy', 'ECE', '7.82', '10', '24'), (10389, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '590', '1380', '3.5', '100', 'Sardar Patel College of Engineering', 'Computer engineering', '65.5', '100', '0'), (10390, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '159', '151', '310', '3', '93', 'VTU', 'IS', '80', '100', '0'), (10391, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '670', '1450', '3', '93', 'Harcourt Butler Technological Institute', 'Biochemical Engineering', '73', '100', '0'), (10392, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10393, '20', 'Admit', 'MS', 'Information Science', 'Fall ', '2010', '800', '710', '1510', '6', '119', 'Indian Statistical Institute', 'Systems Science and Informatics Unit', '75.1', '100', '0'), (10394, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '162', '168', '330', '4.5', '116', 'Pune University', 'Computer Engineering', '59', '100', '0'), (10395, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '640', '1440', '4', '114', 'West Bengal University Of Technology', 'Information Tecdhnology', '8.03', '10', '0'), (10396, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2014', '161', '152', '313', '4', '97', 'VIT University', 'ECE', '8.26', '10', '0'), (10397, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '770', '550', '1320', '3.5', '106', 'Galgotia college of engineering and technology II UPTU', 'Computer science', '72', '100', '0'), (10398, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '620', '1400', '3.5', '114', 'NMIMS', 'Computer Engineering', '3.41', '4', '0'), (10399, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '153', '319', '4', '113', 'University of Pune', 'Computer Engineering Dept.', '64.6', '100', '3'), (10400, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '510', '1310', '3.5', '100', 'MDU', 'IT', '69', '100', '0'), (10401, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '590', '1390', '3', 'None', 'Umiversity of mumbai', '0', '61', '100', '0'), (10402, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '164', '151', '315', 'None', '101', 'None', 'CS', '72', '100', '64'), (10403, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '168', '149', '317', '4', '107', 'ITM University Gurgaon', 'CS', '9.01', '10', '6'), (10404, '20', 'Admit', 'MS', 'Aerospace Engineering', 'Fall ', '2015', '152', '149', '301', '3', '95', 'PSG College of Technology', 'BIOTECHNOLOGY', '8.2', '100', '0'), (10405, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '670', '1460', '4', '116', 'GGSIPU', 'IT', '76', '100', '0'), (10406, '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2011', 'None', 'None', '0', '3', '95', 'VESIT', 'Electronics and Telecom', '0', '0', '0'), (10407, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '630', '1430', '4', '120', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer Engineering', '66.67', '100', '0'), (10408, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '790', '570', '1360', '4', '283', 'VTU', 'Information Science', '74.5', '100', '0'), (10409, '20', 'Admit', 'MS', 'physical therapy', 'Fall ', '2011', '580', '530', '1110', '3.5', '116', 'Christian Medical College Vellore', '0', '3.96', '4', '0'), (10410, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '630', '1430', '3.5', '111', 'MU', 'Computer Science', '64', '100', '0'), (10411, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '730', '520', '1250', '3.5', '104', 'SSN College of Engineering', '0', '75', '100', '0'), (10412, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '153', '321', '5', '106', 'UPTU', 'CS', '70', '100', '0'), (10413, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '4', '110', 'NIT Calicut', 'CSE', '6.91', '10', '0'), (10414, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '540', '1320', '3', '95', 'Jaypee Institute of Information Technology', 'computer science', '6.83', '10', '0'), (10415, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '710', '540', '1250', '4', '103', 'Pune University', '0', '0', '0', '0'), (10416, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10417, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '168', '158', '326', 'None', '115', 'Cochin University of Science and Technology', 'Computer Science and Engineering', '75', '100', '0'), (10418, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '490', '1290', '3', 'None', 'None', '0', '0', '0', '0'), (10419, '20', 'Admit', 'MS', 'International Affairs.', 'Fall ', '2013', '740', '600', '1340', '4', '116', 'University of Mumbai', 'Engineering(Information Technology)', '58', '100', '0'), (10420, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '750', '580', '1330', '5.5', '112', 'Anna University', 'Information Technology', '81', '100', '0'), (10421, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2009', '800', '580', '1380', '4', '111', 'PICT', 'Information Technology', '3.273', '4', '0'), (10422, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '690', '600', '1290', '3.5', '94', 'K J Somaiya College of Engiineering', 'Computer Science', '64', '100', '0'), (10423, '20', 'Admit', 'MS', 'Information Technology', 'Fall ', '2011', '800', '580', '1380', '5', '109', 'Shanghai Institute of Foreign Trade', 'Electronic commerce', '3.3', '4', '0'), (10424, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '4', 'None', 'Western Michigan University', 'Computer Science', '3.2', '4', '0'), (10425, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '164', '146', '310', '3', '91', 'JNTU', 'Electrical Engineering', '78.33', '100', '0'), (10426, '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2014', '162', '138', '300', '3', '84', 'Anna University', 'mechanical', '7.8', '10', '0'), (10427, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '630', '1360', '3', '97', 'VJTI', 'Computer Engineering', '7.8', '10', '0'), (10428, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', 'None', 'None', '0', 'None', 'None', 'Andhra University', 'CS', '75', '100', '0'), (10429, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'None', 'computer science', '72', '100', '0'), (10430, '20', 'Admit', 'MS', 'Interaction Design', 'Fall ', '2015', 'None', 'None', '0', 'None', '107', 'None', '0', '0', '0', '0'), (10431, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10432, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '167', '154', '321', '3', '100', 'NIT Nagpur', 'Computer Science and Engineering', '8.39', '10', '0'), (10433, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3.5', '100', 'VTU', 'CS', '65', '100', '0'), (10434, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '540', '1230', '4', '115', 'VTU', 'Electronics and Communications Engineering', '68.76', '100', '0'), (10435, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '760', '520', '1280', '3', '97', 'Not so reputed ..', 'Electrical E', '3.97', '4', '0'), (10436, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '162', '147', '309', '3.5', '100', 'K J Somaiya College of Engiineering', 'I.T.', '64', '100', '0'), (10437, '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '161', '148', '309', '3', '97', 'WBUT', 'ECE', '7', '10', '0'), (10438, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3', '100', 'Charotar University of Science and Technology', 'Electronics & Communication', '8.85', '10', '36'), (10439, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '160', '322', '4', '114', 'MU', 'Information Technology', '54', '100', '12'), (10440, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '168', '125', '293', '3.5', '104', 'Pune University', 'E&TC;', '55', '100', '0'), (10441, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '157', '152', '309', '3.5', '109', 'MU', 'I.T.', '54', '100', '0'), (10442, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '163', '157', '320', '5', '112', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.98', '10', '0'), (10443, '20', 'Admit', 'MS', 'MIS', 'Fall', 'None', '166', '155', '321', '3', '108', 'IIIT Allahabad', 'IT', '8.8', '10', '0'), (10444, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '690', '550', '1240', 'None', '94', 'Sardar Patel College of Engineering', 'Computers', '67.14', '100', '0'), (10445, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '4.5', '104', 'Osmania University', 'CSE', '87.6', '100', '0'), (10446, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '163', '158', '321', '4', '99', 'Amity University', 'Information Technology', '7.55', '10', '0'), (10447, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '710', '600', '1310', '3.5', 'None', 'North Dakota State University', 'ECE', '3.1', '4', '0'), (10448, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '590', '1350', '4', '107', 'Nirma Institute of Technology', 'Computer Engineering', '7.5', '10', '0'), (10449, '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2014', '155', '150', '305', '3.5', '104', 'BITS Pilani', 'EEE', '7.22', '100', '0'), (10451, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '165', '149', '314', '4', '105', 'Anna University', 'ECE', '73.4', '100', '0'), (10452, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '520', '1310', '4', '109', 'VESIT', 'Computer Science', '69', '100', '0'), (10453, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '163', '157', '320', '4', '109', 'Punjabi University', 'Computer', '6.55', '10', '0'), (10456, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '760', '510', '1270', '5', '98', 'Rajiv Gandhi Institute Of Technology', 'Instrumentation', '60.56', '100', '0'), (10457, '20', 'Admit', 'MS', 'Journalism', 'Fall ', '2015', '161', '162', '323', '4.5', '115', 'Visvesvaraya NIT Nagpur', 'Electronics and Communication Engineering', '7.36', '10', '66'), (10458, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '560', '1340', '5', '114', 'MU', 'IT', '63.2', '100', '0'), (10459, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '640', '550', '1190', '3', '109', 'PTU', 'Electrical Engineering', '76.3', '100', '0'), (10460, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '660', '1460', '3.5', '103', 'VIT', 'Telecommunication', '8.76', '10', '0'), (10461, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '750', '450', '1200', '3', '90', 'Andhra University', 'Information Technology', '86', '100', '0'), (10462, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '560', '1360', '4', '102', 'MU', 'Computer Engineering', '65', '100', '0'), (10463, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2011', '770', '670', '1440', '3.5', '114', 'UPTU', 'CS', '0', '0', '0'), (10464, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '600', '1400', '5', '114', 'NIT Tirchy', 'Electrical and Electronics Engineering', '7.8', '10', '0'), (10465, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '390', '1190', '3', '97', 'UIR', 'MIS', '3.67', '4', '0'), (10466, '20', 'Admit', 'MS', 'Electrical & Computer Engineering', 'Fall ', '2015', '161', '157', '318', '4.5', '114', 'NUST', 'Electrical and Power Engineering Department - Electronics Engineering', '3.13', '4', '3'), (10467, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '590', '1330', '4', '110', 'None', '0', '0', '100', '0'), (10468, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '160', '148', '308', '3', 'None', 'BPUT', '0', '7.4', '10', '0'), (10469, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '600', '1400', '3.5', '108', 'ITM Gurgaon', 'Electronics and Communications', '67', '100', '0'), (10470, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '153', '318', '3', '108', 'Symbiosis Institute of Technology', 'Computer Science', '3.305', '4', '8'), (10471, '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2012', '750', '500', '1250', '4.5', '111', 'VIT University', 'B.Tech Bioinformatics', '8.88', '10', '0'), (10472, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '540', '620', '1160', '3.5', '273', 'MU', 'Computer Engg', '0', '0', '0'), (10473, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '500', '1300', '3.5', '109', 'CEG', 'Computer Science and Engineering', '7.9', '10', '0'), (10474, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'MU', 'Information Technology', '0', '0', '0'), (10475, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '770', '540', '1310', '4', '112', 'Vishwakarma Institute of Technology', 'Computer', '64', '100', '0'), (10476, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '510', '1310', '3.5', '104', 'Anna University', 'Computer Science', '74', '100', '0'), (10478, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3', '103', 'IET DAVV', 'Computer engineering', '71', '100', '0'), (10479, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', 'None', 'None', '0', 'None', 'None', 'Ecole des Mines', 'Computer Science', '0', '0', '0'), (10480, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '800', '550', '1350', '3.5', '102', 'None', 'CS', '72', '100', '0'), (10481, '20', 'Admit', 'MS', 'Computer Engineering', 'Spring ', '2015', '162', '151', '313', '3.5', '104', 'JNTU', 'ECE', '70', '100', '0'), (10482, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '161', '147', '308', '3', '100', 'Anna University', 'B.E in Computer Science', '8.51', '10', '0'), (10483, '20', 'Admit', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '150', '310', 'None', '110', 'Anna University', 'ECE', '8.46', '10', '16'), (10484, '20', 'Admit', 'MS', 'Mechanical Engineering', 'Fall ', '2014', '161', '145', '306', '3.5', '98', 'JSS Noida', 'mechanical', '0', '0', '0'), (10485, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '162', '152', '314', 'None', '112', 'SRKNEC Nagpur', 'Electronics', '63', '100', '0'), (10486, '20', 'Admit', 'MS', 'Real Estate Finance & Development', 'Fall ', '2011', '800', '320', '1120', '3.5', '104', 'NIT Warangal', 'Civil Engineering', '7.3', '10', '0'), (10487, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3', '100', 'None', '0', '0', '0', '0'), (10488, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '166', '168', '334', '4.5', 'None', 'University of Mumbai', 'Electronics & Telecommunications', '66', '100', '0'), (10489, '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2015', '163', '152', '315', '3.5', '113', 'Maharishi Dayanand University', 'Electronics and Communication Engineering', '3.65', '4', '0'), (10490, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '165', '158', '323', '3.5', '112', 'Thapar University', 'Computer Science', '7.91', '10', '38'), (10491, '20', 'Admit', 'MS', 'CS', 'Spring ', '2015', '164', '153', '317', '3.5', 'None', 'Manipal Institue of Technology', 'Information Technology', '7.67', '10', '0'), (10492, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '570', '1320', '4', '113', 'University of Pune', 'Computer Engineering', '61', '100', '0'), (10493, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '540', '1340', '3', '109', 'Sardar Patel University', 'I.T', '9.3', '10', '0'), (10494, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '780', '550', '1330', '2.5', '99', 'MU', 'IT', '62', '100', '0'), (10495, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10497, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2011', '800', '590', '1390', '3', '100', 'IP University Delhi', 'CSE', '74', '100', '0'), (10498, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '293', '141', '434', '3', 'None', 'dr d.y patil institute of engineering and techonology', 'electronics', '55', '100', '0'), (10499, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '440', '1210', '4', '105', 'MU', 'Information Technology', '65', '100', '0'), (10500, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '158', '324', '3', '111', 'BITS Goa', 'Computer Science', '7.14', '10', '12'), (10501, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '780', '470', '1250', '3.5', '106', 'D J Sanghvi', 'Electronics', '75.18', '100', '0'), (10502, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '790', '530', '1320', '4', '112', 'Heritage Institute of Technology Kolkata', 'Computer Science and Engineering', '9.19', '10', '0'), (10503, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '450', '1250', '3.5', '105', 'JNVU', 'Information Technology', '69', '100', '0'), (10504, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '169', '156', '325', '4', '107', 'NIT Tirchy', 'ECE', '7.95', '10', '14'), (10505, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2011', '790', '530', '1320', '3', '100', 'University of Mumbai', 'EXTC', '70', '100', '0'), (10506, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2013', '155', '155', '310', '3', '105', 'Atharva College', 'electronics & telecommunication', '65.2', '100', '0'), (10507, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '480', '1280', 'None', '110', 'BITS Pilani', '0', '6.5', '10', '0'), (10508, '20', 'Admit', 'MS', 'Information Technology', 'Spring ', '2013', '800', '450', '1250', '4', '108', 'Nirma Institute of Technology', 'IT', '7.78', '10', '0'), (10510, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '770', '600', '1370', '4', '114', 'Anna University', 'ECE', '78', '100', '0'), (10511, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '550', '1300', '3.5', '106', 'MU', 'Computer', '55.6', '100', '0'), (10512, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2013', '165', '163', '328', '4', '115', 'Pune University', 'Computer Engineering', '75.53', '100', '0'), (10513, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '161', '152', '313', '4', '110', 'JUIT', 'CSE', '8', '10', '0'), (10514, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '160', '146', '306', '3.5', '106', 'Madras Institute of Technology', 'Information Technology', '8.2', '10', '54'), (10515, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '530', '1310', '3.5', '110', 'GITAM', 'CSE', '8.22', '10', '0'), (10516, '20', 'Admit', 'MS', 'Computational Biology', 'Fall ', '2013', 'None', 'None', '0', 'None', 'None', 'Master of Technology Anticipated graduation July 2013 Jawaharlal Nehru Univesity ', 'School of computational and systems biology', '8.15', '10', '0'), (10517, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '163', '154', '317', '3', '101', 'MU', 'Computer Engineering', '76', '100', '0'), (10519, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '163', '160', '323', '3', '109', 'IIIT Hyderabad', 'Electronics & Communication', '7.6', '10', '0'), (10520, '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2015', '165', '155', '320', '3', '102', 'Hi-Tech College of Engineering and Technology', 'Computer Science', '67.26', '100', '54'), (10521, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '160', '324', '3', '108', 'WBUT', 'CSE', '8.19', '10', '42'), (10522, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '164', '148', '312', 'None', '110', 'University of Mumbai', 'Information Technology', '76.4', '100', '0'), (10523, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '152', '317', '3.5', '106', 'MNNIT', 'Civil Engineering', '7.1', '10', '0'), (10524, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '161', '147', '308', '3.5', '113', 'MSRIT', 'Information Science', '9.31', '10', '24'), (10525, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '163', '145', '308', '3', '93', 'Chitkara University', 'CSE', '7.05', '10', '0'), (10526, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '148', '310', '4.5', '7', 'Manipal Institue of Technology', 'IT', '7.62', '10', '60'), (10527, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '600', '1400', '3.5', '108', 'University of Pune', 'Computer Science', '71', '100', '0'), (10528, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2013', '159', '149', '308', '3', '108', 'Mody Institute of Technology and Science', 'Electronics and Communications', '6.9', '10', '0'), (10529, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '170', '157', '327', '4.5', '111', 'SASTRA', 'CS', '8.14', '10', '24'), (10530, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '470', '1260', '3', 'None', 'Techno India Salt Lake Kolkata', 'Electronics and Instrumentation Engineering', '8.4', '10', '0'), (10531, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '166', '154', '320', '3.5', '107', 'D. A. V. V.', 'Information Technology', '65.03', '100', '0'), (10532, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '165', '151', '316', '3.5', '100', 'None', '0', '71.75', '100', '42'), (10534, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '600', '1400', '4.5', '110', 'Pune University', 'Electronics', '54', '100', '0'), (10535, '20', 'Admit', 'MS', 'Information Systems', 'Spring', 'None', '800', '630', '1430', '3', '105', 'PEC University of Technology', 'Electrical', '8.69', '10', '0'), (10536, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '550', '1290', '4', '101', 'Gujarat Technological University', 'Computer Engineering', '3.97', '4', '0'), (10537, '20', 'Admit', 'MS', 'Finance', 'Fall ', '2013', '800', '600', '1400', '4', '104', 'NIT', 'Civil', '7.8', '10', '0'), (10538, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2007', '750', '640', '1390', '4', '267', 'SIES Graduate School of Technology', 'COMPUTER', '60', '100', '0'), (10539, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '550', '1320', '3.5', '108', 'VTU', 'Electronics', '68', '100', '0'), (10540, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '780', '650', '1430', '4.5', '116', 'Pt. Ravishankar Shukla University', 'Computer Science & Engineering', '7.92', '10', '0'), (10541, '20', 'Admit', 'MS', 'Engineering Management', 'Fall ', '2014', '168', '152', '320', '3', '107', 'NIT Tirchy', 'EEE', '7.61', '10', '36'), (10542, '20', 'Admit', 'MS', 'Civil Engineering', 'Fall ', '2015', '159', '152', '311', '3.5', '100', 'None', 'Civil Engineering', '71.9', '100', '8'), (10543, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '152', '320', 'None', 'None', 'JSS Noida', 'Information Technology', '70', '100', '33'), (10544, '20', 'Admit', 'MS', 'Industrial Engineering', 'Fall ', '2015', '164', '156', '320', '3.5', 'None', 'Amrita School of Engineering', 'Mechanical Engineering', '6.5', '10', '19'), (10545, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '420', '1220', '4', '108', 'MU', 'Computer Engineering', '74.6', '100', '0'), (10546, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '780', '550', '1330', '3', '104', 'I.E.T D.A.V.V.', 'Computer Engineering', '69.8', '100', '0'), (10549, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2012', '147', '136', '283', '3.5', '107', 'Dayananda Sagar College of Engineering', 'Electronics and communication', '65', '100', '0'), (10550, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '730', '550', '1280', '3.5', '105', 'IGIT', 'CSE', '73.8', '100', '0'), (10551, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10552, '20', 'Admit', 'MS', 'Marketing Communication', 'Fall ', '2012', '760', '560', '1320', '3.5', '106', 'D J Sanghvi', 'Electronics', '60.7', '100', '0'), (10553, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '700', '400', '1100', 'None', '95', 'JMIT Radaur', 'CS', '71', '100', '0'), (10554, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2014', '162', '157', '319', '3', '112', 'Nirma Institute of Technology', 'Instrumentation and Control', '7.8', '10', '12'), (10555, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '161', '326', '4', '118', 'University of Mumbai', 'Information Technology', '69.63', '100', '0'), (10556, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '152', '316', '3.5', '114', 'VIT', 'B.Tech - IT', '8.2', '10', '0'), (10557, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '162', '149', '311', '3.5', '91', 'SSN College of Engineering', 'Computer Science', '7.2', '10', '0'), (10558, '20', 'Admit', 'MS', 'Computer Engineering', 'Fall ', '2015', 'None', 'None', '0', 'None', '106', 'GITAM', 'Electronics and Communication', '7.15', '10', '0'), (10559, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '800', '600', '1400', '3', 'None', 'VTU', 'Computer Science', '79', '100', '0'), (10560, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '169', '160', '329', '5', '114', 'Sardar Patel College of Engineering', 'Information Technology', '62', '100', '0'), (10561, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '510', '1310', '4', '105', 'IIT Delhi', 'Chemical Engg', '6.7', '10', '0'), (10562, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '168', '157', '325', '4', '109', 'Anna University', 'Information Technology', '7.99', '10', '51'), (10563, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', 'None', 'None', '0', 'None', '100', 'VIT', 'E.C.E', '8.64', '10', '0'), (10564, '20', 'Admit', 'MS', 'Technology Management', 'Fall ', '2015', '158', '154', '312', 'None', '102', 'Osmania University', 'Mechanical Engineering', '76', '100', '0'), (10566, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '108', 'Techno. Inst. of Tech. Bhopal', 'Computer Science', '76', '100', '0'), (10567, '20', 'Admit', 'MS', 'MIS-management related courses', 'Fall ', '2012', '800', '710', '1510', '5.5', '116', 'NSIT', 'Information Technology', '71.2', '100', '0'), (10568, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '800', '540', '1340', '3', '101', 'Ajay Kumar Garg Engineering College', 'CS', '78.6', '100', '0'), (10569, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '600', '800', '1400', '3.5', '110', 'MU', 'Comp Engg', '68.67', '100', '0'), (10570, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '167', '151', '318', '3', '7', 'Manipal Institue of Technology', 'ICT', '8', '10', '0'), (10571, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '640', '1410', '3', '101', 'University of Mumbai', 'Computer Science', '66.2', '100', '0'), (10572, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '800', '700', '1500', 'None', '101', 'CEG', 'MSc Computeer Science', '9.02', '10', '32'), (10573, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2013', '800', '600', '1400', '4', '110', 'Manipal Institue of Technology', 'Electronics and Communication', '8.49', '10', '0'), (10574, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '50', '35', '85', '5', '112', 'MU', 'Electronics', '61', '100', '0'), (10575, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '170', '162', '332', 'None', '116', 'Dhirubhai Ambani Institute of Information & Communication Technology', 'ICT', '7.32', '10', '0'), (10577, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '170', '154', '324', '3', '100', 'Anna University', 'CS', '75', '100', '36'), (10578, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2015', '165', '145', '310', '3', 'None', 'Pune University', 'ECE', '66', '100', '62'), (10579, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2015', '158', '167', '325', '3', '105', 'Cochin University of Science and Technology', 'Electrical and Electronics Engineering', '67.5', '100', '57'), (10580, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2014', '166', '161', '327', '3', '111', 'VTU', 'Computer Science', '65', '100', '0'), (10581, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '161', '329', '3.5', '113', 'Jaypee Institute of Information Technology', 'Computer Science & IT', '8.3', '10', '0'), (10582, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '470', '1270', 'None', '94', 'VTU', 'INFORMATION SCIENCE', '80', '100', '0'), (10583, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '165', '157', '322', '3.5', '105', 'University of Mumbai', 'Computer Engineering', '69', '100', '0'), (10584, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '161', '153', '314', 'None', 'None', 'UPTU', 'Computer Science', '75', '100', '0'), (10585, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '730', '650', '1380', '4', '108', 'MU', 'Computer Engineering', '58', '100', '0'), (10586, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2012', '800', '660', '1460', '3', '104', 'NSIT', 'IT', '69', '100', '0'), (10587, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2015', '167', '156', '323', '4', '107', 'SRM', 'CSE', '7.8', '10', '10'), (10588, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '630', '1420', '3', '98', 'VESIT', 'Information Technology', '73', '100', '0'), (10590, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '165', '152', '317', '3', '111', 'Netaji Subhas Institute of Technology', 'Computer Engineering', '73.5', '100', '0'), (10591, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '162', '162', '324', '4', '108', 'JNTU', 'EIE', '67', '100', '0'), (10592, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '162', '150', '312', '3.5', '105', 'PESIT', 'Computer Science', '79.3', '100', '0'), (10593, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '166', '160', '326', '3.5', '113', 'Manipal Institue of Technology', 'Computer Science & Engineering', '7.14', '10', '0'), (10594, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '770', '600', '1370', '4', '110', 'None', '0', '7.46', '10', '0'), (10595, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '164', '155', '319', '3.5', '105', 'NMIMS', 'Computer Science', '3.26', '4', '0'), (10596, '20', 'Admit', 'MS', 'Microbiology', 'Fall ', '2011', '770', '580', '1350', '3.5', '111', 'Allahabad Agriculture University', 'Molecular and Cellular Engg', '9.74', '10', '0'), (10597, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '640', '1440', '5.5', '287', 'MU', 'IT', '62', '100', '0'), (10598, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '158', '147', '305', '3', '98', 'PESIT', 'CS', '8.16', '10', '0'), (10599, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '750', '500', '1250', '4', '101', 'University of Mumbai', 'Computers', '66.2', '100', '0'), (10600, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '169', '154', '323', '4', '117', 'Netaji Subhas Institute of Technology', 'Electronics and Communication', '8.2', '10', '0'), (10601, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2015', '158', '146', '304', '4', '100', 'VESIT', 'Electronics', '61.6', '100', '0'), (10602, '20', 'Admit', 'MS', 'Management of Technology', 'Fall ', '2012', '780', '380', '1160', '3', '103', 'CEG', 'Comp Science dept', '7', '10', '0'), (10603, '20', 'Admit', 'MS', 'Information Systems', 'Spring ', '2012', '800', '340', '1140', '3.5', '105', 'PICT', 'Information Technology', '61', '100', '0'), (10604, '20', 'Admit', 'MS', 'Human Resources', 'Fall ', '2011', '650', '570', '1220', '3.5', '113', 'University of Mumbai', 'Management', '67', '100', '0'), (10605, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '740', '630', '1370', '3.5', '112', 'VTU', 'Information Science', '64', '100', '0'), (10606, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '630', '1390', '4.5', '114', 'NMIMS', 'Computer Science', '3.24', '4', '0'), (10607, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2011', '760', '620', '1380', '3', '96', 'Panjab University', 'Computer Science', '80.67', '100', '0'), (10609, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '650', '1400', '4', '114', 'Anna University', 'CS', '75.3', '100', '0'), (10610, '20', 'Admit', 'MS', 'Business Analytics', 'Fall ', '2015', '154', '156', '310', '3', '110', 'Bangalore Institute of Technology', 'electronics', '66', '100', '0'), (10611, '20', 'Admit', 'MS', 'Management Information System', 'Fall ', '2014', '163', '153', '316', '4.5', '108', 'H B T I Kanpur India', 'Food Tech', '7.3', '100', '0'), (10612, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2011', '770', '600', '1370', '4.5', '116', 'Nirma Institute of Technology', 'EC', '7.96', '10', '0'), (10613, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '790', '680', '1470', '3', '107', 'University of Mumbai', 'i.t.', '65.94', '100', '0'), (10614, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '650', '1430', '4', '111', 'VESIT', 'EXTC', '0', '0', '0'), (10615, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '163', '327', 'None', '117', 'NIT Calicut', 'Computer Science', '7.85', '10', '16'), (10616, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '800', '590', '1390', '2.5', '107', 'TSEC', 'Computer Engineering', '61', '100', '0'), (10617, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2014', '164', '156', '320', '4.5', '109', 'Bharati Vidyapeeth', 'Electronics', '63.6', '100', '0'), (10618, '20', 'Admit', 'MS', 'Computer Science', 'Fall', 'None', '161', '152', '313', '3.5', '105', 'None', 'CSE', '7.9', '10', '0'), (10619, '20', 'Admit', 'MS', 'advertising', 'Fall ', '2014', 'None', 'None', '0', 'None', 'None', 'Osmania University', 'Mathematics Statisitcs and Computer Science', '3.92', '10', '0'), (10620, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '520', '1320', '3.5', '94', 'Sona College', 'Information Technology', '80', '100', '0'), (10621, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '590', '1390', '4', '114', 'NIT Tirchy', 'ECE', '8.75', '10', '0'), (10622, '20', 'Admit', 'MS', 'None', 'Fall ', '2015', 'None', 'None', '0', 'None', '110', 'VTU', 'Electrical & Electronics', '72', '100', '0'), (10623, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '750', '540', '1290', '3', '93', 'CEG', 'Information Technology', '7.8', '10', '0'), (10624, '20', 'Admit', 'MS', 'Electrical Engineering', 'Fall ', '2015', '167', '154', '321', '3', '110', 'Amity School of Engineering and Technology', 'Instrumentation & Control Engineering', '66', '100', '0'), (10625, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2016', '136', '139', '275', '1.5', 'None', 'JNTU', 'Computer science', '6.02', '10', '0'), (10626, '20', 'Admit', 'MS', 'Information Systems', 'Fall ', '2014', '161', '158', '319', '4', '110', 'CEG', 'Computer Science and Engineering', '9.35', '10', '0'), (10628, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', '750', '600', '1350', '3', '105', 'None', '0', '8.5', '10', '0'), (10629, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', '113', 'MU', 'Computer Engineering', '71.3', '100', '0'), (10630, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '161', '155', '316', '4', '113', 'Atharva College', 'Information Technology', '64.13', '100', '0'), (10631, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '800', '430', '1230', '3', '103', 'Sri Venkateswara College of Engineering', 'EEE', '68', '100', '0'), (10632, '20', 'Admit', 'MS', 'MIS', 'Spring ', '2012', 'None', 'None', '0', 'None', 'None', 'Pune University', '0', '73', '100', '0'), (10633, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '4.5', '108', 'NIT Silchar', 'Computer Science', '8.53', '10', '20'), (10634, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2012', '770', '710', '1480', '4', '110', 'MU', 'Electronics', '63', '100', '0'), (10635, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '167', '154', '321', '3', '112', 'Jaypee Institute of Information Technology', 'I.T', '8.2', '10', '0'), (10636, '20', 'Admit', 'MS', 'Robotics', 'Fall ', '2015', '168', '161', '329', '4', '109', 'CoE Trivandrum', 'EE', '8.29', '10', '0'), (10637, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '740', '400', '1140', '3', '97', 'MSRIT', 'IT', '68', '100', '0'), (10638, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '151', '319', '3.5', '108', 'Netaji Subhas Institute of Technology', 'Computers Engineering', '67.2', '100', '21'), (10639, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '161', '151', '312', '3', '103', 'Punjab Technical University', 'Information Technology', '77', '100', '42'), (10640, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4.5', '113', 'MU', 'Computer Engg', '63.5', '100', '0'), (10641, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2006', '800', '740', '1540', '5.5', '290', 'MU', 'computers', '60', '100', '0'), (10642, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '166', '159', '325', '4', '106', 'D.K.T.E. (Shivaji University Maharashtra)', 'CS', '66', '100', '0'), (10643, '20', 'Admit', 'MS', 'Human Computer Interaction', 'Fall ', '2014', '161', '156', '317', '4', '113', 'PESIT', 'Computer Science', '79.9', '100', '0'), (10645, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '550', '1330', '3', '101', 'Nagpur University', 'Computer Science', '73.56', '100', '0'), (10646, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '760', '640', '1400', '4', '109', 'UPTU', 'Computer Science', '78', '100', '0'), (10647, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2015', '163', '148', '311', 'None', '106', 'Mody Institute of Technology and Science', 'Computer Science', '9.76', '10', '58'), (10648, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2015', '167', '150', '317', '4', '104', 'Manipal Institue of Technology', 'Computer Science and Engineering', '8.41', '10', '29'), (10649, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '530', '1330', '3.5', '109', 'MU', 'Computer', '67', '100', '0'), (10650, '20', 'Admit', 'MS', 'MIS', 'Fall ', '2011', '780', '580', '1360', '4', '104', 'Vishwakarma Institute of Technology', 'Computer Science', '64.5', '100', '0'), (10651, '20', 'Admit', 'MS', 'Information Management', 'Fall ', '2015', '163', '153', '316', '3.5', '103', 'None', '0', '0', '0', '0'), (10652, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '620', '1420', '4', '114', 'Anna University', 'CSE', '77', '100', '0'), (10653, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2014', '168', '157', '325', '3', '103', 'Manipal Institue of Technology', 'Information technology', '7.75', '10', '0'), (10654, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '3', '104', 'Nirma Institute of Technology', 'Computer Science', '8.57', '10', '0'), (10655, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2011', '800', '660', '1460', '4', '113', 'Guru Gobind Singh Indraprashta University', 'B.Tech (CSE)', '80.3', '100', '0'), (10656, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '164', '151', '315', '3.5', '110', 'UPTU', 'CSE', '84.5', '100', '0'), (10657, '20', 'Admit', 'MS', 'Computer Science', 'Spring ', '2013', '790', '580', '1370', '3.5', '114', 'NIT Warangal', 'EEE', '7.57', '10', '0'), (10658, '20', 'Admit', 'MS', 'Computer Science', 'Fall ', '2013', '700', '800', '1500', '4.5', '112', 'University of Pune', 'Information Technology', '72', '100', '0'), (10659, '20', 'Admit', 'MS', 'None', 'None', 'None', 'None', 'None', '0', 'None', 'None', 'None', '0', '0', '0', '0'), (10660, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '750', '610', '1360', '3', '109', 'VJTI', 'Computer Engineering', '8.6', '10', '0'), (10661, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '790', '450', '1240', '4', '107', 'NMIMS', 'Computer Science', '3.62', '4', '0'), (10662, '20', 'Reject', 'MS', 'analytics', 'Fall ', '2014', '166', '160', '326', '3.5', '109', 'None', 'computer science', '7.94', '10', '0'), (10663, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '160', '152', '312', '3.5', '100', 'CSVTU', 'Computer Science', '73', '100', '0'), (10664, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '155', '319', '3', '111', 'Amity University', 'Computer Science', '7.22', '10', '36'), (10665, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '570', '1370', '3.5', '100', 'MU', 'Computer Engineering', '0', '0', '0'), (10666, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2014', '168', '147', '315', '3.5', '101', 'VIT University', 'CSE', '9.14', '10', '0'), (10667, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '530', '1330', '4', '110', 'IIT BHU', 'CSE', '7.96', '100', '0'), (10668, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '450', '1180', '3', '104', 'VTU', 'Electrical & Electronics', '61', '100', '0'), (10669, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '164', '157', '321', '3', '105', 'VTU', 'Electrical and Electronics', '73.26', '100', '24'), (10670, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '690', '1490', '4.5', '101', 'University of Mumbai', 'Computers', '63', '100', '0'), (10671, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2015', '157', '156', '313', '3.5', '107', 'VNR VJIET', 'ece', '67', '100', '0'), (10672, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2011', '720', '530', '1250', '4', '107', 'Pune University', 'Computer', '0', '0', '0'), (10673, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '147', '150', '297', 'None', '93', 'DEVI AHILYA VISHWAVIDYALAYA INDORE', 'IIPS', '9.39', '10', '0'), (10674, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '168', '151', '319', '3.5', 'None', 'VJTI', 'Computer Engg', '8.3', '10', '0'), (10675, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '640', '1380', '3', '87', 'MU', 'Computer science', '66', '100', '0'), (10676, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '151', '309', '3.5', '110', 'MGU', 'CSE', '71', '100', '0'), (10677, '20', 'Reject', 'MS', 'MIS-management related courses', 'Fall ', '2012', '160', '148', '308', '3', '106', 'Jaypee Institute of Information Technology', 'Information Technology', '6.1', '10', '0'), (10678, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '480', '1280', '3', '98', 'MU', 'computer', '64.3', '100', '0'), (10679, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '167', '143', '310', '3.5', '98', 'St Francis Institute of Technology - Mumbai Unversity', 'Computer Engineering', '70', '100', '0'), (10680, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '161', '148', '309', '4', '107', 'Charotar University of Science and Technology', 'Information Technology', '8.3', '10', '0'), (10681, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '650', '650', '1300', '3', '102', 'MU', 'Information Technology', '63', '100', '0'), (10682, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '168', '153', '321', '3.5', 'None', 'Mahrishi Dayanand University', 'Computer Science and Engineering', '69.42', '100', '0'), (10683, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '760', '630', '1390', '3.5', '111', 'University of Mumbai', 'Computer Engineering', '67', '100', '0'), (10684, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '550', '1290', '3.5', '104', 'MU', 'computer', '67.23', '100', '0'), (10685, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '163', '150', '313', '3.5', '110', 'K.I.E.T.', 'Computer Science', '63', '100', '0'), (10686, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '165', '158', '323', '3.5', '111', 'MU', 'Computer Science', '66.12', '100', '0'), (10687, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'CSE', '72', '100', '0'), (10688, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '156', '323', '4', '116', 'University of Mumbai', 'Computer Engineering', '65.55', '100', '16'), (10689, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '152', '311', '4', '110', 'MU', 'Computer engg', '62', '100', '0'), (10690, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '152', '312', 'None', '98', 'MU', 'information technology', '65', '100', '0'), (10691, '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2014', '170', '148', '318', '3', '100', 'PEC University of Technology', 'Electrical Engg.', '7', '10', '0'), (10692, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '510', '1310', '3.5', '108', 'Bhilai Institute of Technology', 'Electrical Engineering', '66.2', '100', '0'), (10693, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '159', '149', '308', '3', '102', 'MU', 'computer engg', '66', '100', '0'), (10694, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '790', '580', '1370', '4', 'None', 'VTU', 'Computer Science', '8.11', '10', '0'), (10695, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '680', '430', '1110', '3.5', '102', 'VCET', 'Computer Science', '63', '100', '0'), (10696, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '620', '1360', '4', '106', 'Anna University', 'computer science', '81', '100', '0'), (10697, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '750', '490', '1240', '3', '104', 'MU', 'Information Technology', '62', '100', '0'), (10698, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '156', '158', '314', '4', '105', 'KIIT', 'Computer Science', '7.16', '10', '31'), (10699, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2014', '159', '150', '309', '4', '105', 'GITAM', 'ECE', '84', '100', '87'), (10700, '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '800', '560', '1360', '4', '107', 'Kakatiya University', 'E.E.E', '67', '100', '0'), (10701, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '740', '620', '1360', '4.5', '117', 'Thadomal Shahani Engineering College', 'Information Technology', '60', '100', '0'), (10702, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '146', '306', '3', '100', 'GGSIPU', 'Computer Sceince & Engg.', '77', '100', '0'), (10703, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '158', '157', '315', '3.5', '101', 'Anna University', 'Information Technology', '8.18', '100', '21'), (10704, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '610', '1400', '3.5', '117', 'MU', 'Information Technology', '66', '100', '0'), (10705, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '730', '500', '1230', '2.5', '87', 'St Francis Institute of Technology - Mumbai Unversity', 'Computers', '60', '100', '0'), (10706, '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2012', '160', '148', '308', '3.5', '106', 'Fr Agnels Vashi (University of Mumbai)', 'Computer', '65', '100', '0'), (10707, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '153', '313', '4', '111', 'Anna University', '0', '9.2', '10', '0'), (10708, '20', 'Reject', 'MS', 'CS', 'Fall ', '2012', '162', '152', '314', '4', '101', 'VESIT', 'Information Technology', '65.6', '100', '0'), (10709, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '540', '1330', '3', '102', 'University of Pune', 'Computer Engineering', '57.8', '100', '0'), (10710, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '163', '163', '326', '4', '110', 'Goa University', 'Computer Engineering', '73.72', '100', '46'), (10711, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '800', '670', '1470', '3.5', '104', 'Pune University', 'Computer Engineering', '66', '100', '0'), (10712, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '167', '159', '326', '3.5', '105', 'Dayananda Sagar College of Engineering', 'Information Science', '75', '100', '52'), (10713, '20', 'Reject', 'MS', 'Computer Engineering', 'Fall ', '2012', '750', '550', '1300', '4', '108', 'YMCA', 'Computer Engineering', '76', '100', '0'), (10714, '20', 'Reject', 'MS', 'Biochemistry and Molecular biology', 'Fall ', '2011', '710', '540', '1250', '4.5', '110', 'Pune University', '0', '78', '100', '0'), (10715, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '159', '150', '309', '3.5', '103', 'MU', 'Computer Science', '65', '100', '0'), (10716, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '610', '1410', '3.5', '112', 'Maharishi Dayanand University', 'Computer Science', '71', '100', '0'), (10717, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '160', '147', '307', '3', '95', 'Jaypee Institute of Information Technology', 'CSE', '72.5', '100', '0'), (10718, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '164', '154', '318', '4', '114', 'VTU', 'CSE', '7.69', '10', '24'), (10719, '20', 'Reject', 'MS', 'Information technology management', 'Fall ', '2012', '770', '530', '1300', '4', '102', 'Nagpur University', 'Electronics Engineering', '65', '100', '0'), (10720, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '164', '153', '317', '3', '103', 'SVITS', 'Computer Science', '73', '100', '0'), (10721, '20', 'Reject', 'MS', 'Electrical Engineering & Information Technology', 'Spring ', '2015', '164', '144', '308', '4', '97', 'INSTITUTE OF ENGINEERING AND TECHNOLOGY', 'ELECTRONICS AND TELECOMMUNICATION', '73.4', '100', '3'), (10722, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3', '94', 'MDU', 'Computer Science', '61', '100', '0'), (10723, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '170', '168', '338', '4.5', '116', 'Pune University', 'B.E (Computer Science)', '57', '100', '15'), (10724, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '162', '323', '4', '110', 'VTU', 'Electronics and Communication', '62.95', '100', '0'), (10725, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '163', '156', '319', '3', '111', 'BITS Pilani', 'Information Systems', '6.55', '10', '60'), (10726, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '158', '149', '307', '3.5', '104', 'MPSTME NMIMS University Mumbai', 'Computer Engineering', '2.99', '4', '0'), (10727, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2016', '165', '145', '310', '3.5', '100', 'MU', 'Extc', '66', '100', '0'), (10728, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '550', '1350', '4.5', '108', 'Don Bosco Institute of Technology', 'Computers', '66', '100', '0'), (10729, '20', 'Reject', 'MS', 'Computational Science', 'Fall ', '2013', '155', '158', '313', 'None', '103', 'D.V.R College of Engineering and Technology', 'Information Technology', '67.49', '100', '0'), (10730, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '530', '1300', '3', '101', 'R.V.R&J.C-ANU;', 'CSE', '85.72', '100', '0'), (10731, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '157', '152', '309', '3.5', '100', 'Rajasthan Technical University', 'Computer Science', '75', '100', '0'), (10732, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '160', '319', '3.5', '115', 'None', 'Computers', '7.84', '10', '0'), (10733, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '159', '157', '316', '3', '105', 'MU', 'Information Technology', '61.46', '100', '0'), (10734, '20', 'Reject', 'MS', 'mba', 'Fall', 'None', '1310', '550', '1860', '3.5', 'None', 'SASTRA', 'COMPUTER SCIENCE', '7.8', '10', '0'), (10735, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '770', '690', '1460', '3', '100', 'Punjab Technical University', 'CS', '85.8', '100', '0'), (10736, '20', 'Reject', 'MS', 'Electrical Engineering', 'Fall ', '2015', '158', '146', '304', '3', '91', 'Kurukshetra University', 'Dept. of Instrumentation', '7.3', '10', '0'), (10737, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '159', '151', '310', '4', '107', 'Bangalore Institute of Technology', 'ISE', '71.76', '100', '28'), (10738, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '155', '147', '302', '3', '95', 'University of Mumbai', 'Computer Engg', '62', '100', '0'), (10739, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '780', '420', '1200', '3', '91', 'K J Somaiya College of Engiineering', 'Computer Science', '0', '0', '0'), (10740, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '155', '316', '4', 'None', 'Indira Gandhi Institute Of Technology', 'Computer Sciences', '81', '100', '0'), (10741, '20', 'Reject', 'MS', 'Business', 'Fall ', '2012', '770', '550', '1320', '4', '105', 'Vidyalankar Institute of Technology', 'Electronics', '58', '100', '0'), (10742, '20', 'Reject', 'MS', 'Computational Biology', 'Fall ', '2012', '159', '165', '324', '4', '118', 'MSRIT', 'Computer Science and Engineering', '74', '100', '0'), (10743, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '170', '150', '320', '3', '104', 'Jaypee Institute of Information Technology', 'Computer Science Engineering', '71', '100', '0'), (10744, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '159', '322', '4.5', '111', 'BITS Hyderabad', 'Electronics and Communication', '7.63', '10', '30'), (10745, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '730', '1530', '4', '120', 'Random Anna University Affiliated College', 'Computer Science', '8.2', '10', '0'), (10747, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '710', '1500', '4.5', 'None', 'D J Sanghvi', 'IT', '67', '100', '0'), (10748, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '156', '156', '312', '4', '97', 'Pune University', 'Information Technology', '53.01', '100', '19'), (10749, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'Information science', '73', '100', '0'), (10750, '20', 'Reject', 'MS', 'CS MIS', 'Fall ', '2013', '161', '152', '313', '3.5', '97', 'MU', 'Electrical & Electronics', '64', '100', '0'), (10751, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '710', '1510', '3.5', '112', 'MU', 'Computer Engg', '61.5', '100', '0'), (10752, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '700', '570', '1270', '3.5', '107', 'PICT', 'Computer Engineering', '58', '100', '0'), (10753, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '166', '161', '327', '4', '116', 'JNTU', 'Mechanical Engineering', '69.34', '100', '24'), (10754, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '166', '153', '319', '3.5', '95', 'BITS Pilani', 'Computer Science', '6.5', '10', '0'), (10755, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '160', '145', '305', '3', '103', 'Anna University', 'Electronics & Communication', '65', '100', '0'), (10756, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '157', '156', '313', '3', '109', 'MU', 'Computer', '56', '100', '48'), (10757, '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '720', '580', '1300', '4', '105', 'None', 'Information technology', '71', '100', '0'), (10758, '20', 'Reject', 'MS', 'MIS', 'Fall', 'None', '159', '145', '304', '3.5', '105', 'MITCOE Pune University', 'Information Technology', '65.56', '100', '0'), (10759, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '170', '161', '331', '5', '113', 'Manipal Institue of Technology', 'CSE', '7.73', '10', '31'), (10760, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '159', '154', '313', '4', '111', "St Joseph's College of Engineering", 'Computer Science and Engineering', '86', '100', '0'), (10761, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '480', '1250', '4', '102', 'Fr. Agnel Bandra', 'Computer Engg', '73', '100', '0'), (10762, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '158', '147', '305', 'None', '95', 'VIT University', 'Computer Science', '9.12', '10', '0'), (10763, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '590', '1390', '3', '100', 'Rajiv Gandhi Institute Of Technology', 'Computer Engineering', '62.88', '100', '0'), (10764, '20', 'Reject', 'MS', 'Electronics and Communication', 'Fall ', '2015', '160', '153', '313', '3.5', '105', 'MRCE - affiliated to MDU', 'electronics and communication', '60', '100', '0'), (10765, '20', 'Reject', 'MS', 'Business Analytics', 'Fall ', '2014', '166', '162', '328', '4', '114', 'Biju Patnaik University of Technology', 'EEE', '8.3', '10', '0'), (10766, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '380', '1180', '3.5', '106', 'Coimbatore Insitute of Technology', 'Comp Sci', '9.24', '10', '0'), (10767, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '750', '330', '1080', '3.5', '93', 'VTU', 'CS', '71.3', '100', '0'), (10768, '20', 'Reject', 'MS', 'Electrical and Computer Engineering', 'Fall ', '2014', '155', '150', '305', '3', '106', 'West Bengal University Of Technology', 'Instrumentation and Control', '8.5', '10', '26'), (10769, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2014', '162', '149', '311', '3', '95', 'MU', 'computer engg', '62', '100', '0'), (10770, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '160', '154', '314', '3', '100', 'JNTU', 'Computer science', '75', '100', '0'), (10771, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2012', '740', '620', '1360', '4', 'None', 'Delhi College Of Engineeing', 'Information Technology', '71.32', '100', '0'), (10772, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '163', '152', '315', '4.5', '109', 'Amity School of Engineering and Technology', 'Computer Science', '8', '10', '58'), (10773, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2010', '780', '340', '1120', '3', '93', 'ITM Gurgaon', 'Computer Science Engineering', '72', '100', '0'), (10774, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '800', '530', '1330', '3.5', '104', 'Vidyalankar Institute of Technology', 'Computer Engineering', '58', '100', '0'), (10775, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2014', '163', '153', '316', '4', '103', 'MPSTME NMIMS', 'IT', '3.85', '4', '0'), (10776, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '660', '1460', '4', '112', 'MU', 'Computer Engineering', '67.85', '100', '0'), (10777, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '790', '510', '1300', '3', '98', 'PICT', 'IT', '64', '100', '0'), (10778, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2015', '162', '155', '317', '4', '110', 'Anna University', 'CS', '7.25', '10', '0'), (10779, '20', 'Reject', 'MS', 'Mathematics', 'Fall ', '2014', '169', '156', '325', '4', '108', 'MNNIT', 'Electronics', '8.93', '10', '24'), (10780, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '740', '670', '1410', '3', '110', 'MU', 'IT', '58.9', '100', '0'), (10781, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '156', '154', '310', '3', '105', 'Fr. Conceicao Rodrigues College of Engineering', 'Computer', '62', '100', '0'), (10782, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '690', '370', '1060', '4', '89', 'ACET Nagpur', 'Computer Science', '69.41', '100', '0'), (10783, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '800', '720', '1520', '4', '116', 'NIT Durgapur', 'Computer Science and Engineering', '7.89', '10', '0'), (10784, '20', 'Reject', 'MS', 'CS', 'Fall ', '2014', '161', '155', '316', '3', '115', 'Goa University', 'Computer Engineering', '70', '100', '0'), (10785, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '760', '570', '1330', '4', '111', 'University of Pune', 'Computer Engineering', '59', '100', '0'), (10786, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '158', '149', '307', '3', '92', 'Bangalore University', 'Computer Science', '73', '100', '0'), (10787, '20', 'Reject', 'MS', 'analytics', 'Summer ', '2014', '165', '154', '319', '4', '109', 'Siddaganga Institue of Technology', 'Electronics and Communications Engineering', '8.82', '10', '0'), (10788, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '162', '158', '320', '3.5', '104', 'NIT Jalandhar', 'CSE', '7.73', '10', '0'), (10789, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '700', '440', '1140', '3.5', '99', 'R V College of Engineering', 'ISE', '8.56', '10', '0'), (10790, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2015', '164', '157', '321', '4.5', '109', 'Amrita Vishwa Vidhyapeetham', 'Information Technology', '8.8', '10', '24'), (10791, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2013', '161', '155', '316', 'None', '113', 'MU', 'Computer Engineering', '60', '100', '0'), (10792, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '580', '1380', '4', '117', 'MU', 'Computer Engineering', '73', '100', '0'), (10793, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '160', '150', '310', '3', '100', 'PICT', 'Computer Science', '3.2', '4', '0'), (10794, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2006', '800', '700', '1500', '6', '297', 'SVNIT Surat', 'Computer Engineering', '67', '100', '0'), (10795, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '163', '151', '314', '3.5', 'None', 'PICT', 'computer', '58', '100', '0'), (10796, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '4', '115', 'PESIT', 'Computer Science', '70', '100', '0'), (10797, '20', 'Reject', 'MS', 'MIS', 'Spring ', '2012', '710', '440', '1150', 'None', '97', 'LNCT', 'Electical and electronics', '74', '100', '0'), (10798, '20', 'Reject', 'MS', 'Computer Science', 'Spring ', '2011', '700', '320', '1020', '3.5', '91', 'Pune University', 'Computer Engineering', '62', '100', '0'), (10799, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '730', '550', '1280', '3.5', '108', 'VESIT', 'Computer', '69.69', '100', '0'), (10800, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '800', '470', '1270', '3.5', '93', 'SKIT', 'CS', '65', '100', '0'), (10801, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '710', '470', '1180', '3', '92', 'University of Pune', 'Information Technology', '65', '100', '0'), (10802, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '800', '670', '1470', '3.5', '100', 'Jaypee Institute of Information Technology', 'Electronics and Communication', '7.5', '10', '0'), (10803, '20', 'Reject', 'MS', 'Financial Engineering', 'Fall ', '2015', '170', '153', '323', '4', '113', 'Thadomal Shahani Engineering College', 'Information Technology', '66.52', '100', '25'), (10804, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2012', '780', '500', '1280', '3', '108', 'VTU', 'IS', '73', '100', '0'), (10805, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '770', '620', '1390', '4', '98', 'D J Sanghvi', 'IT', '66.58', '100', '0'), (10806, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2011', '760', '510', '1270', '3', '109', 'NIT Raipur', 'CSE', '7.4', '10', '0'), (10807, '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '730', '640', '1370', '3.5', '115', 'BITS Goa', 'Information Systems', '7.4', '10', '0'), (10808, '20', 'Reject', 'MS', 'Information Systems', 'Fall ', '2012', '780', '630', '1410', '4.5', '99', 'MU', 'computers', '59', '100', '0'), (10809, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '790', '350', '1140', '3', '97', 'Coimbatore Insitute of Technology', 'MSc Software Engineering', '71', '100', '0'), (10810, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '770', '640', '1410', '4', '117', 'Watumull Institute University of Mumbai', 'Computer Science', '53', '100', '0'), (10811, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2007', '750', '350', '1100', '4', '253', 'Pune University', 'Computer Engineering', '54', '100', '0'), (10812, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2013', '690', '610', '1300', '4', '111', 'University of Mumbai', 'Information Technology', '58', '100', '0'), (10813, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '690', '460', '1150', '4.5', '109', 'Datta Meghe College of Engineering', 'Computer Engineering', '57.2', '100', '0'), (10814, '20', 'Reject', 'MS', 'Computer Science', 'Fall ', '2012', '161', '150', '311', '3', '92', 'CEG', 'Computer science', '7.3', '10', '0'), (10815, '20', 'Reject', 'MS', 'MIS', 'Fall ', '2015', '164', '154', '318', '4', '102', 'University of Mumbai', 'Computers', '60', '100', '18'), (10816, '20', 'Reject', 'MS', 'Data Science', 'Fall', 'None', '166', '155', '321', '4', '109', 'Siddaganga Institue of Technology', 'Electronics & Communication', '71', '100', '0'), (10817, '20', 'Reject', 'MS', 'CS', 'Fall ', '2013', '158', '152', '310', '3', '100', 'MSRIT', 'Information Science', '68', '100', '0'), (10818, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '-1', '-1', '-1', '-1', '97', 'Visvesvaraya Technological University', 'Computer Science', '73', '100', '29'), (10819, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '151', '318', '3.5', '105', 'Vellore Institute of Technology', 'Computer Science', '8.99', '10', '17'), (10820, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '167', '154', '321', '4', '103', 'Acropolis Institute of Technology & Research', 'Information Technology', '7.4', '10', '0'), (10821, '20', 'Reject', 'MS', 'Data Science', 'Fall', '2019', '158', '148', '306', '4', '105', 'KIIT University', 'Computer Science', '8.65', '10', '0'), (10822, '21', 'Admit', 'MS', 'Computer Science', 'Fall', '2017', '168', '157', '325', '3', '115', 'Gitam University', 'Computer Science', '8.5', '10', '0'), (10823, '22', 'Admit', 'MSc', 'Industrial Engineering', 'Fall', '2017', '170', '155', '325', '3.5', '111', 'Sardar Patel College Of Engineering, (SPCE), Andheri', 'Mechanical Engineering', '8.73', '10', '15'), (10824, '23', 'Admit', 'MS', 'Mechanical Engineering', 'Fall', '2016', '170', '156', '326', '3', '104', 'Pdpu', 'Mechanical Engineering', '8.3', '10', '0'))